/**================== ROOT ==================**/
:root {
    --cl-main: #222222;
    --cl-hover-main: #a15b4c;
    --cl-light-main: #333333;
    --cl-mega-menu: rgba(192, 35, 64, 0.1);
    --cl-black: #000000;
    --cl-white: #ffffff;
    --cl-gray: #fafafa;
    --cl-light-gray: #DEDEDE;
    --cl-dark-gray: #616161;
    --cl-sp-gray: #777777;
    --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-sp: 'Montserrat', sans-serif !important;
    --font-main: 'Beautique Display', 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;
}

.default-main--box {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 10rem /* 160/16 */ 0 8.125rem /* 130/16 */;
}

/**================== BUTTON ICON ==================**/
.CR-btn-style-icon {
    width: 8.125rem /* 130/16 */;
    height: 5.25rem /* 84/16 */;
    display: block;
    position: relative;
}

.CR-btn-style-icon svg path,
.CR-btn-style-icon svg,
.CR-btn-style-icon:after {
    transition: 0.5s ease-in-out;
}

.CR-btn-style-icon:hover svg {
    left: 35%;
}

.CR-btn-style-icon:hover svg path {
    stroke: var(--cl-hover-main) !important;
}

.CR-btn-style-icon svg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 75%;
    height: auto;
    object-fit: contain;
}

.CR-btn-style-icon:hover:after {
    border-color: var(--cl-hover-main) !important;
    right: 30%;
}

.CR-btn-style-icon:after {
    content: '';
    width: auto;
    height: 5.25rem /* 84/16 */;
    aspect-ratio: 1/1;
    border: 1px solid var(--cl-light-gray);
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


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

.CR-heading-title--group .heading-title {
    color: var(--cl-light-main);
    text-align: center;
    font-size: 3.75rem /* 60/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 auto;
}

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

.CR-heading-title--group .desc {
    color: var(--cl-light-main);
    text-align: center;
    font-family: var(--font-sp);
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 2.0625rem /* 33/16 */;
    margin: 0.625rem /* 10/16 */ auto 0;
}

.CR-heading-title--group .desc b {

}

/**================== 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(34, 34, 34, 0.00) 0%, rgba(34, 34, 34, 0.51) 39.06%, rgba(34, 34, 34, 0.83) 61.98%, #222 86.98%);
    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;
    -o-object-position: top center;
    object-position: top center;
    z-index: -1;
}

.CR-banner--group .heading-title {
    color: var(--cl-light-gray);
    font-size: 3.75rem /* 60/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

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

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

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

.CR-banner--group .CR-breadcrumb .current {
    color: var(--cl-white) !important;
}

/**================== FORM FOOTER SECTION ==================**/
.CR-form-footer--sec {
    position: relative;
}

.CR-form-footer--sec.white--sec {
    margin-top: 3.75rem /* 60/16 */;
}

.CR-form-footer--sec.black--sec {
    margin-top: 0;
    background: var(--cl-main);
    padding: 3.4375rem /* 55/16 */ 0;
}

.CR-form-footer--sec.white--sec .main--box {
    color: var(--cl-light-main);
}

.CR-form-footer--sec.black--sec .main--box {
    color: var(--cl-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.CR-form-footer--sec .main--box {
    font-style: normal;
    font-weight: 400;
}

.CR-form-footer--sec .heading-title {
    font-size: 3.75rem /* 60/16 */;
    line-height: normal;
    display: block;
    margin: 0;
    font-weight: 400;
}

.CR-form-footer--sec .desc {
    font-size: 1.5625rem /* 25/16 */;
    line-height: normal;
    margin: 0.625rem /* 10/16 */ 0 0;
    font-family: var(--font-sp);
    font-weight: 400;
}

.CR-form-footer--sec .img--box {
    position: relative;
    margin-top: 1rem;
}

.CR-form-footer--sec .img--box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 85%;
    z-index: 1;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.CR-form-footer--sec .img--box img {
    width: 100%;
    height: auto;
}

.CR-form-footer--sec .CR-form-def {
    position: relative;
}

.CR-form-footer--sec .CR-form-def input:not([type=submit])::placeholder {
    font-size: 1.5625rem /* 25/16 */;
    line-height: normal;
}

.CR-form-footer--sec .CR-form-def input:not([type=submit]) {
    border: none;
    border-bottom: 1px solid var(--cl-main) !important;
    font-size: 1.5625rem /* 25/16 */;
    padding: 0 4.375rem /* 70/16 */ 0 0;
    height: 3.75rem /* 60/16 */;
    border-radius: 0;
    box-shadow: none !important;
    background: transparent !important;
}

.CR-form-footer--sec .CR-form-def .def-form-field {
    margin: 0;
}

.CR-form-footer--sec .CR-form-def .def-form-field:last-child {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.CR-form-footer--sec .CR-form-def .gr-def-form-btn {
    width: 4.063rem /* 65/16 */;
    height: 100%;
    margin: 0;
}

.CR-form-footer--sec .CR-form-def .gr-def-form-btn:after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='65' height='20' viewBox='0 0 65 20' fill='none'%3E%3Cpath d='M0 10.1836H63.4465' stroke='%23DEDEDE' stroke-width='2'/%3E%3Cpath d='M54.8438 1L63.4467 9.92125' stroke='%23DEDEDE' stroke-width='2'/%3E%3Cpath d='M63.4473 9.9209L54.8443 18.8422' stroke='%23DEDEDE' stroke-width='2'/%3E%3C/svg%3E");
}

.CR-form-footer--sec .CR-form-def .gr-def-form-btn:before {
    display: none;
}

.CR-form-footer--sec .CR-form-def input[type=submit] {
    width: 100%;
    height: auto;
    background: transparent !important;
    color: transparent;
    padding: 0;
    font-size: 2.1875rem /* 35/16 */;
}


.CR-form-footer--sec .CR-cf7-box {
    margin-top: 1.25rem /* 20/16 */;
}

.CR-form-footer--sec.black--sec .heading-title {
    font-size: 2.5rem /* 40/16 */;
}

.CR-form-footer--sec.black--sec .desc {
    font-size: 1.125rem /* 18/16 */;
}

.CR-form-footer--sec.black--sec .intro--box {
    width: 40%;
    padding-right: 1rem;
}

.CR-form-footer--sec.black--sec .CR-cf7-box {
    margin-top: 0;
    width: 60%;
}

.CR-form-footer--sec.black--sec .CR-form-def input:not([type=submit]) {
    border-color: var(--cl-white) !important;
}

/**================== HEADER ==================**/
.admin-bar #CR-header {
    top: 32px !important;
}

#CR-header {
    -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 !important;
    z-index: 8888;
    box-shadow: -1px 4px 29px transparent;
    text-align: center;
    background: transparent;
}

#CR-header.black-style:before,
#CR-header.CR-fixed:before {
    bottom: 100%;
    opacity: 0;
}

#CR-header.CR-fixed:after {
    bottom: 0;
    opacity: 1;
}

#CR-header:before,
#CR-header:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    z-index: -1;
}

#CR-header:before {
    opacity: 0.7;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    bottom: 0;
}

#CR-header:after {
    opacity: 0;
    background: var(--cl-white);
    bottom: 100%;
}

#CR-header.CR-fixed {
    background: var(--cl-white);
    box-shadow: -1px 4px 29px rgb(0 0 0 / 21%);
}

#CR-header.CR-fixed .logo--box img,
#CR-header.CR-fixed .logo--box svg {
    height: 5.1875rem /* 35/16 */;
}

#CR-header .logo--box img,
#CR-header .logo--box svg {
    width: auto;
    height: 3.125rem /* 50/16 */ !important;
    position: relative;
    z-index: 21;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-header.change-header .logo--box svg path:not(:nth-child(1),:nth-child(2),:nth-child(3)),
#CR-header.black-style .logo--box svg path:not(:nth-child(1),:nth-child(2),:nth-child(3)),
#CR-header.CR-fixed .logo--box svg path:not(:nth-child(1),:nth-child(2),:nth-child(3)) {
    stroke: var(--cl-black) !important;
    fill: var(--cl-black) !important;
}

#CR-header .logo--box svg path:not(:nth-child(1),:nth-child(2),:nth-child(3)) {
    stroke: var(--cl-white);
    fill: var(--cl-white);
    -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 svg *,
#CR-header .CR-toggle-menu svg * {
    /*fill: var(--cl-white);*/
    stroke: var(--cl-white);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-header.CR-fixed a {
    color: var(--cl-white);
}

#CR-header.change-header .CR-toggle-search svg *,
#CR-header.change-header .CR-toggle-menu svg *,
#CR-header.black-style .CR-toggle-search svg *,
#CR-header.black-style .CR-toggle-menu svg *,
#CR-header.CR-fixed .CR-toggle-search svg *,
#CR-header.CR-fixed .CR-toggle-menu svg * {
    /*fill: var(--cl-main) !important;*/
    stroke: var(--cl-main) !important;
}

#CR-header .CR-toggle-menu .open {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
    -webkit-box-align: strart;
    -ms-flex-align: strart;
    align-items: flex-strart;
}

.tax-services-category #CR-header .CR-toggle-menu .open span,
#CR-header .CR-toggle-menu .open span {
    height: 2px;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    background: var(--cl-white);
}

#CR-header.change-header .CR-toggle-menu .open span,
#CR-header.black-style .CR-toggle-menu .open span,
#CR-header.CR-fixed .CR-toggle-menu .open span {
    background: var(--cl-black) !important;
}

#CR-header .CR-toggle-menu .open span:nth-child(1),
#CR-header .CR-toggle-menu .open span:nth-child(3) {
    width: 70%;
}

#CR-header .CR-toggle-menu .open span:nth-child(2) {
    width: 100%;
}

#CR-header .CR-toggle-menu .open span:nth-child(1),
#CR-header .CR-toggle-menu .open span:nth-child(3) {
    width: 70%;
}

#CR-header .CR-toggle-menu:hover .open span:nth-child(1),
#CR-header .CR-toggle-menu:hover .open span:nth-child(3) {
    width: 100%;
}

#CR-header .CR-toggle-menu:hover .open span:nth-child(2) {
    width: 70%;
}

#CR-header .CR-toggle-menu:hover .open span {
    background: var(--cl-hover-main) !important;
}

#CR-header .CR-toggle-menu:hover .open span {
    background: var(--cl-hover-main) !important;
}

#CR-header.change-header .lang--box a,
#CR-header.black-style .lang--box a,
#CR-header.CR-fixed .lang--box a {
    color: var(--cl-main);
}

#CR-header .CR-toggle-search {
    width: 1.5rem /* 30/16 */;
}

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

#CR-header .CR-toggle-search,
#CR-header .CR-toggle-menu {
    height: 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;
    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: 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-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.CR-fixed .main--box {
    padding-top: 0.5625rem /* 25/16 */;
    padding-bottom: 0.5625rem /* 25/16 */;
}

#CR-header .main--box {
    padding: 1.75rem calc(calc(100vw - 87.5rem) / 2);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    position: relative;
    z-index: 999999999;
    border-bottom: 1px solid #FFFFFF33;
}

#CR-header .main--box .left--box {
    gap: 2.125rem
}
#CR-header .main--box .right--box {
    gap: 1.5625rem /* 25/16 */;
}

#CR-header .CR-main-search-mb,
#CR-header .CR-main-nav-mb {
    z-index: 999999;
    top: 0;
    bottom: 0;
    width: 100%;
    right: -100%;
    background-color: #EFEFF0;
    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-right: 12.5rem /* 200/16 */;
    overflow: hidden;
}

#CR-header .CR-main-search-mb.active,
#CR-header .CR-main-nav-mb.active {
    visibility: visible;
    right: 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 .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: 1.25rem /* 20/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 > .item-with-arrow-box,
#CR-header .main-merged-menu > ul > li > a{
    position: relative;
    display: flex;
    align-items: center;
}
#CR-header .main-merged-menu > ul > li > .item-with-arrow-box:before,
#CR-header .main-merged-menu > ul > li > a:before {
    content: '';
    width: 0;
    min-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;
    display: block;
}

#CR-header .main-merged-menu > ul > li.nav-active > .item-with-arrow-box:before,
#CR-header .main-merged-menu > ul > li.current-menu-item > .item-with-arrow-box:before,
#CR-header .main-merged-menu > ul > li:hover > .item-with-arrow-box:before,
#CR-header .main-merged-menu .current-menu-item > a:before,
#CR-header .main-merged-menu li:hover > a:before {
    width: 1.75rem;
    min-width: 1.75rem;
    margin-right: 1rem;
    background: var(--subtitle-cl);
}

#CR-header .main-merged-menu a {
    font-family: var(--font-sp);
    color: var(--cl-black);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-size: 2.125rem;
    text-transform: uppercase;
    display: block;
    text-align: left;
    width: 100%;
}

#CR-header .main-merged-menu > ul > li.nav-active > .item-with-arrow-box,
#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-hover-main);
}

#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-hover-main);
    /*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);*/
}

#CR-header .lang--box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

#CR-header .lang--box a {
    font-family: 'Montserrat', 'sans-serif';
    color: rgba(255, 255, 255, 0.5);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    font-size: 1rem;
}

#CR-header .lang--box a.active {
    color: rgba(255, 255, 255, 1);
}

#CR-header.black-style .lang--box a.active {
    color: rgba(0, 0, 0, 1);
}

#CR-header .lang--box a:not(:last-child):after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: 400 !important;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    width: 1px;
}
#CR-header.black-style .lang--box a:not(:last-child):after {
    background-color: rgba(0, 0, 0, 0.5);
}

/**================== FOOTER ==================**/
#CR-footer {
    background: var(--cl-white);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
}

#CR-footer .heading-title {
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 1.875rem /* 30/16 */;
    line-height: normal;
    margin-bottom: 1rem /* 16/16 */;
    color: var(--cl-light-main);
}

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


#CR-footer .menu-item.active a,
#CR-footer a:hover {
    color: var(--cl-hover-main) !important;
}

#CR-footer a,
#CR-footer span,
#CR-footer span b,
#CR-footer p {
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem /* 18/16 */;
    line-height: 1.5625rem /* 25/16 */;
    color: var(--cl-light-main);
    font-family: var(--font-sp);
}

#CR-footer .logo--box img {
    width: auto;
    max-width: 100%;
    height: 6.4375rem /* 55/16 */;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-footer .socials--box ul {
    margin: 0;
    gap: 1.875rem /* 30/16 */;
}

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

#CR-footer .socials--box a:hover {
    color: var(--cl-hover-main) !important;
}

#CR-footer .copyright--box {
    position: relative;
}

#CR-footer .copyright--box * {
    line-height: normal;
    font-size: 0.875rem /* 14/16 */;
}

#CR-footer .copyright--box a {
    text-decoration: underline !important;
}

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

#CR-footer .menu-column--box a {
    position: relative;
    display: block;
}

#CR-footer .custom-column--box li:not(:last-child) {
    margin-bottom: 0.625rem /* 10/16 */;
}

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

#CR-footer .CR-bottom-footer .left--box {
    gap: 0.625rem /* 10/16 */;
}

#CR-footer .CR-bottom-footer p,
#CR-footer .CR-bottom-footer a {
    color: var(--cl-white) !important;
}

/**================== HOME PAGE ==================**/
#CR-home-page .banner--sec {
    position: relative;
}

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

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

#CR-home-page .banner--sec .item:after {
    content: '';
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.00) 0%, rgba(34, 34, 34, 0.51) 39.06%, rgba(34, 34, 34, 0.83) 61.98%, #222 86.98%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 60%;
    z-index: 1;
}

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

#CR-home-page .banner--sec .item .container {
    position: relative;
    z-index: 2;
}

#CR-home-page .banner--sec .item .heading-title {
    color: var(--cl-light-gray);
    font-size: 3.75rem /* 60/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 6.25rem /* 100/16 */ !important;
    display: block;
}

#CR-home-page .intro--sec {
    padding: 8.125rem /* 130/16 */ 0 30.3125rem /* 485/16 */;
    position: relative;
    overflow: hidden;
}

#CR-home-page .intro--sec .CR-heading-title--group * {
    text-align: left;
    color: var(--cl-light-main);
}

#CR-home-page .intro--sec .CR-btn-style-icon {
    margin-top: 1.25rem /* 20/16 */;
}

#CR-home-page .intro--sec .CR-btn-style-icon svg path {
    stroke: var(--cl-light-main);
}

#CR-home-page .intro--sec .CR-btn-style-icon:after {
    border-color: var(--cl-light-main);
}

#CR-home-page .intro--sec .list--box {
    border-radius: 50%;
    border: 1px solid var(--cl-main);
    /*width: 58.33333333%;*/
    width: 62.5rem /* 1000/16 */;
    height: auto;
    aspect-ratio: 1/1;
    position: absolute;
    top: 6.25rem /* 100/16 */;
    right: -12.5rem /* -200/16 */;
}

#CR-home-page .intro--sec .list--box .item {
    border-radius: 50%;
    width: 11.25rem /* 180/16 */;
    position: absolute;
    cursor: pointer;
}

#CR-home-page .intro--sec .list--box .item:nth-child(1) {
    top: 0;
    left: 10%;
}

#CR-home-page .intro--sec .list--box .item:nth-child(2) {
    bottom: 55%;
    left: -5%;
}

#CR-home-page .intro--sec .list--box .item:nth-child(3) {
    bottom: 25%;
    left: -8%;
}

#CR-home-page .intro--sec .list--box .item.active .wrap {
    border-color: var(--cl-hover-main);
}

#CR-home-page .intro--sec .list--box .item .wrap {
    position: relative;
    border: 1px solid var(--cl-light-main);
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
    background: #F5F5F5;
    stroke-width: 1px;
    filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.10));
    transition: 0.5s ease-in-out;
}

#CR-home-page .intro--sec .list--box .item.active .num,
#CR-home-page .intro--sec .list--box .item.active .heading-title {
    color: var(--cl-hover-main);
}

#CR-home-page .intro--sec .list--box .item .num,
#CR-home-page .intro--sec .list--box .item .heading-title {
    color: var(--cl-light-main);
    font-style: normal;
    font-weight: 400;
    text-align: left;
    margin: 0;
    transition: 0.5s ease-in-out;
}

#CR-home-page .intro--sec .list--box .item .num {
    font-size: 2.5rem /* 40/16 */;
    line-height: normal;
}

#CR-home-page .intro--sec .list--box .item .heading-title {
    font-family: var(--font-sp);
    font-size: 1.5625rem /* 25/16 */;
    margin: 0;
}

#CR-home-page .intro--sec .list--box .content-swap--box {
    position: absolute;
    top: 45%;
    left: 45%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50%;
}

#CR-home-page .intro--sec .list--box .content-swap--box .sub--box {
    /*display: none;*/
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0);
    left: 0;
    right: 0;
    transition: 0.5s ease-in-out;
    opacity: 0;
}

#CR-home-page .intro--sec .list--box .content-swap--box .sub--box.show {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

#CR-home-page .intro--sec .list--box .content-swap--box .heading-title {
    color: var(--cl-light-main);
    text-align: right;
    font-size: 3.75rem /* 60/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

#CR-home-page .intro--sec .list--box .content-swap--box .desc {
    color: var(--cl-light-main);
    text-align: right;
    font-family: var(--font-sp);
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 2.1875rem /* 35/16 */;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: calc(2.1875rem * 3);
}

#CR-home-page .intro--sec .list--box .content-swap--box img {
    height: 9rem /* 80/16 */;
    width: auto;
    margin: 0 auto;
    display: block;
    transform: scale(1);
    transition: 0.5s ease-in-out;
}

#CR-home-page .intro--sec .list--box .content-swap--box img.hide {
    transform: scale(0);
    opacity: 0;
}

#CR-home-page .intro--sec .list--box .content-swap--box svg path:not(:nth-child(1),:nth-child(2),:nth-child(3)),
#CR-home-page .intro--sec .list--box .content-swap--box svg path:not(:nth-child(1),:nth-child(2),:nth-child(3)),
#CR-home-page .intro--sec .list--box .content-swap--box svg path:not(:nth-child(1),:nth-child(2),:nth-child(3)) {
    stroke: var(--cl-black) !important;
    fill: var(--cl-black) !important;
}

#CR-home-page .projects--sec {
    background-color: var(--cl-main);
}

#CR-home-page .projects--sec .top--box {
    background-color: var(--cl-black);
    background-blend-mode: luminosity;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    padding: 12.5rem /* 200/16 */ 0 4.0625rem /* 65/16 */;
}

#CR-home-page .projects--sec .top--box .CR-heading-title--group {
    width: 40%;
    padding-right: 1rem;
}

#CR-home-page .projects--sec .top--box .CR-heading-title--group * {
    text-align: left;
    color: var(--cl-light-gray);
}

#CR-home-page .projects--sec .top--box .action--box {
    width: 60%;
}

#CR-home-page .projects--sec .top--box .action--box ul {
    gap: 2.5rem /* 40/16 */;
}

#CR-home-page .projects--sec .top--box .action--box a.active:before,
#CR-home-page .projects--sec .top--box .action--box a:hover:before {
    margin-right: 1rem;
    opacity: 1;
    transform: scale(1);
}

#CR-home-page .projects--sec .top--box .action--box a {
    color: var(--cl-light-gray);
    font-family: var(--font-sp);
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-home-page .projects--sec .top--box .action--box a:before {
    content: '';
    width: 0.375rem /* 6/16 */;
    height: 0.375rem /* 6/16 */;
    background: var(--cl-hover-main);
    border-radius: 50%;
    transform: scale(0);
    transition: 0.5s ease-in-out;
}

#CR-home-page .projects--sec .CR-project-list--box {
    margin-bottom: 0.3125rem /* 5/16 */;
}

#CR-home-page .services--sec {
    padding: 9.375rem /* 150/16 */ 0;
}

#CR-home-page .services--sec .CR-heading-title--group {
    width: 50%;
}

#CR-home-page .services--sec .CR-heading-title--group * {
    text-align: left;
}

#CR-home-page .services--sec .CR-btn-style-icon svg path {
    stroke: var(--cl-light-main);
}

#CR-home-page .services--sec .CR-btn-style-icon:after {
    border-color: var(--cl-light-main);
}

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

.CR-item-service-home {
    width: 25%;
    position: relative;
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.CR-item-service-home:hover {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.CR-item-service-home:nth-child(1) {
    z-index: 1;
}

.CR-item-service-home:nth-child(2) {
    z-index: 2;
}

.CR-item-service-home:nth-child(3) {
    z-index: 3;
}

.CR-item-service-home:nth-child(4) {
    z-index: 4;
}

.CR-item-service-home:after {
    content: '';
    background: var(--cl-hover-main);
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.20);
}

.CR-item-service-home:hover:after {
    background: var(--cl-white);
}

.CR-item-service-home:hover .wrap {
    border-color: var(--cl-hover-main);
    background: var(--cl-white);
}

.CR-item-service-home .wrap {
    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: 50%;
    background: var(--cl-hover-main);
    height: auto;
    aspect-ratio: 1/1;
    position: relative;
    border: 1px solid var(--cl-white);
    z-index: 1;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

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

.CR-item-service-home .flip-front--box {
    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-item-service-home .flip-front--box,
.CR-item-service-home .flip-back--box {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.CR-item-service-home .flip-back--box {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    overflow: hidden;
    border-radius: 50%;
}

.CR-item-service-home .flip-back--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;
}

.CR-item-service-home .heading-title {
    color: var(--cl-white);
    font-size: 1.875rem /* 30/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 auto;
}

#CR-home-page .partner--sec {
    position: relative;
    padding: 9.375rem /* 150/16 */ 0;
    z-index: 1;
}

#CR-home-page .partner--sec:after {
    content: '';
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#CR-home-page .partner--sec .partner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

#CR-home-page .partner--sec .container {
    position: relative;
    z-index: 1;
}

#CR-home-page .partner--sec .top--box {

}

#CR-home-page .partner--sec .CR-heading-title--group * {
    text-align: left;
    color: var(--cl-light-gray);
}

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

#CR-home-page .partner--sec .CR-item-partner .thumb--box img {
    filter: brightness(0) invert(1) grayscale(1);
}

#CR-home-page .partner--sec .CR-item-partner .wrap:hover img {
    filter: brightness(1) invert(0) grayscale(0);
}

#CR-home-page .partner--sec .CR-custom-dots .slick-dots li.slick-active button {
    border-color: var(--cl-white);
    background-color: var(--cl-white);
}

#CR-home-page .partner--sec .CR-custom-dots .slick-dots li.slick-active button:before {
    color: var(--cl-white) !important;
}

#CR-home-page .partner--sec .CR-custom-dots .slick-dots li button {
    background-color: rgba(222, 222, 222, 0.60);
    border: 1px solid rgba(222, 222, 222, 0.60);
}

#CR-home-page .partner--sec .partner-list--box .items--box .line {
    display: none;
}

#CR-home-page .partner--sec .CR-item-partner {
    width: 16.667%;
}

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

#CR-home-page .news--sec .CR-heading-title--group {
    width: 40%;
    padding-right: 1rem;
}

#CR-home-page .news--sec .CR-heading-title--group * {
    text-align: left;
    color: var(--cl-light-main);
}

#CR-home-page .news--sec .action--box {
    width: 60%;
}

#CR-home-page .news--sec .action--box ul {
    gap: 2.5rem /* 40/16 */;
}

#CR-home-page .news--sec .action--box a.active:before,
#CR-home-page .news--sec .action--box a:hover:before {
    margin-right: 1rem;
    opacity: 1;
    transform: scale(1);
}

#CR-home-page .news--sec .action--box a {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-home-page .news--sec .action--box a:before {
    content: '';
    width: 0.375rem /* 6/16 */;
    height: 0.375rem /* 6/16 */;
    background: var(--cl-hover-main);
    border-radius: 50%;
    transform: scale(0);
    transition: 0.5s ease-in-out;
}

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

#CR-home-page .news--sec .CR-news-list--box {
    width: 55%;
    gap: 1.75rem /* 28/16 */;
    -ms-flex-wrap: unset !important;
    flex-wrap: unset !important;
}

#CR-home-page .news--sec .CR-news-home-list--box {
    width: 45%;
    border-top: 1px solid var(--cl-light-gray);
}

#CR-home-page .news--sec .CR-news-list--box .CR-item-news {
    width: 50%;
    padding: 0;
}

#CR-home-page .news--sec .CR-news-list--box .CR-item-news .thumb--box {
    aspect-ratio: 3/4.5;
}

#CR-home-page .news--sec .CR-news-list--box .CR-item-news .content--box {
    padding: 1.875rem /* 30/16 */;
}

.CR-item-news-home {
    width: 100%;
}

.CR-item-news-home .wrap {
    position: relative;
    padding: 0.625rem /* 10/16 */ 0 0.9375rem /* 15/16 */;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.CR-item-news-home .wrap:hover:after {
    background: var(--cl-hover-main) !important;
}

.CR-item-news-home .wrap:after {
    content: '';
    background: var(--cl-light-gray);
    height: 1px;
    position: absolute;
    bottom: -1.25px;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

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

.CR-item-news-home .date {
    text-align: center;
    min-width: 2.625rem /* 42/16 */;
    width: 2.625rem /* 42/16 */;
}

.CR-item-news-home .wrap:hover .date * {
    color: var(--cl-hover-main);
}

.CR-item-news-home .date b {
    color: var(--cl-light-main);
    font-size: 2.5rem /* 40/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.CR-item-news-home .date p {
    color: var(--cl-light-main);
    font-size: 0.625rem /* 10/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.CR-item-news-home .content--box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 1.875rem /* 30/16 */;
    position: relative;
    padding-right: 2.5rem /* 40/16 */;
}

.CR-item-news-home .heading-title {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem /* 24/16 */;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: calc(1.5rem * 2);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.CR-item-news-home .wrap:hover .heading-title {
    color: var(--cl-hover-main);
    text-shadow: 0 0 0 var(--cl-hover-main),
    0 0 0 var(--cl-hover-main),
    0 0 0 var(--cl-hover-main),
    0 0 0 var(--cl-hover-main);
}

.CR-item-news-home .content--box svg {
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.CR-item-news-home .wrap:hover .content--box svg path {
    fill: var(--cl-hover-main);
}

.CR-item-news-home .content--box svg path {
    fill: var(--cl-light-gray);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

/**================== ABOUT PAGE ==================**/
#CR-about-page .intro--sec {
    padding: 8.125rem /* 130/16 */ 0;
    position: relative;
    overflow: hidden;
}

#CR-about-page .intro--sec .intro-bg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

#CR-about-page .intro--sec .CR-heading-title--group * {
    text-align: left;
}

#CR-about-page .intro--sec .content--box {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem /* 26/16 */;
    padding-top: 1.875rem /* 30/16 */;
    margin-top: 1.875rem /* 30/16 */;
    border-top: 1px solid var(--cl-light-main);
}

#CR-about-page .intro--sec .CR-manage-view-more-content--box .CR-btn-style {
    color: var(--cl-light-main);
    text-transform: capitalize;
    position: relative;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: max-content;
    font-size: 1.125rem /* 18/16 */;
    font-weight: 400 !important;
    padding: 0 !important;
    font-family: var(--font-sp);
    margin-top: 1.25rem /* 20/16 */;
}

#CR-about-page .number--sec {
    position: relative;
    padding: 6.25rem /* 100/16 */ 0;
    background: var(--cl-main);
}

#CR-about-page .number--sec:before,
#CR-about-page .number--sec .bg--box:before,
#CR-about-page .number--sec .bg--box:after {
    content: '';
    position: absolute;
}

#CR-about-page .number--sec:before {
    bottom: 0;
    left: 0;
    top: 0;
    right: 80%;
    background: -webkit-gradient(linear, right top, left top, from(rgba(34, 34, 34, 0.00)), color-stop(39.06%, rgba(34, 34, 34, 0.51)), color-stop(61.98%, rgba(34, 34, 34, 0.83)), color-stop(86.98%, #222));
    background: -o-linear-gradient(right, rgba(34, 34, 34, 0.00) 0%, rgba(34, 34, 34, 0.51) 39.06%, rgba(34, 34, 34, 0.83) 61.98%, #222 86.98%);
    background: linear-gradient(270deg, rgba(34, 34, 34, 0.00) 0%, rgba(34, 34, 34, 0.51) 39.06%, rgba(34, 34, 34, 0.83) 61.98%, #222 86.98%);
    z-index: 1;
}

#CR-about-page .number--sec .bg--box:before {
    bottom: 0;
    right: 0;
    top: 0;
    left: 50%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(34, 34, 34, 0.00)), color-stop(39.06%, rgba(34, 34, 34, 0.51)), color-stop(61.98%, rgba(34, 34, 34, 0.83)), color-stop(86.98%, #222));
    background: -o-linear-gradient(left, rgba(34, 34, 34, 0.00) 0%, rgba(34, 34, 34, 0.51) 39.06%, rgba(34, 34, 34, 0.83) 61.98%, #222 86.98%);
    background: linear-gradient(90deg, rgba(34, 34, 34, 0.00) 0%, rgba(34, 34, 34, 0.51) 39.06%, rgba(34, 34, 34, 0.83) 61.98%, #222 86.98%);
    z-index: 1;
}

#CR-about-page .number--sec .bg--box:after {
    background: -o-linear-gradient(top, rgba(34, 34, 34, 0.00) 0%, rgba(34, 34, 34, 0.51) 39.06%, rgba(34, 34, 34, 0.83) 61.98%, #222 86.98%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(34, 34, 34, 0.00)), color-stop(39.06%, rgba(34, 34, 34, 0.51)), color-stop(61.98%, rgba(34, 34, 34, 0.83)), color-stop(86.98%, #222));
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.00) 0%, rgba(34, 34, 34, 0.51) 39.06%, rgba(34, 34, 34, 0.83) 61.98%, #222 86.98%);
    bottom: 0;
    left: 0;
    right: 0;
    top: 40%;
}

#CR-about-page .number--sec .bg--box,
#CR-about-page .number--sec .num-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#CR-about-page .number--sec .num-bg {
    object-position: center;
    object-fit: cover;
}

#CR-about-page .number--sec .container {
    position: relative;
    z-index: 3;
}

#CR-about-page .number--sec .container .row > div {
    position: relative;
}

#CR-about-page .number--sec .quote--box {
    color: var(--cl-white);
    font-size: 2.5rem /* 40/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
}

#CR-about-page .number--sec .quote--box svg {
    position: absolute;
    bottom: calc(100% + 1.25rem /* 20/16 */);
    left: 0;
}

#CR-about-page .number--sec .list--box {
    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-align: end;
    -ms-flex-align: end;
    align-items: end;
}

#CR-about-page .number--sec .list--box .item {
    min-width: 16.25rem /* 260/16 */;
}

#CR-about-page .number--sec .list--box .item .wrap {
    padding: 1.5625rem /* 25/16 */ 0;
    position: relative;
}

#CR-about-page .number--sec .list--box .item .wrap:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(270deg, rgba(186, 191, 194, 0.80) 0%, rgba(186, 191, 194, 0.00) 100%);
    height: 1px;
}

#CR-about-page .number--sec .list--box .item * {
    color: var(--cl-light-gray);
    font-family: var(--font-sp);
    text-align: right;
    font-weight: 400;
    font-style: normal;
}

#CR-about-page .number--sec .list--box .item .heading-title {
    font-size: 3.125rem /* 50/16 */;
    line-height: normal;
    margin: 0;
}

#CR-about-page .number--sec .list--box .item .desc {
    font-size: 1.125rem /* 18/16 */;
    line-height: 1.625rem /* 26/16 */;
}

#CR-about-page .value--sec {
    padding: 7.5rem /* 120/16 */ 0;
    position: relative;
}

#CR-about-page .value--sec .value-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

#CR-about-page .value--sec .list--box {
    margin: 1.25rem /* 20/16 */ -2.5rem /* -40/16 */ -2.5rem /* -40/16 */;
}

#CR-about-page .value--sec .item {
    width: 33.33%;
    padding: 2.5rem /* 40/16 */;
}

#CR-about-page .value--sec .item .wrap {
    position: relative;
}

#CR-about-page .value--sec .item .icon--box {
    width: 6.25rem /* 100/16 */;
    height: 6.25rem /* 100/16 */;
    border-radius: 50%;
    border: 0.8125rem /* 13/16 */ solid #cacaca;
    background: var(--cl-hover-main);
    margin: 0 auto 1.25rem /* 20/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-about-page .value--sec .item .icon--box img {
    width: auto;
    max-width: 80%;
    object-fit: contain;
    height: 50%;
    filter: brightness(0) invert(1);
}

#CR-about-page .value--sec .item * {
    color: var(--cl-light-main);
    text-align: center;
    font-family: var(--font-sp);
    font-style: normal;
    font-weight: 400;
}

#CR-about-page .value--sec .item .heading-title {
    font-size: 1.5625rem /* 25/16 */;
    line-height: 2.0625rem /* 33/16 */;
    margin: 0 auto;
}

#CR-about-page .value--sec .item .desc {
    font-size: 1.125rem /* 18/16 */;
    line-height: 1.625rem /* 26/16 */;
    margin: 0.625rem /* 10/16 */ auto 0;
}

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

#CR-about-page .hr--sec .CR-heading-title--group .heading-title {
    font-size: 2.5rem /* 40/16 */;
}

#CR-about-page .hr--sec .CR-heading-title--group .desc {
    font-size: 1.125rem /* 18/16 */;
}

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

#CR-about-page .hr--sec .CR-personnel-list--box {
    margin: 0 -1.875rem /* -30/16 */;
}

#CR-about-page .hr--sec .CR-slider-hr-about .list--box {
    display: block !important;
}

.CR-item-personnel {
    width: 20%;
    padding: 0 1.875rem /* 30/16 */;
}

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

.CR-item-personnel .thumb--box {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    position: relative;
}

.CR-item-personnel .wrap:hover .thumb--box:after {
    opacity: 1;
}

.CR-item-personnel .wrap:hover .thumb--box:before {
    opacity: 0;
}

.CR-item-personnel .thumb--box:after,
.CR-item-personnel .thumb--box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: -1;
    transition: 0.5s ease-in-out;
}

.CR-item-personnel .thumb--box:after {
    background: radial-gradient(96.33% 96.33% at 50% 3.67%, rgba(255, 184, 0, 0.00) 37.15%, rgba(255, 184, 0, 0.10) 55.38%, rgba(255, 184, 0, 0.19) 72.57%, rgba(255, 184, 0, 0.45) 86.11%, #FFB800 100%);
    opacity: 0;
}

.CR-item-personnel .thumb--box:before {
    background: radial-gradient(96.33% 96.33% at 50% 3.67%, rgba(34, 34, 34, 0.00) 37.15%, rgba(34, 34, 34, 0.10) 55.38%, rgba(34, 34, 34, 0.19) 72.57%, rgba(34, 34, 34, 0.45) 86.11%, #222 100%);
    opacity: 1;
}

.CR-item-personnel .thumb--box img {
    width: auto;
    height: 100%;
    max-width: 90%;
    object-fit: contain;
}

.CR-item-personnel .content--box {
    margin-top: 1.25rem /* 20/16 */;
}

.CR-item-personnel .content--box * {
    text-align: center;
    color: var(--cl-light-main);
}

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

.CR-item-personnel .heading-title {
    font-size: 1.25rem /* 20/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: 1.75rem /* 28/16 */;
    text-transform: uppercase;
    margin: 0 auto;
    transition: 0.5s ease-in-out;
}

.CR-item-personnel .position {
    font-family: var(--font-sp);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem /* 26/16 */;
    margin: 0 auto;
}

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

#CR-about-page .team--sec .main-list--box {
    position: relative;
}

#CR-about-page .team--sec .arrow-slider--box {
    position: absolute;
    bottom: 3.4375rem /* 55/16 */;
    left: 3.75rem /* 60/16 */;
    z-index: 2;
    gap: 0.875rem /* 14/16 */;
}

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

#CR-about-page .team--sec .CR-custom-arrow .icon:hover {
    background: var(--cl-hover-main);
    opacity: 1;
    border-color: var(--cl-hover-main);
}

#CR-about-page .team--sec .CR-custom-arrow .icon:hover svg {
    fill: var(--cl-white);
}

#CR-about-page .team--sec .CR-custom-arrow .icon {
    opacity: 0.7;
    border: 1px solid var(--cl-white);
    background: var(--cl-white);
    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;
    border-radius: 50%;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-about-page .team--sec .CR-custom-arrow svg {
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    fill: transparent !important;
}

#CR-about-page .team--sec .CR-custom-arrow svg * {
    stroke: #999999;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-about-page .team--sec .CR-custom-arrow:hover svg * {
    stroke: #ffffff;
}

#CR-about-page .team--sec .item {
    position: relative;
    height: auto;
    aspect-ratio: 16/9;
}

#CR-about-page .team--sec .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#CR-about-page .team--sec .item .content--box {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 65%;
    background: rgb(34 34 34 / 90%);
    padding: 4.375rem /* 70/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: end;
    -ms-flex-pack: end;
    justify-content: end;
}

#CR-about-page .team--sec .item .content--box * {
    color: var(--cl-light-gray);
    font-style: normal;
    font-weight: 400;
}

#CR-about-page .team--sec .item .heading-title {
    font-size: 3.75rem /* 60/16 */;
    line-height: normal;
    display: block;
    margin: 0;
}

#CR-about-page .team--sec .item .desc {
    font-family: var(--font-sp);
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 2.0625rem /* 33/16 */;
    margin: 0.625rem /* 10/16 */ 0 0;
}

#CR-about-page .team--sec .item .CR-button-style {
    color: #fff;
    font-family: var(--font-sp);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline !important;
    margin: 1.875rem /* 30/16 */ 0 0;
    display: inline-block;
}

#CR-about-page .team--sec .item .CR-button-style svg {
    margin-left: 0.625rem /* 10/16 */;
    filter: brightness(0) invert(1);
}

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

/**================== RECRUITMENT PAGE ==================**/
#CR-recruitment-page .intro--sec {
    padding: 8.125rem /* 130/16 */ 0 3.125rem /* 50/16 */;
}

#CR-recruitment-page .intro--sec .content--box {
    padding-right: 3.75rem /* 60/16 */;
}

#CR-recruitment-page .intro--sec .CR-heading-title--group * {
    text-align: left;
}

#CR-recruitment-page .intro--sec .sub-content--box {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem /* 26/16 */;
    padding-top: 1.875rem /* 30/16 */;
    margin-top: 1.875rem /* 30/16 */;
    border-top: 1px solid var(--cl-light-main);
}

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

#CR-recruitment-page .opportunities--sec {
    padding: 3.125rem /* 50/16 */ 0 6.25rem /* 100/16 */;
}

#CR-recruitment-page .opportunities--sec .recruitment-list--box {
    background-color: var(--cl-white);
    margin-top: 3.125rem /* 50/16 */;
}

.CR-recruitment-col-box li {
    padding: 0 0.9375rem /* 15/16 */;
}

.CR-recruitment-col-box li:nth-child(1) {
    width: 8%;
}

.CR-recruitment-col-box li:nth-child(2) {
    width: 27%;
}

.CR-recruitment-col-box li:nth-child(4),
.CR-recruitment-col-box li:nth-child(3),
.CR-recruitment-col-box li:nth-child(5),
.CR-recruitment-col-box li:last-child {
    width: 16.25%;
}

.CR-recruitment-col-box li * {
    color: var(--cl-black);
    font-size: 0.9375rem /* 15/16 */;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    text-align: center;
}

.CR-recruitment-list-heading {
    background: var(--cl-main);
}

.CR-recruitment-list-heading li p {
    padding: 0;
    margin: 0;
    text-align: center;
    height: 5.25rem /* 84/16 */;
    color: var(--cl-light-gray);
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.CR-item-recruitment {
    width: 100%;
    -webkit-box-shadow: 0 3px 10px transparent;
    box-shadow: 0 3px 10px transparent;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    position: relative;
}

.CR-item-recruitment {
    border-bottom: 1px solid rgba(186, 191, 194, 0.80);
}

.CR-item-recruitment:hover {
    border-color: var(--cl-hover-main);
}

.CR-item-recruitment:hover:after {
    right: 0;
}

.CR-item-recruitment:after {
    content: '';
    background: var(--cl-hover-main);
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.CR-item-recruitment .CR-recruitment-col-box li * {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem /* 26/16 */;
}

.CR-item-recruitment .CR-recruitment-col-box li:nth-child(2) * {
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.CR-item-recruitment .CR-recruitment-col-box li:first-child p {
    font-family: var(--font-main);
    font-size: 2.1875rem /* 35/16 */;
    line-height: normal;
}

.CR-item-recruitment ul {
    padding: 0;
}

.CR-item-recruitment ul li {
    padding: 1.25rem /* 20/16 */;
}

.CR-item-recruitment p {
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.CR-item-recruitment a {
    display: block;
    width: 100%;
}

.CR-item-recruitment a:hover {
    color: var(--cl-main) !important;
}

.CR-item-recruitment .heading-title:hover,
.CR-item-recruitment:hover .heading-title,
.CR-item-recruitment:hover p {
    color: var(--cl-hover-main) !important;
}

.CR-item-recruitment .btn-view:hover {
    color: var(--cl-main) !important;
    background: var(--cl-hover-main) !important;
    border-color: var(--cl-hover-main) !important;
}

.CR-item-recruitment .btn-view {
    width: 100%;
    height: 2.5rem /* 40/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;
    color: var(--cl-light-main) !important;
    font-size: 1.125rem /* 18/16 */ !important;
    background: var(--cl-white);
    border: 1px solid var(--cl-light-main);
    line-height: normal;
    font-weight: 400;
    padding: 0 1rem /* 16/16 */;
    border-radius: 1.25rem /* 20/16 */;
}

.CR-item-recruitment .btn-view.deactivate {
    opacity: 0.5;
    pointer-events: none;
}

.CR-item-recruitment .label {
    display: none;
}

#CR-popup-recruitment .box {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 2.5rem /* 40/16 */;
    border: 1px solid var(--cl-black);
    background-color: var(--cl-main);
    background-blend-mode: overlay;
    position: relative;
    max-width: 50rem /* 800/16 */;
}

#CR-popup-recruitment .heading-title {
    font-size: 2.5rem /* 40/16 */;
    line-height: normal;
    display: block;
    text-align: center;
    margin: 0;
}

#CR-popup-recruitment .heading-title,
#CR-popup-recruitment .CR-form-def label {
    color: var(--cl-white);
}

#CR-popup-recruitment .CR-cf7-box {
    margin-top: 1.25rem /* 20/16 */;
}

#CR-popup-recruitment .CR-form-def input[type="file"] {
    color: var(--cl-white);
}

#CR-popup-recruitment .CR-form-def input:not([type=submit], [type=file]),
#CR-popup-recruitment .CR-form-def textarea {
    background: var(--cl-dark-gray);
    color: var(--cl-white);
}

#CR-popup-recruitment .CR-form-def .def-form-field:nth-last-child(2) {
    width: 60%;
}

#CR-popup-recruitment .CR-form-def .def-form-field:nth-last-child(1) {
    width: max-content;
}

#CR-popup-recruitment .CR-cf7-box input[name="position-contact-recruitment"] {
    pointer-events: none;
}

#CR-popup-recruitment .CR-form-def .gr-def-form-btn {
    margin: 0;
}

/**================== RECRUITMENT DETAIL PAGE ==================**/
#CR-recruitment-detail-page .default-main--box {
    position: relative;
    z-index: 2;
}

#CR-recruitment-detail-page .default-main--box .main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}

#CR-recruitment-detail-page .top--sec {
    padding: 0;
    margin-bottom: 5rem /* 80/16 */;
}

#CR-recruitment-detail-page .top--sec .row {
    border-radius: 0.3125rem /* 5/16 */;
    overflow: hidden;
    -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.07);
    background-color: var(--cl-light-gray);
}

#CR-recruitment-detail-page .top--sec .left {
    padding: 3.125rem /* 50/16 */ 3.75rem /* 60/16 */ !important;
}

#CR-recruitment-detail-page .top--sec .right {
    background: var(--cl-main);
    padding: 3.125rem /* 50/16 */ 2.125rem /* 34/16 */ 1.875rem /* 30/16 */ !important;
}

#CR-recruitment-detail-page .top--sec .right * {
    color: var(--cl-white) !important;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
    font-weight: 400;
}

#CR-recruitment-detail-page .top--sec .left .heading-title {
    display: block;
    color: var(--cl-main);
    font-size: 3.125rem /* 50/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 3.625rem /* 58/16 */;
    margin-bottom: 1.25rem /* 20/16 */;
}

#CR-recruitment-detail-page .top--sec .sub--box {
    padding-bottom: 1.25rem /* 20/16 */;
    margin-bottom: 1.25rem /* 20/16 */;
    border-bottom: 1px solid var(--cl-main);
}

#CR-recruitment-detail-page .top--sec .list--box {
    gap: 1.875rem /* 30/16 */;
}

#CR-recruitment-detail-page .top--sec .list--box li {
    color: var(--cl-main);
    font-family: var(--font-sp);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem /* 26/16 */;
    display: flex;
    align-items: center;
    gap: 0.5rem /* 8/16 */;
}

#CR-recruitment-detail-page .top--sec .list--box li svg {
    width: auto;
    height: 1rem;
}

#CR-recruitment-detail-page .top--sec .share--box a:hover {
    color: var(--cl-hover-main);
}

#CR-recruitment-detail-page .top--sec .share--box a {
    font-size: 1.125rem /* 18/16 */;
    color: var(--cl-black);
}

#CR-recruitment-detail-page .top--sec .share--box ul {
    gap: 1.25rem /* 20/16 */;
}

#CR-recruitment-detail-page .top--sec .share--box span {
    display: none;
}

#CR-recruitment-detail-page .top--sec .sort-desc--box {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem /* 26/16 */;
}

#CR-recruitment-detail-page .top--sec .deadline--box {
    margin-top: 2.5rem /* 40/16 */;
}

#CR-recruitment-detail-page .top--sec .deadline--box p {
    color: var(--cl-main);
    font-family: var(--font-sp);
    font-size: 0.9375rem /* 15/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#CR-recruitment-detail-page .top--sec .deadline--box p b {
    font-weight: 700;
}

#CR-recruitment-detail-page .top--sec .contact--box {
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
}

#CR-recruitment-detail-page .top--sec .contact--box .heading-title {
    color: var(--cl-light-gray);
    text-align: center;
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 2.0625rem /* 33/16 */;
    margin-bottom: 0.625rem /* 10/16 */;
    display: block;
}

#CR-recruitment-detail-page .top--sec .contact--box p,
#CR-recruitment-detail-page .top--sec .contact--box a {
    color: #B5B5B5;
    font-family: var(--font-sp);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem /* 26/16 */;
    display: block;
    text-align: center;
}

#CR-recruitment-detail-page .top--sec .contact--box .icon--box {
    padding: 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;
    height: 2.5rem /* 40/16 */;
    width: 2.5rem /* 40/16 */;
    border-radius: 50%;
    margin: 1.25rem /* 20/16 */ auto 0;
    background: transparent;
    border: 1px solid var(--cl-light-gray);
    -webkit-box-shadow: -1px 4px 29px transparent;
    box-shadow: -1px 4px 29px transparent;
    position: relative;
}

#CR-recruitment-detail-page .top--sec .contact--box .icon--box svg {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-recruitment-detail-page .bottom--sec {

}

#CR-recruitment-detail-page .sidebar--box {
    position: sticky;
    top: 0;
    transition: 1s ease-in-out;
}

#CR-recruitment-detail-page .sidebar--box .row--box {
    padding: 0;
    border-radius: 0;
    background-color: var(--cl-light-gray);
}

#CR-recruitment-detail-page .sidebar--box .row--box:not(:last-child) {
    margin-bottom: 1.875rem /* 30/16 */;
}

#CR-recruitment-detail-page .sidebar--box .row--box .heading-title {
    display: block;
    position: relative;
    background: var(--cl-main);
    color: var(--cl-light-gray);
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 1.125rem /* 18/16 */ 3.125rem /* 50/16 */;
    margin: 0;
}

#CR-recruitment-detail-page .sidebar--box .row--box.contact--box a {
    font-weight: 400 !important;
}

#CR-recruitment-detail-page .sidebar--box .row--box.contact--box p,
#CR-recruitment-detail-page .sidebar--box .row--box.contact--box a {
    font-size: 0.9375rem /* 15/16 */;
    line-height: normal;
    font-weight: 700;
    color: var(--cl-black) !important;
}

#CR-recruitment-detail-page .sidebar--box .CR-empty-result {
    padding: 1.875rem /* 30/16 */ 0;
    font-size: 0.875rem /* 14/16 */;
    line-height: normal;
}

#CR-recruitment-detail-page .desc-list--box {
    width: calc(100% - 3.75rem /* 60/16 */);
}

#CR-recruitment-detail-page .desc-list--box .row--box {
    padding: 1.875rem /* 30/16 */ 0;
}

#CR-recruitment-detail-page .desc-list--box .row--box:not(:last-child) {
    border-bottom: 1px solid rgba(186, 191, 194, 0.80);
}

#CR-recruitment-detail-page .desc-list--box .row--box .heading-title {
    color: var(--cl-light-main);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: 1.625rem /* 26/16 */;
    width: 30%;
    min-width: 30%;
}

#CR-recruitment-detail-page .desc-list--box .row--box .content--box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 1.25rem /* 20/16 */;
}

#CR-recruitment-detail-page .desc-list--box .row--box .content--box ul:last-child {
    margin-bottom: 0;
}

#CR-recruitment-detail-page .desc-list--box .form--box {
    margin-top: 5rem /* 80/16 */;
    background-color: var(--cl-light-gray);
    padding: 5rem /* 80/16 */ 6.25rem /* 100/16 */ !important;
    -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.07);
}

#CR-recruitment-detail-page .desc-list--box .form--box .heading-title {
    color: var(--cl-main);
    text-align: center;
    font-size: 2.5rem /* 40/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    width: 100%;
    margin-bottom: 1.875rem /* 30/16 */;
}

#CR-recruitment-detail-page .form--box .expired {
    font-style: italic;
    font-size: 1rem;
    line-height: normal;
    font-weight: 700;
    text-align: center;
    display: block;
    color: var(--cl-main);
}

#CR-recruitment-detail-page .CR-cf7-box input[name="position-contact-recruitment"] {
    pointer-events: none;
}

#CR-recruitment-detail-page .CR-form-def input:not([type=submit], [type=file]),
#CR-recruitment-detail-page .CR-form-def textarea {
    background: var(--cl-white);
}

#CR-recruitment-detail-page .CR-form-def .def-form-field:nth-last-child(2) {
    width: 60%;
}

#CR-recruitment-detail-page .CR-form-def .def-form-field:nth-last-child(1) {
    width: max-content;
}

#CR-recruitment-detail-page .CR-form-def .gr-def-form-btn {
    margin: 0;
}

#CR-recruitment-detail-page .CR-form-def .gr-def-form-btn:after {
    -webkit-filter: opacity(0.2) drop-shadow(0 0 0 #222222) drop-shadow(0 0 0 #222222);
    filter: opacity(0.2) drop-shadow(0 0 0 #222222) drop-shadow(0 0 0 #222222);
}

#CR-recruitment-detail-page .CR-form-def .gr-def-form-btn:before {
    border-color: var(--cl-light-main);
}

.CR-item-recruitment-related {
    padding: 0 3.125rem /* 50/16 */;
    width: 100%;
}

.CR-item-recruitment-related:not(:last-child) .wrap {
    border-bottom: 1px solid var(--cl-light-main);
}

.CR-item-recruitment-related .wrap {
    position: relative;
    padding: 1.875rem /* 30/16 */ 0;
}

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

.CR-item-recruitment-related .title {
    color: var(--cl-light-main);
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 2.0625rem /* 33/16 */;
    margin: 0 0 0.9375rem /* 15/16 */;
    display: block;
}

.CR-item-recruitment-related .date {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 0.9375rem /* 15/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4375rem /* 23/16 */;
}

.CR-item-recruitment-related .date b {
    font-weight: 700;
}

/**================== NEWS PAGE ==================**/
#CR-news-page .default-main--box {
    position: relative;
    z-index: 2;
}

#CR-news-page .default-main--box .main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}

#CR-news-page .heading--box .heading-title {
    color: var(--cl-light-main);
    text-align: center;
    font-size: 3.75rem /* 60/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
}

#CR-news-page .filter--box {
    margin-top: 2.5rem /* 40/16 */;
}

#CR-news-page .filter--box ul {
    gap: 2.5rem /* 40/16 */;
}

#CR-news-page .filter--box .active a:before,
#CR-news-page .filter--box a:hover:before {
    margin-right: 1rem;
    opacity: 1;
    transform: scale(1);
}

#CR-news-page .filter--box a {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-news-page .filter--box a:before {
    content: '';
    width: 0.375rem /* 6/16 */;
    height: 0.375rem /* 6/16 */;
    background: var(--cl-hover-main);
    border-radius: 50%;
    transform: scale(0);
    transition: 0.5s ease-in-out;
}

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

#CR-news-page .main-list--box .list--box {
    margin: -0.9375rem /* -15/16 */;
}

.CR-item-news {
    width: 33.33%;
    padding: 0.9375rem /* 15/16 */;
}

.CR-item-news .wrap {
    position: relative;
    overflow: hidden;
}

.CR-item-news .wrap:after {
    content: '';
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(1 1 1 / 50%) 50%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}

.CR-item-news .view-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.CR-item-news .view-video .icon--box {
    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: 5rem /* 80/16 */;
    height: 5rem /* 80/16 */;
    background-color: rgba(255, 255, 255, 0.75);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.CR-item-news .view-video .icon--box svg {
    fill: var(--cl-black);
    width: auto;
    height: 50%;
}

.CR-item-news .thumb--box {
    position: relative;
    aspect-ratio: 1/1.1;
}

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

.CR-item-news .hover-content--box,
.CR-item-news .content--box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    -webkit-transition: 700ms ease transform, 700ms ease box-shadow;
    -moz-transition: 700ms ease transform, 700ms ease box-shadow;
    transition: 700ms ease transform, 700ms ease box-shadow;
    -webkit-box-shadow: 0 0 1.25rem /* 20/16 */ rgba(0, 0, 0, 0);
    box-shadow: 0 0 1.25rem /* 20/16 */ rgba(0, 0, 0, 0);
}

.CR-item-news .content--box {
    padding: 1.875rem /* 30/16 */ 3.125rem /* 50/16 */;
}

.CR-item-news .wrap:hover .content--box {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.CR-item-news .hover-content--box {
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
    padding: 3.75rem /* 60/16 */ 1.875rem /* 30/16 */ 1.875rem /* 30/16 */;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.CR-item-news .wrap:hover .hover-content--box {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.CR-item-news .content--box .heading-title,
.CR-item-news .hover-content--box .heading-title {
    font-weight: 400;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.CR-item-news .content--box .heading-title {
    font-size: 1.5625rem /* 25/16 */;
    line-height: 1.6875rem /* 27/16 */;
    max-height: calc(1.6875rem * 2);
    color: var(--cl-white);
}

.CR-item-news .hover-content--box .heading-title {
    font-size: 1.5625rem /* 25/16 */;
    line-height: 1.875rem /* 30/16 */;
    max-height: calc(1.875rem * 2);
    color: var(--cl-black);
}

.CR-item-news .date {
    color: var(--cl-white);
    font-family: var(--font-sp);
    font-size: 0.9375rem /* 15/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin: 0.9375rem /* 15/16 */ 0 0;
}

.CR-item-news .desc {
    font-size: 0.9375rem /* 15/16 */;
    font-weight: 400;
    line-height: 1.375rem /* 22/16 */;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: calc(1.375rem * 3);
    color: var(--cl-black);
    margin: 0.5rem 0 0;
}

/**================== NEWS DETAIL PAGE ==================**/
#CR-news-detail-page .default-main--box {
    position: relative;
    z-index: 2;
}

#CR-news-detail-page .default-main--box .main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}

#CR-news-detail-page .main--box {
    padding-right: 3.125rem /* 50/16 */;
}

#CR-news-detail-page .intro--box {
    margin-bottom: 2.5rem /* 40/16 */;
}

#CR-news-detail-page .intro--box .heading--box .heading-title {
    color: var(--cl-light-main);
    font-size: 3rem /* 48/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

#CR-news-detail-page .intro--box .bottom--box {
    padding: 1.25rem /* 20/16 */ 0;
    border-bottom: 1px solid var(--cl-light-gray);
    margin-top: 1.25rem /* 20/16 */;
}

#CR-news-detail-page .intro--box .bottom--box p {
    font-size: 1.125rem /* 18/16 */;
    line-height: normal;
    font-weight: 400;
    margin: 0;
    color: var(--cl-light-main);
    font-family: var(--font-sp);
}

#CR-news-detail-page .intro--box .bottom--box b {
    font-weight: 700;
    color: var(--cl-black);
    margin-left: 0.25rem;
}

#CR-news-detail-page .intro--box .share--box a:hover {
    color: var(--cl-hover-main);
}

#CR-news-detail-page .intro--box .share--box a {
    font-size: 1.125rem /* 18/16 */;
    color: var(--cl-black);
}

#CR-news-detail-page .intro--box .share--box ul {
    gap: 1.25rem /* 20/16 */;
}

#CR-news-detail-page .intro--box .share--box span {
    display: none;
}

#CR-news-detail-page .action--box {
    margin-top: 3.75rem /* 60/16 */;
    padding-bottom: 1.25rem /* 20/16 */;
    border-bottom: 1px solid var(--cl-light-gray);
}

#CR-news-detail-page .tags--box {
    max-width: 50%;
}

#CR-news-detail-page .next-previous--box ul {
    gap: 1rem;
}

#CR-news-detail-page .next-previous--box a:hover {
    color: var(--cl-hover-main);
}

#CR-news-detail-page .next-previous--box a {
    color: var(--cl-black);
    font-family: var(--font-sp);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
}

#CR-news-detail-page .comments--box {
    margin-top: 3.75rem /* 60/16 */;
}

#CR-news-detail-page .sidebar--box {
    position: sticky;
    top: 0;
    transition: 0.5s ease-in-out;
}

#CR-news-detail-page .sidebar--box .sidebar-title {
    padding: 1.25rem /* 20/16 */ 3.125rem /* 50/16 */;
    background: var(--cl-black);
    color: var(--cl-light-gray);
    line-height: normal;
    margin: 0;
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
}

#CR-news-detail-page .sidebar--box .list--box {
    background: var(--cl-light-gray);
    padding: 0 3.125rem /* 50/16 */;
    margin-top: 0.3125rem /* 5/16 */;
}

.CR-item-news-general {
    width: 100%;
}

.CR-item-news-general .wrap {
    position: relative;
    padding: 1.875rem /* 30/16 */ 0;
}

.CR-item-news-general:not(:last-child) .wrap {
    border-bottom: 1px solid var(--cl-light-main);
}

.CR-item-news-general .content--box .heading-title {
    color: var(--cl-light-main);
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 2.0625rem /* 33/16 */;
    max-height: calc(2.0625rem * 3);
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.CR-item-news-general .date {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 0.9375rem /* 15/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin: 0.9375rem /* 15/16 */ 0 0;
}

/**================== CONTACT PAGE ==================**/
#CR-contact-page .form--box {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 4.6875rem /* 75/16 */ 6.25rem /* 100/16 */;
    border: 1px solid var(--cl-black);
    background-color: var(--cl-main);
    background-blend-mode: overlay;
    position: relative;
}

#CR-contact-page .form--box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50.52%, #000 100%), linear-gradient(90deg, #222 0%, rgba(34, 34, 34, 0.00) 100%);
}

#CR-contact-page .form--box .intro--box {
    color: var(--cl-white);
}

#CR-contact-page .form--box .heading-title {
    font-size: 2.5rem /* 40/16 */;
    line-height: normal;
    display: block;
    margin: 0;
}

#CR-contact-page .form--box .desc {
    font-size: 1.125rem /* 18/16 */;
    line-height: normal;
    margin: 0.625rem /* 10/16 */ 0 0;
    font-family: var(--font-sp);
}

#CR-contact-page .form--box .intro--box,
#CR-contact-page .form--box .CR-cf7-box {
    position: relative;
    z-index: 2;
}

#CR-contact-page .form--box .CR-cf7-box {
    margin-top: 2.5rem /* 40/16 */;
}

#CR-contact-page .CR-form-def input:not([type=submit]),
#CR-contact-page .CR-form-def textarea {
    background: var(--cl-dark-gray);
    color: var(--cl-white);
}

#CR-contact-page .contact--box {
    padding-right: 3.75rem /* 60/16 */;
    -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;
    height: 100%;
}

#CR-contact-page .contact--box .heading-title {
    color: var(--cl-light-main);
    font-size: 3.75rem /* 60/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin: 0;
}

#CR-contact-page .contact--box .list {
    margin-top: 3.75rem /* 60/16 */;
}

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

#CR-contact-page .contact--box .list li:first-child a {
    padding-top: 0;
}

#CR-contact-page .contact--box .list li:first-child:after {
    width: 10% !important;
}

#CR-contact-page .contact--box .list li:not(:last-child):after {
    content: '';
    height: 1px;
    background: rgba(186, 191, 194, 0.80);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
}

#CR-contact-page .contact--box .list a {
    color: var(--cl-light-main);
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 2.0625rem /* 33/16 */;
    padding: 1.875rem /* 30/16 */ 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: var(--font-sp);
}

#CR-contact-page .contact--box .list a:hover {
    color: var(--cl-hover-main);
}

#CR-contact-page .contact--box .list a i {
    font-size: 1.125rem /* 18/16 */;
    min-width: 1.5rem /* 24/16 */;
    width: 1.5rem /* 24/16 */;
}

#CR-contact-page .contact--box .bottom--box {
    gap: 0.5rem;
    padding-top: 1.75rem /* 28/16 */;
    border-top: 1px solid var(--cl-black);
    margin-top: 1.25rem /* 20/16 */;
}

#CR-contact-page .contact--box .socials--box ul {
    gap: 1rem;
}

#CR-contact-page .contact--box .view-map:hover,
#CR-contact-page .contact--box .socials--box a:hover {
    color: var(--cl-hover-main) !important;
}

#CR-contact-page .contact--box .socials--box a {
    font-size: 1.5625rem /* 25/16 */;
    color: var(--cl-dark-gray) !important;
}

#CR-contact-page .contact--box .view-map {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    text-decoration: underline !important;
}

#CR-contact-page .contact--box .view-map svg {
    height: 1rem;
    width: auto;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

/**================== SERVICES PAGE ==================**/
#CR-services-page .services--sec {
    padding: 8.125rem /* 130/16 */ 0 10rem /* 160/16 */;
    position: relative;
    background-color: var(--cl-light-gray);
    overflow: hidden;
    z-index: 2;
}

#CR-services-page .services--sec .sv-bg {
    position: absolute;
    top: -3.75rem /* -60/16 */;
    right: 0;
    z-index: -1;
}

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

#CR-services-page .services--sec .CR-item-service:nth-child(even) .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

#CR-services-page .services--sec .CR-item-service:nth-child(even) .content--box {
    left: 0;
    right: unset;
}

.CR-item-service {
    width: 100%;
}

.CR-item-service:not(:last-child) {
    margin-bottom: 6.25rem /* 100/16 */;
}

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

.CR-item-service .thumb--box {
    position: relative;
    z-index: 1;
    width: calc(50% + 5rem);
    aspect-ratio: 4/3;
}

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

/*.CR-item-service .wrap:hover .content--box {*/
/*    background-color: #FFF1CC;*/
/*}*/

.CR-item-service .sub--box {
    width: 50%;
    z-index: 2;
}

.CR-item-service .content--box {
    width: calc(100% + 2.5rem);
    background-color: var(--cl-white);
    padding: 4.75rem /* 76/16 */ 5rem /* 80/16 */;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.10);
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.CR-item-service .icon--box {
    margin-bottom: 1.25rem /* 20/16 */;
}

.CR-item-service .icon--box img {
    width: auto;
    height: 4.375rem /* 70/16 */;
    object-fit: contain;
}

.CR-item-service .heading-title {
    color: var(--cl-light-main);
    font-size: 2.5rem /* 40/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.CR-item-service .desc {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem /* 26/16 */;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    max-height: calc(1.625rem * 5);
    margin: 0.625rem /* 10/16 */ 0 0;
}

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

#CR-services-page .procedure--sec .CR-heading-title--group {
    max-width: 60%;
}

#CR-services-page .procedure--sec .CR-heading-title--group * {
    text-align: left;
}

#CR-services-page .procedure--sec .main-list--box {
    margin-top: 3.75rem /* 60/16 */;
    padding-left: calc((100% - 1384px) / 2);
}

#CR-services-page .procedure--sec .list--box.deactivate-slider {
    display: flex;
}

#CR-services-page .procedure--sec .list--box.deactivate-slider .item-service-procedure {
    width: 25%;
}

#CR-services-page .procedure--sec .list--box.CR-slider-service-procedure .item-service-procedure {
    width: calc(120rem / 5);
}

#CR-services-page .procedure--sec .list--box.CR-slider-service-procedure .slick-list:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(120rem / 5);
    z-index: 1;
    background: linear-gradient(270deg, #ffffff 0%, rgba(112, 113, 116, 0.00) 100%);
    right: 0;
    pointer-events: none;
}

#CR-services-page .procedure--sec .list--box {
    margin: 0 -1.875rem /* -30/16 */;
}

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

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

#CR-services-page .procedure--sec .CR-custom-arrow .icon:hover {
    background: var(--cl-hover-main);
    opacity: 1;
    border-color: var(--cl-hover-main);
}

#CR-services-page .procedure--sec .CR-custom-arrow .icon:hover svg path {
    stroke: var(--cl-white);
}

#CR-services-page .procedure--sec .CR-custom-arrow .icon {
    opacity: 0.5;
    border: 1px solid var(--cl-light-main);
    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;
    border-radius: 50%;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-services-page .procedure--sec .CR-custom-arrow svg path {
    stroke: var(--cl-main);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.item-service-procedure {
    padding: 0 1.875rem /* 30/16 */;
}

.item-service-procedure .wrap {
    position: relative;
}

.item-service-procedure .icon--box {
    height: 4.375rem /* 70/16 */;
    margin-bottom: 2.1875rem /* 35/16 */;
}

.item-service-procedure .icon--box img {
    width: auto;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.item-service-procedure .dot--box:after {
    content: '';
    height: 1px;
    position: absolute;
    top: 50%;
    left: -1.875rem;
    right: -1.875rem;
    background: var(--cl-light-main);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.item-service-procedure.slick-current .dot--box:after,
.item-service-procedure:first-child .dot--box:after {
    left: 0;
}

.item-service-procedure:last-child .dot--box:after {
    right: -1.875rem;
    background: linear-gradient(90deg, rgba(34, 34, 34, 0.50) 34.71%, rgba(34, 34, 34, 0.37) 67.36%, rgba(34, 34, 34, 0.00) 100%);
}

.item-service-procedure .dot--box {
    margin: 1.25rem /* 20/16 */ 0;
    position: relative;
}

.item-service-procedure .dot--box span {
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--cl-black);
    background-color: var(--cl-white);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    display: block;
}

.item-service-procedure .dot--box span:before,
.item-service-procedure .dot--box span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.item-service-procedure .dot--box span:before {
    border: 1px solid var(--cl-black);
    background-color: var(--cl-white);
    z-index: -1;
    width: calc(100% + 0.75rem);
    height: calc(100% + 0.75rem);
}

.item-service-procedure .dot--box span:after {
    background-color: var(--cl-black);
    width: 100%;
    height: 100%;
}

.item-service-procedure .wrap:hover .dot--box span:before,
.item-service-procedure .wrap:hover .dot--box span:after {
    opacity: 1;
}

.item-service-procedure .content--box {
    position: relative;
}

.item-service-procedure .heading-title,
.item-service-procedure .desc {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-style: normal;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin: 0;
}

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

.item-service-procedure .heading-title {
    font-size: 1.5625rem /* 25/16 */;
    line-height: 2.0625rem /* 33/16 */;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    max-height: calc(2.0625rem * 2);
    height: calc(2.0625rem * 2);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.item-service-procedure .desc {
    font-size: 1.125rem /* 18/16 */;
    line-height: 1.625rem /* 26/16 */;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    max-height: calc(1.625rem * 3);
}

#CR-services-page .video--sec .CR-fancybox-yt {
    height: 56.25rem /* 900/16 */;
    width: 100%;
    /*aspect-ratio: 16/9;*/
    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;
}

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

#CR-services-page .video--sec .CR-fancybox-yt svg {
    width: 18.75rem /* 300/16 */;
    height: 18.75rem /* 300/16 */;
    transform: translatey(0px);
    animation: CRAniFloating 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

#CR-services-page .partner--sec {
    padding: 9.375rem /* 150/16 */ 0 6.25rem /* 100/16 */;
}

#CR-services-page .partner--sec .CR-heading-title--group * {
    text-align: left;
}

#CR-services-page .partner--sec .CR-heading-title--group .desc {
    font-size: 1.125rem /* 18/16 */;
    line-height: 1.625rem /* 26/16 */;
    margin-top: 1.25rem /* 20/16 */;
}

#CR-services-page .partner--sec .number--box .heading--box {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 95%;
}

#CR-services-page .partner--sec .number--box .heading--box:after {
    content: '+';
    position: absolute;
    top: 3rem;
    left: 100%;
    color: var(--cl-light-main);
    font-size: 9.375rem /* 150/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 0;
    letter-spacing: 0.46875rem /* 7.5/16 */;
}

#CR-services-page .partner--sec .number--box .heading-title {
    color: var(--cl-light-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18.75rem /* 300/16 */;
    font-weight: 700;
    line-height: normal;
    display: inline-block;
    margin: 0;
    position: relative;
    word-break: break-word;
}

#CR-services-page .partner--sec .number--box .desc {
    color: var(--cl-light-main);
    font-size: 2.5rem /* 40/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 1.875rem /* 30/16 */;
}

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

#CR-services-page .partner--sec .CR-item-partner img {
    filter: grayscale(1);
}

#CR-services-page .partner--sec .CR-item-partner .wrap:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.CR-slider-partner.CR-custom-dots .slick-dots {
    position: relative;
}

.partner-list--box .items--box {
    position: relative;
}

.partner-list--box .items--box .line {
    position: absolute;
    top: 0;
    left: 0;
}

.partner-list--box .items--box.active-line:after {
    content: '';
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.12) 17.19%, rgba(0, 0, 0, 0.20) 50%, rgba(0, 0, 0, 0.12) 85.42%, rgba(0, 0, 0, 0.00) 100%);
    height: 1px;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.partner-list--box .items--box .line:nth-last-child(1),
.partner-list--box .items--box .line:nth-last-child(2),
.partner-list--box .items--box .line:nth-last-child(3),
.partner-list--box .items--box .line:nth-last-child(4) {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.12) 17.19%, rgba(0, 0, 0, 0.20) 50%, rgba(0, 0, 0, 0.12) 85.42%, rgba(0, 0, 0, 0.00) 100%);
    height: 100%;
    width: 1px;
}

.partner-list--box .items--box .line:nth-last-child(1) {
    left: 20%;
}

.partner-list--box .items--box .line:nth-last-child(2) {
    left: 40%;
}

.partner-list--box .items--box .line:nth-last-child(3) {
    left: 60%;
}

.partner-list--box .items--box .line:nth-last-child(4) {
    left: 80%;
}

.CR-item-partner {
    width: 20%;
    padding: 0;
}

.CR-item-partner .wrap {
    position: relative;
    padding: 0;
    height: auto;
}

.CR-item-partner .thumb--box {
    width: 100%;
    height: 7.5rem /* 120/16 */;
}

.CR-item-partner .thumb--box a {
    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: 100%;
    height: 100%;
}

.CR-item-partner .thumb--box img {
    width: auto;
    max-width: 70%;
    height: 70%;
    -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;
}

/**================== PROJECTS PAGE ==================**/
#CR-projects-page .default-main--box {
    position: relative;
    z-index: 2;
    padding-bottom: 6.25rem /* 100/16 */;
    overflow: hidden;
}

#CR-projects-page .default-main--box .main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}

#CR-projects-page .filter--box {
    gap: 2.5rem /* 40/16 */;
    margin: 2.5rem /* 40/16 */ 0 0;
    position: relative;
    z-index: 2;
}

#CR-projects-page .filter--box .item {
    width: 20%;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-projects-page .filter--box form {
    position: relative;
    background: var(--cl-white);
    border-bottom: 1px solid rgba(186, 191, 194, 0.80) !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
    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: 0 4px 40px transparent;
    box-shadow: 0 4px 40px transparent;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-projects-page .filter--box form input::placeholder {
    font-size: 1.125rem /* 18/16 */;
    font-weight: 400;
    font-family: var(--font-sp);
    color: var(--cl-light-main);
}

#CR-projects-page .filter--box form input {
    width: 100%;
    height: 2.5rem /* 40/16 */;
    padding: 0 3.75rem /* 60/16 */ 0 0;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 1.125rem /* 18/16 */;
    font-weight: 400;
    font-family: var(--font-sp);
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
}

#CR-projects-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-projects-page .main-list--box {
    margin-top: 2.5rem /* 40/16 */;
}

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

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

.CR-item-project .wrap {
    position: relative;
    overflow: hidden;
}

.CR-item-project .thumb--box {
    position: relative;
    aspect-ratio: 4/3;
}

.CR-item-project .wrap:hover .thumb--box img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.CR-item-project .thumb--box 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;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.CR-item-project .content--box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    -webkit-transition: 700ms ease transform, 700ms ease box-shadow;
    -o-transition: 700ms ease transform, 700ms ease box-shadow;
    transition: 700ms ease transform, 700ms ease box-shadow;
    -webkit-box-shadow: 0 0 1.25rem /* 20/16 */ rgba(0, 0, 0, 0);
    box-shadow: 0 0 1.25rem /* 20/16 */ rgba(0, 0, 0, 0);
    padding: 1.875rem /* 30/16 */ 2.5rem /* 40/16 */;
    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%);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.CR-item-project .wrap:hover .content--box {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.CR-item-project .heading-title {
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--cl-white) !important;
    margin: 0;
}

.CR-item-project .terms--box * {
    color: var(--cl-white);
    font-family: var(--font-sp);
    font-size: 0.9375rem /* 15/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin: 0.3125rem /* 5/16 */ 0 0;
}

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

/**================== PROJECT DETAIL PAGE ==================**/
#CR-project-detail-page .main-content--sec {
    padding-top: 8.125rem /* 130/16 */;
}

#CR-project-detail-page .intro--box .sort-desc--box,
#CR-project-detail-page .intro--box .info-list--box {
    width: 50%;
}

#CR-project-detail-page .intro--box .sort-desc--box {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.5rem /* 24/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem /* 32/16 */;
    padding-right: 5rem /* 80/16 */;
}

#CR-project-detail-page .intro--box .info-list--box {

}

#CR-project-detail-page .intro--box .info-list--box ul {
    margin: 0 -0.625rem /* -10/16 */;
}

#CR-project-detail-page .intro--box .info-list--box li:first-child {
    width: 100%;
}

#CR-project-detail-page .intro--box .info-list--box li {
    width: 50%;
    padding: 0 0.625rem /* 10/16 */;
}

#CR-project-detail-page .intro--box .info-list--box li .wrap {
    padding: 1.25rem /* 20/16 */ 0;
    border-bottom: 1px solid rgba(186, 191, 194, 0.80);
    height: 100%;
}

#CR-project-detail-page .intro--box .info-list--box li:first-child .wrap {
    padding-top: 0;
}

#CR-project-detail-page .intro--box .info-list--box li:nth-last-child(1) .wrap,
#CR-project-detail-page .intro--box .info-list--box li:nth-last-child(2) .wrap {
    border: none;
}

#CR-project-detail-page .intro--box .info-list--box li * {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-style: normal;
    font-weight: 400;
    display: block;
}

#CR-project-detail-page .intro--box .info-list--box li b {
    font-size: 1.125rem /* 18/16 */;
    line-height: normal;
}

#CR-project-detail-page .intro--box .info-list--box li p {
    font-size: 1.5625rem /* 25/16 */;
    line-height: normal;
    margin: 0.625rem /* 10/16 */ 0 0;
}

#CR-project-detail-page .gallery--box {
    margin: 3.75rem /* 60/16 */ -0.625rem /* -10/16 */ -0.625rem /* -10/16 */;
}

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

#CR-project-detail-page .gallery--box .item {
    width: 50%;
    padding: 0.625rem /* 10/16 */;
}

#CR-project-detail-page .gallery--box .item .wrap {
    position: relative;
    aspect-ratio: 16/9;
    height: auto;
}

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

#CR-project-detail-page .content--box {
    margin-top: 3.75rem /* 60/16 */;
}

#CR-project-detail-page .content--box .heading-title {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.875rem /* 30/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0.625rem /* 10/16 */;
}

#CR-project-detail-page .action--box {
    border-top: 1px solid rgba(186, 191, 194, 0.80);
    border-bottom: 1px solid rgba(186, 191, 194, 0.80);
    margin-top: 2.5rem /* 40/16 */;
    padding: 1.625rem /* 26/16 */ 0;
}

#CR-project-detail-page .action--box .back--box a {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    gap: 0.25rem;
}

#CR-project-detail-page .action--box .back--box a:hover {
    color: var(--cl-hover-main);
}

#CR-project-detail-page .action--box .next-previous--box ul {
    gap: 0.625rem /* 10/16 */;
}

#CR-project-detail-page .action--box .next-previous--box a:hover {
    background: var(--cl-hover-main);
    color: #fff;
    border-color: var(--cl-hover-main);
}

#CR-project-detail-page .action--box .next-previous--box a {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 3.125rem /* 50/16 */;
    border: 1px solid var(--cl-light-main);
    height: 2.5rem /* 40/16 */;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    gap: 0.625rem /* 10/16 */;
    padding: 0 1.125rem /* 18/16 */;
}

#CR-project-detail-page .action--box .next-previous--box a i {
    font-size: 0.875rem /* 14/16 */;
}

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

#CR-project-detail-page .related--sec .heading--box .heading-title {
    color: var(--cl-light-main);
    text-align: center;
    font-size: 3.75rem /* 60/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 auto;
}

#CR-project-detail-page .related--sec .CR-project-list--box {
    margin-top: 2.5rem /* 40/16 */;
}

/**================== 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;
}

#CR-popup-search .box {
    padding: 0;
    border-radius: 0;
    background: transparent;
}

#CR-search-form-ajax {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    border: 1px solid #D9D9D8;
    background: var(--cl-white);
    border-radius: 0.3125rem /* 5/16 */;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

#CR-search-form-ajax input,
#CR-search-form-ajax button {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent;
}

#CR-search-form-ajax input::placeholder {
    color: var(--cl-dark-gray);
}

#CR-search-form-ajax input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 2.5rem /* 40/16 */;
    padding: 0 2.5rem /* 40/16 */;
    font-size: 1rem /* 16/16 */;
    line-height: normal;
    font-weight: 400;
}

#CR-search-form-ajax button:hover {
    color: var(--cl-hover-main);
}

#CR-search-form-ajax button {
    width: auto;
    aspect-ratio: 1/1;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 1.25rem /* 20/16 */;
    color: var(--cl-light-main);
    transition: 0.5s ease-in-out;
}

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

#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: 2.5rem /* 40/16 */;
}

#CR-search-page .filter--box a.active:before,
#CR-search-page .filter--box a:hover:before {
    margin-right: 1rem;
    opacity: 1;
    transform: scale(1);
}

#CR-search-page .filter--box a {
    color: var(--cl-light-main);
    font-family: var(--font-sp);
    font-size: 1.5625rem /* 25/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-search-page .filter--box a:before {
    content: '';
    width: 0.375rem /* 6/16 */;
    height: 0.375rem /* 6/16 */;
    background: var(--cl-hover-main);
    border-radius: 50%;
    transform: scale(0);
    transition: 0.5s ease-in-out;
}

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

.load_home_page svg {
    width: 18.75rem;
    max-width: 95%;
    height: auto;
    position: absolute;
    z-index: 99;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}
.load_home_page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    transition: 1s all;
    opacity: 1;
    background: transparent;
}
div.load_home_page .mask {
    /*background-color: #00BDFFFF;*/
    transition: 1s all ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
}

div.load_home_page.complete .mask {
    background-color: transparent;
}

div.load_home_page .mask span {
    display: block;
    width: 100%;
    height: 20%;
    position: absolute;
    left: 0;
    transition: 1s all ease-in-out;
    background-color: #FFF;
    /*backdrop-filter: blur(40px);*/
}

div.load_home_page .mask span:nth-child(even) {
    left: unset;
    right: 0;
}

div.load_home_page .mask span:nth-child(1) {
    top: 0;
}

div.load_home_page .mask span:nth-child(2) {
    top: 20%;
}

div.load_home_page .mask span:nth-child(3) {
    top: 40%;
}

div.load_home_page .mask span:nth-child(4) {
    top: 60%;
}

div.load_home_page .mask span:nth-child(5) {
    top: 80%;
}

.load_home_page.complete {
    visibility: hidden;
}

div.load_home_page.complete .mask span {
    width: 0;
    opacity: 0;
    transition-delay: .8s;
}

@media only screen and (max-width: 991px) {
    .load_home_page svg {
        width: 20rem;
    }
}

@media only screen and (max-width: 767px) {
    .load_home_page svg {
        width: 15rem;
    }
}

.load_home_page.complete svg{
    transition-delay: 0.8s;
    opacity: 0;
}
.load_home_page rect,
.load_home_page path{
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.path-1 {
    animation-name: Signature2;
    animation-duration: 10s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(2, .25, .43, .96);
    stroke: #A15B4C;
    stroke-width: 0.8px;
    stroke-dasharray: 2108;
    stroke-dashoffset: 2108;
    fill: transparent;
}

.path-2{
    animation-name: Signature1;
    animation-duration: 8s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(2,.25,.43,.96);
    stroke: #616264;
    stroke-width: 0.8px;
    stroke-dasharray: 2108;
    stroke-dashoffset: 2108;
    fill: transparent;
}
.load_home_page.complete .path-2{
    fill: #616264;
}
.load_home_page.complete .path-1{
    fill: #A15B4C
}
@keyframes Signature1 {
    to {
        stroke: #616264;
        stroke-dashoffset: 0;
    }
}
@keyframes Signature2 {
    to {
        stroke: #A15B4C;
        stroke-dashoffset: 0;
    }
}

/*HOME DEV*/
@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/home/BeautiqueDisplay-Italic.eot');
    src: url('../fonts/home/BeautiqueDisplay-Italic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/home/BeautiqueDisplay-Italic.woff2') format('woff2'),
    url('../fonts/home/BeautiqueDisplay-Italic.woff') format('woff'),
    url('../fonts/home/BeautiqueDisplay-Italic.ttf') format('truetype'),
    url('../fonts/home/BeautiqueDisplay-Italic.svg#BeautiqueDisplay-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/home/BeautiqueDisplay-BoldItalic.eot');
    src: url('../fonts/home/BeautiqueDisplay-BoldItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/home/BeautiqueDisplay-BoldItalic.woff2') format('woff2'),
    url('../fonts/home/BeautiqueDisplay-BoldItalic.woff') format('woff'),
    url('../fonts/home/BeautiqueDisplay-BoldItalic.ttf') format('truetype'),
    url('../fonts/home/BeautiqueDisplay-BoldItalic.svg#BeautiqueDisplay-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/home/BeautiqueDisplay-Bold.eot');
    src: url('../fonts/home/BeautiqueDisplay-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/home/BeautiqueDisplay-Bold.woff2') format('woff2'),
    url('../fonts/home/BeautiqueDisplay-Bold.woff') format('woff'),
    url('../fonts/home/BeautiqueDisplay-Bold.ttf') format('truetype'),
    url('../fonts/home/BeautiqueDisplay-Bold.svg#BeautiqueDisplay-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/home/BeautiqueDisplay-Black.eot');
    src: url('../fonts/home/BeautiqueDisplay-Black.eot?#iefix') format('embedded-opentype'),
    url('../fonts/home/BeautiqueDisplay-Black.woff2') format('woff2'),
    url('../fonts/home/BeautiqueDisplay-Black.woff') format('woff'),
    url('../fonts/home/BeautiqueDisplay-Black.ttf') format('truetype'),
    url('../fonts/home/BeautiqueDisplay-Black.svg#BeautiqueDisplay-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/home/BeautiqueDisplay-BlackItalic.eot');
    src: url('../fonts/home/BeautiqueDisplay-BlackItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/home/BeautiqueDisplay-BlackItalic.woff2') format('woff2'),
    url('../fonts/home/BeautiqueDisplay-BlackItalic.woff') format('woff'),
    url('../fonts/home/BeautiqueDisplay-BlackItalic.ttf') format('truetype'),
    url('../fonts/home/BeautiqueDisplay-BlackItalic.svg#BeautiqueDisplay-BlackItalic') format('svg');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/home/BeautiqueDisplay-LightItalic.eot');
    src: url('../fonts/home/BeautiqueDisplay-LightItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/home/BeautiqueDisplay-LightItalic.woff2') format('woff2'),
    url('../fonts/home/BeautiqueDisplay-LightItalic.woff') format('woff'),
    url('../fonts/home/BeautiqueDisplay-LightItalic.ttf') format('truetype'),
    url('../fonts/home/BeautiqueDisplay-LightItalic.svg#BeautiqueDisplay-LightItalic') format('svg');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/home/BeautiqueDisplay-Light.eot');
    src: url('../fonts/home/BeautiqueDisplay-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/home/BeautiqueDisplay-Light.woff2') format('woff2'),
    url('../fonts/home/BeautiqueDisplay-Light.woff') format('woff'),
    url('../fonts/home/BeautiqueDisplay-Light.ttf') format('truetype'),
    url('../fonts/home/BeautiqueDisplay-Light.svg#BeautiqueDisplay-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/home/BeautiqueDisplay-MediumItalic.eot');
    src: url('../fonts/home/BeautiqueDisplay-MediumItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/home/BeautiqueDisplay-MediumItalic.woff2') format('woff2'),
    url('../fonts/home/BeautiqueDisplay-MediumItalic.woff') format('woff'),
    url('../fonts/home/BeautiqueDisplay-MediumItalic.ttf') format('truetype'),
    url('../fonts/home/BeautiqueDisplay-MediumItalic.svg#BeautiqueDisplay-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/home/BeautiqueDisplay-Regular.eot');
    src: url('../fonts/home/BeautiqueDisplay-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/home/BeautiqueDisplay-Regular.woff2') format('woff2'),
    url('../fonts/home/BeautiqueDisplay-Regular.woff') format('woff'),
    url('../fonts/home/BeautiqueDisplay-Regular.ttf') format('truetype'),
    url('../fonts/home/BeautiqueDisplay-Regular.svg#BeautiqueDisplay-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/home/BeautiqueDisplay-Medium.eot');
    src: url('../fonts/home/BeautiqueDisplay-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/home/BeautiqueDisplay-Medium.woff2') format('woff2'),
    url('../fonts/home/BeautiqueDisplay-Medium.woff') format('woff'),
    url('../fonts/home/BeautiqueDisplay-Medium.ttf') format('truetype'),
    url('../fonts/home/BeautiqueDisplay-Medium.svg#BeautiqueDisplay-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
:root {
    --subtitle-cl: #A15B4C;
    --body-cl: #616264;
}
.relative {
    position: relative !important;
}
/*box img*/
.box_img {
    overflow: hidden;
    position: relative;
}
.box_img img {
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*transition elements*/
circle,svg,rect,path,img,a,input{
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
/*clear fix*/
.row.clearfix:after {
    content: unset;
}
/*effect img*/
.item_hover:hover .hover_zoom. img {
    transform: scale(1);
}
.item_hover:hover .hover_zoom img {
    transform: scale(1.1);
}
/*link item hover*/
.wrap-link {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    z-index: 20;
    opacity: 0 !important;
}
/*line-camp*/
.limit-line{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.limit-line.limit-1{
    -webkit-line-clamp: 1;
}
.limit-line.limit-2{
    -webkit-line-clamp: 2;
}
.limit-line.limit-3{
    -webkit-line-clamp: 3;
}
.limit-line.limit-4{
    -webkit-line-clamp: 4;
}
.limit-line.limit-5{
    -webkit-line-clamp: 5;
}
/*background image*/
.bg_image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
/*grid_box*/
.grid_box{
    display: grid;
}
.grid_2{
    grid-template-columns: repeat(2, 1fr);
}
.grid_3{
    grid-template-columns: repeat(3, 1fr);
}
.grid_4{
    grid-template-columns: repeat(4, 1fr);
}

.page-template-home .CR-main-wrap {
    background: #EFEFF0;
}
.btn_custom {
    gap: 0.78125rem  /* 15/19.2 */;
    padding-top: 1.5625rem  /* 30/19.2 */;
}
.btn_custom span.text {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 0.9375rem  /* 18/19.2 */;
    line-height: normal;
    color: var(--subtitle-cl);
    text-decoration-line: underline;
    text-decoration-color: transparent;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: .4s all;
}
.btn_custom:hover span.text {
    text-decoration-color: currentColor;
}
.btn_custom:hover span.icon path {
    transform: translateX(1.2rem);
}
.btn_custom.text-white span.text {
    color: #fff;
}
.btn_custom.text-white span.icon circle,
.btn_custom.text-white span.icon path,
.btn_custom.text-white span.icon rect {
    stroke: #fff;
}
.heading_0 {
    font-family: Beautique Display;
    font-weight: 500;
    font-size: 3.646rem  /* 70/19.2 */;
    line-height: 1.4;
    padding-top: 0.729rem  /* 14/19.2 */;
}
.item_hero .box_img {
    height: 100vh;
}
.item_hero:after,
.item_hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    pointer-events: none;
    z-index: 1;
}
.item_hero:after {
    left: unset;
    right: 0;
    background: linear-gradient(-270deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.banner_home .box_content {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 2;
}
.banner_home .group_content {
    padding-top: 6.25rem  /* 120/19.2 */;
}
.arrow_down_wrapper {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
}
.arrow_down {
    position: relative;
    background: transparent;
    width: 4rem;
    height: 4rem;
    border-radius: 100px;
    border: 1px solid #FFFFFF4D;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s all;
}
.arrow_down svg{
    transform: translateY(0%);
    animation: animate-pulse 1.7s linear infinite;
}
@keyframes animate-pulse {
    0% {
        transform: translateY(-30%);
    }
    25% {
        transform: translateY(-25%);
    }
    50% {
        transform: translateY(0%);
    }
    75% {
        transform: translateY(-25%);
    }
    100% {
        transform: translateY(-30%);
    }
}

.tax-services-category #CR-header .logo--box img,
.tax-services-category #CR-header .logo--box svg,

.single-project #CR-header .logo--box img,
.single-project #CR-header .logo--box svg,

.page-template-services #CR-header .logo--box img,
.page-template-services #CR-header .logo--box svg,
.page-template-about #CR-header .logo--box img,
.page-template-about #CR-header .logo--box svg,
.page-template-home #CR-header .logo--box img,
.page-template-home #CR-header .logo--box svg {
    filter: brightness(0) invert(1) grayscale(0);
}
#CR-header.change-header .logo--box img,
#CR-header.change-header .logo--box svg,
#CR-header.CR-fixed .logo--box img,
#CR-header.CR-fixed .logo--box svg {
    filter: brightness(1) invert(0) grayscale(0);
}
#CR-header.change-header .main--box {
    border-bottom: 1px solid #0000001A;
}

.home_1 {
    padding-top: 5.99rem  /* 115/19.2 */;
}
.subtitle.sec.text-white:before,
.subtitle.sec:before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 2.083rem  /* 40/19.2 */;
    height: 1px;
    background: var(--subtitle-cl);
    margin-right: 8px;
}
.subtitle.sec.text-white:before {
    background: #fff;
}
.subtitle.sec.text-white span {
    color: #fff;
}
.subtitle.sec span {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 0.833rem  /* 16/19.2 */;
    line-height: 1.4;
    color: var(--subtitle-cl);
    padding-left: 2.604rem  /* 50/19.2 */;
}
.content_sec {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 0.833rem  /* 16/19.2 */;
    line-height: 1.5;
    color: var(--body-cl);
}
.box_criteria_wrap .item {
    gap: 1.354rem  /* 26/19.2 */;
}
.box_criteria_wrap .item:not(:last-child) {
    margin-bottom: 1.25rem  /* 24/19.2 */;
}
.box_criteria_wrap .icon {
    width: 3.333rem;
    height: 3.333rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E2E2E2;
    border-radius: 5.208rem;
    flex: 0 0 auto;
}
.box_criteria_wrap .icon:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 5rem;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(-180deg, #616264 0%, rgba(97, 98, 100, 0) 100%);
    z-index: -1;
    pointer-events: none;
}
.box_criteria_wrap .icon>.box_img {
    width: auto;
    height: 1.979rem;
}
.box_criteria_wrap .title {
    font-family: Beautique Display;
    font-weight: 500;
    font-size: 1.458rem  /* 28/19.2 */;
    line-height: 1.4;
    padding-top: 0.9375rem  /* 18/19.2 */;
    margin-bottom: 0.3rem;
}
.box_criteria_wrap .content {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 0.833rem  /* 16/19.2 */;
    line-height: 1.4;
    color: var(--body-cl);
}
.home_img_1 {
    margin-right: calc((1400px - 100vw) / 2);
}
.group_heading.padding_top .content_sec {
    padding-top: 2.917rem  /* 56/19.2 */;
}
.home_1 .row {
    padding-bottom: 2.292rem  /* 44/19.2 */;
}
.home_2 {
    padding-top: 4.271rem  /* 82/19.2 */;
}
.box_solutions_wrap {
    padding-top: 1.979rem  /* 38/19.2 */;
    margin: 0 -15px;
}
.box_solutions_wrap .slick-dots {
    text-align: center;
}
.item_solution_home {
    padding-left: 0.78125rem  /* 15/19.2 */;
    padding-right: 0.78125rem  /* 15/19.2 */;
}
.item_solution_home>.box_img {
    aspect-ratio: 62/65;
}
.item_solution_home>.box_img:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}
.item_solution_home .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 2.292rem  /* 44/19.2 */;
    left: 2.604rem  /* 50/19.2 */;
    width: 5.208rem  /* 100/19.2 */;
    height: 5.208rem  /* 100/19.2 */;
    border-radius: 5.208rem  /* 100/19.2 */;
    background: #0000004D;
    backdrop-filter: blur(8px);
}
.item_solution_home .icon>.box_img {
    padding: 1rem;
}
.item_solution_home .box_content {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 2.604rem 3.229rem;
    z-index: 3;
}
.item_solution_home h3 {
    width: 70%;
    flex: 0 0 auto;
    font-family: Beautique Display;
    font-weight: 500;
    font-size: 1.667rem  /* 32/19.2 */;
    line-height: 1.4;
    margin-bottom: 0;
}
.item_solution_home .box_content svg {
    opacity: 0;
    transition: .4s all;
}
.item_solution_home:hover .box_content svg {
    opacity: 1;
}
.home_3 {
    padding-top: 5.833rem  /* 112/19.2 */;
}
.home_3.bg_image {
    background-size: contain;
    background-position: bottom center;
}
.box_counter_home {
    padding: 2rem 0 21rem;
}
.item_counter_home .item_counter .number {
    font-family: Beautique Display;
    font-weight: 700;
    font-size: 4.948rem  /* 95/19.2 */;
    line-height: 1.4;
    text-align: center;
}
.item_counter_home .item_counter sup {
    position: unset;
}
.item_counter_home {
    width: 15.208rem  /* 292/19.2 */;
    height: 15.208rem  /* 292/19.2 */;
    border-radius: 100%;
    background: #616264;
    animation: bubble 2s infinite;
}
@keyframes bubble {
    50%{
        transform: translateY(1.042rem);
    }
}
.item_counter_home:nth-child(2) {
    width: 11.5625rem  /* 222/19.2 */;
    height: 11.5625rem  /* 222/19.2 */;
    background: var(--subtitle-cl);
    animation-delay: 0.2s;
}
.item_counter_home:nth-child(2) .number,
.item_counter_home:nth-child(3) .number {
    font-size: 3.229rem  /* 62/19.2 */;
}
.item_counter_home:nth-child(3) {
    width: 12.552rem  /* 241/19.2 */;
    height: 12.552rem  /* 241/19.2 */;
    background: var(--subtitle-cl);
    animation-delay: 0.3s;
}
.item_counter_home:nth-child(4) {
    width: 13.229rem  /* 254/19.2 */;
    height: 13.229rem  /* 254/19.2 */;
    animation-delay: 0.15s;
}
.item_counter_home:nth-child(4) .number {
    font-size: 3.646rem  /* 70/19.2 */;
}
.item_counter_home h3 {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 0.833rem  /* 16/19.2 */;
    line-height: 1.4;
}
.item_counter_home:nth-child(2) {
    margin-top: 8.75rem  /* 168/19.2 */;
}
.item_counter_home:nth-child(4) {
    margin-top: 6rem;
}
.home_4 {
    padding-top: 3.75rem  /* 72/19.2 */;
}
.tab_project.project_home {
    padding: 2.8125rem  /* 54/19.2 */ 0;
}
.tab_project.project_home li {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 1.042rem  /* 20/19.2 */;
    line-height: 1.4;
    text-transform: uppercase;
    color: rgba(51, 51, 51, 0.5);
    text-decoration-line: underline;
    text-decoration-color: transparent;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
    cursor: pointer;
    transition: .4s all;
}
.tab_project.project_home li:hover,
.tab_project.project_home li.active {
    color: #333;
    text-decoration-color: currentColor;
}
.tab_project.project_home .btn_custom {
    padding-top: 0 !important;
}
.home_4 .content_sec {
    font-size: 1.042rem  /* 20/19.2 */;
}
.home_project_wrap.bg_image {
    background-position: center center;
    /*background-size: contain;*/
}
.home_project_wrap.bg_image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000066;
    pointer-events: none;
}
.item_project_home.bg_image {
    background-image: unset !important;
}
.item_project_home {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24.375rem  /* 468/19.2 */;
    padding: 2.1875rem 2.448rem;
}
.item_project_home:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000066;
    opacity: 0;
    pointer-events: none;
    transition: .4s all;
}
.item_project_home.active:after,
.item_project_home:hover:after {
    opacity: 1;
}
.item_project_home .icon {
    position: relative;
    margin-left: auto;
    opacity: 0;
    z-index: 1;
    transition: .4s all;
}
.item_project_home:hover .icon,
.item_project_home.active .icon {
    opacity: 1;
}

.item_project_home .icon>svg {
    width: auto;
    height: 2.604rem  /* 50/19.2 */;
}
.item_project_home .box_content {
    position: relative;
    z-index: 1;
    opacity: .5;
    transition: .4s all;
}
.item_project_home.active .box_content {
    opacity: 1;
}
.item_project_home .info {
    gap: 0.78125rem  /* 15/19.2 */;
}
.item_project_home .info span.dot {
    width: 4px;
    height: 4px;
    border-radius: 5rem;
    background: #FFFFFF80;
}
.item_project_home .info li {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 0.833rem  /* 16/19.2 */;
    line-height: 1.4;
    color: #FFFFFF90;
}
.item_project_home .title {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 1.25rem  /* 24/19.2 */;
    line-height: 1.4;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;

}
.home_5.bg_image {
    padding-top: 6.51rem  /* 125/19.2 */;
    background-size: contain;
    background-position: left;
}
.box_partner_home {
    padding-top: 2.708rem  /* 52/19.2 */;
}
.partners_home_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    column-gap: 3.646rem  /* 70/19.2 */;
    row-gap: 1.042rem  /* 20/19.2 */;
}
.item_partner_home {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.521rem  /* 10/19.2 */;
}
.item_partner_home img {
    max-width: 100%;
    max-height: 3.125rem  /* 60/19.2 */;
    object-fit: contain;
    filter: brightness(0);
    opacity: 0.5;
}
.item_partner_home:hover img {
    filter: brightness(1);
    opacity: 1;
}
.slick-dots {
    position: unset;
    margin-top: 1.25rem  /* 24/19.2 */;
    text-align: left;
}
.slick-dots li {
    width: fit-content;
    margin: 0;
}
.slick-dots li:not(:last-child) {
    margin-right: 3px;
}
.slick-dots li button:before {
    color: #A15B4C;
    font-size: 0.833rem  /* 16/19.2 */;
}
.slick-dots li.slick-active button:before {
    color: var(--subtitle-cl);
}


.home_6 {
    padding-top: 6.51rem  /* 125/19.2 */;
}
.form_home_wrap {
    background: #6F7072;
}
.form_home_wrap .box_img {
    height: 50rem;
}
.box_form_home {
    padding: 0 5.104rem  /* 98/19.2 */ 3.229rem  /* 62/19.2 */;
}
.box_form_home .wpcf7-form-control-wrap textarea,
.box_form_home .wpcf7-form-control-wrap input {
    box-shadow: none !important;
    background: none !important;
    border: none !important;
    border-bottom: 1px solid #ffffff50 !important;
    color: #fff !important;
}
.box_form_home .wpcf7-form-control-wrap textarea:hover,
.box_form_home .wpcf7-form-control-wrap input:hover,
.box_form_home .wpcf7-form-control-wrap textarea:focus,
.box_form_home .wpcf7-form-control-wrap input:focus {
    border-color: #ffffff !important;
}
.box_form_home input::placeholder {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 0.833rem  /* 16/19.2 */;
    line-height: 1.4;
}
.box_form_home .group_heading {
    position: absolute;
    top: 4rem;
    right: 6.5rem;
    text-align: right;
}
.box_form_home .heading_0 {
    font-weight: 500;
    font-size: 4.5rem;
    line-height: 1.5;
    margin-bottom: 1.042rem  /* 20/19.2 */;
}
.box_form_home .desc {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 1.042rem  /* 20/19.2 */;
    line-height: 1.4;
}
.home_7 {
    padding-top: 6.51rem  /* 125/19.2 */;
}

/* Container chính */
.marquee-container {
    /*width: 100%;*/
    white-space: nowrap;
    overflow-x: hidden;
}
/* Wrapper cho animation */
.marquee-content {
    display: inline-block;
    animation: scroll-left 250s linear infinite;
}
/* Từng text item */
.marquee-item {
    display: inline-block;
    font-family: Beautique Display;
    font-weight: 800;
    font-size: 5.208rem;
    line-height: 1.4;
    color: rgba(97, 98, 100, 0.15);
    transition: .4s all;
}
.marquee-item:not(:last-child) {
    padding-right: 3rem;
}
    /* Hover effect */
.marquee-item:hover {
    color: var(--subtitle-cl);
}
/* Animation scroll từ phải sang trái */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* Pause animation khi hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.page-template-default #CR-default-page{
    padding-top: 10rem;
}
.CR-default-page-content {
    padding-top: 2rem;
}

/*FOOTER DEV*/
#footer a:hover  {
    color: var(--subtitle-cl) !important;
}
#footer {
    padding: 3.49rem  /* 67/19.2 */ 0 3.073rem  /* 59/19.2 */;
    background: #E2E2E2;
}
#footer .footer_top .container {
    border-bottom: 1px solid #0000001A;
    margin-bottom: 4.271rem  /* 82/19.2 */;
    padding-bottom: 3.125rem  /* 60/19.2 */;
}
#footer .info_wrap span.title {
    display: block;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #616264;
    margin-bottom: 8px;
}
.menu_wrap ul,
#footer .info_wrap {
    column-gap: 1rem;
    row-gap: 1.4rem;
}
#footer .info_wrap a,
#footer .info_wrap .desc {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 0.9375rem  /* 18/19.2 */;
    line-height: 1.4;
    color: #333;
}
#footer .footer_middle .container {
    border-bottom: 1px solid #0000001A;
    padding-bottom: 4.375rem  /* 84/19.2 */;
    margin-bottom: 1.042rem  /* 20/19.2 */;
}
.menu_wrap ul li {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    text-decoration-color: transparent;
    transition: .4s all;
}
.menu_wrap ul li:hover {
    text-decoration-color: #333;
}
.menu_wrap ul li>a {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #616264 !important;
}
.menu_wrap ul li>a:hover {
    color: #616264 !important;
    text-decoration-color: #333 !important;
}
#footer .socials_wrap {
    padding-top: 4.271rem  /* 82/19.2 */;
}
#footer .socials_wrap ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 1rem;
    row-gap: 1.4rem;
}
#footer .socials_wrap ul li:nth-child(1) {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 0.885rem  /* 17/19.2 */;
    line-height: 1.4;
    margin-right: 6rem;
    margin-left: 0 !important;
    color: rgba(97, 98, 100, 0.6);
}
#footer .socials_wrap ul li:not(:nth-child(2)) {
    margin-left: 5.208rem  /* 100/19.2 */;
}
#footer .socials_wrap ul li:nth-child(n+2) a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
}
#footer .footer_bottom a,
#footer .copyright {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    color: #616264;
}
#footer .footer_bottom a:hover {
    color: var(--subtitle-cl);
}

#load_project_home.loading{
    min-height: 18.75rem;
    position: relative;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#load_project_home.loading:before{
    height: 4.4rem;
    width: 4.4rem;
    left: calc(50% - 2.2rem);
    top: 10rem;
    aspect-ratio: 1;
    position: absolute;
    content: '';
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 50;
    border: 4px solid #a3a3a3;
    border-bottom-color: #A15B4C;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 0.6s linear infinite;
}
#CR-header .CR-main-nav-mb{
    padding: 7.5rem 0 5rem;
}
#CR-header .CR-main-nav-mb .mobile--box .nav-image{
    display: flex;
    align-items: flex-end;
    width: 65%;
}
#CR-header .CR-main-nav-mb .mobile--box .nav-image img{
    width: 100%;
    height: auto;
}
#CR-header .CR-main-nav-mb .mobile--box .nav-mb--content{
    padding-top: 5.25rem;
    display: flex;
    flex-direction: column;
    gap: 2rem
}
#CR-header .CR-main-nav-mb .mobile--box .nav-mb--content .nav-socials{
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
#CR-header .CR-main-nav-mb .mobile--box .nav-mb--content .nav-socials > span{
    font-family: 'Montserrat', 'sans-serif';
    font-weight: 400;
    font-size: 1rem;
}
#CR-header .CR-main-nav-mb .mobile--box .nav-mb--content .nav-socials > a{
    transition: all 0.4s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
#CR-header .CR-main-nav-mb .mobile--box .nav-mb--content .nav-socials > a:hover{
    box-shadow: 0 0 10px 0 #acacac;
}
#CR-header .CR-main-nav-mb .mobile--box{
    gap: 2rem;
    justify-content: flex-start;
}
.home-banner-controls{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 9;
    bottom: 3.75rem;
    left: calc(calc(100vw - 87.5rem) / 2);
    gap: 0.9375rem;
}
.home-banner-controls > .arrow{
    width: 1.875rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.home-banner-controls > .fractions{
    display: flex;
    align-items: center;
    color: #FFF;
    font-family: "Montserrat", "sans-serif";
    font-weight: 400;
    font-size: 1.5rem;
}
.home-banner-controls > .fractions .current{
    transform: translateY(-10%);
    min-width: 18px;
    padding-right: 2px;
    text-align: right;
}
.home-banner-controls > .fractions .total{
    transform: translateY(30%);
    opacity: 0.5;
}
#CR-header .main-merged-menu > ul > li {
    flex-wrap: wrap;
}

.item-with-arrow-box {
    display: flex;
    align-items: center;
}

.item-with-arrow-box .arrow {
    margin-left: 4rem;
    cursor: pointer;
}

ul.sub-menu.CR-sub-menu a {
    font-size: 1.4rem !important;
}

.sub-menu-wrapper {
    width: 100%;
    display: none;
    margin-top: 1rem;
}

#CR-header .main-merged-menu .CR-sub-menu > li {
    padding: .7rem 0 !important;
}
/**================== RESPONSIVE ==================**/
@media (min-width: 1025px) {
    html {
        font-size: 0.75rem;
    }
}

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

@media (min-width: 1440px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1400px !important;
    }

    html {
        font-size: 1rem;
    }
}

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

    .home_5.bg_image {
        background-size: contain !important;
    }
}

@media (min-width: 1921px) {
    .CR-item-project {
        width: 25%;
    }
}

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

    .home_5.bg_image {
        background-size: 29rem !important;
    }
}

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

    #CR-services-page .procedure--sec .main-list--box {
        padding-left: calc((100% - 1124px) / 2);
    }

    #CR-home-page .intro--sec .list--box {
        width: 55rem;
    }
}

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

}

@media only screen and (max-width: 1199px) {
    #CR-services-page .procedure--sec .main-list--box {
        padding-left: calc((100% - 944px) / 2);
    }

    #CR-header .main--box {
        padding: 1.25rem /* 20/16 */ 1rem !important;
    }

    #CR-header .logo--box img, #CR-header .logo--box svg {
        height: 3.1875rem /* 35/16 */;
    }

    #CR-header .CR-main-nav-mb {
        padding: 0 1rem !important;
    }

    #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 .main-merged-menu > ul > li:after {
        display: none;
    }

    #CR-popup-search .box {
        max-width: 80vw;
    }

    #CR-home-page .banner--sec .item {
        align-items: center !important;
    }

    #CR-home-page .banner--sec .item .heading-title {
        margin: 0 auto !important;
        text-align: center;
        font-size: 2.5rem /* 40/16 */;
    }

/*HOME DEV VL*/
    .heading_0 {
        font-size: 2.4rem;
    }
    /*.item_hero .box_img {*/
    /*    height: 47rem;*/
    /*}*/
    .banner_home .group_content {
        padding-top: 1rem;
    }
    .home_img_1 {
        margin-right: calc((960px - 100vw) / 2);
    }
    .box_criteria_wrap .title {
        padding-top: 0;
        font-size: 1.1rem;
    }
    .box_counter_home {
        padding-bottom: 4rem;
    }
    .item_project_home {
        padding: 1rem;
        height: 18rem;
    }
    .item_project_home .info {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .partners_home_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .box_form_home .heading_0 {
        font-size: 3rem;
    }
    .form_home_wrap .box_img {
        height: 44rem;
    }
    .box_form_home {
        padding: 0 1.104rem 2rem;
    }
    .home_7 {
        padding-top: 3.5rem;
    }
    .home_5.bg_image {
        background-size: 20rem !important;
    }

    #CR-header .CR-main-nav-mb .mobile--box .nav-image{
        display: none !important;
    }
    #CR-header .CR-main-nav-mb .mobile--box .nav-mb--content .nav-socials{
        justify-content: center;
    }
    #CR-header .main-merged-menu > ul > li:before{
        display: none;
    }
    #CR-header .CR-main-nav-mb{
        padding: 8rem 0 3rem !important;
    }
    #CR-header .CR-main-nav-mb .mobile--box .nav-mb--content{
        padding-top: 0;
    }
    #CR-header .main--box .right--box,
    #CR-header .main--box .left--box{
        width: 20%;
    }
    .home-banner-controls{
        left: 2rem;
        bottom: 2rem;
    }
    .arrow_down_wrapper{
        transform: unset;
        left: 50%;
        right: 2rem;
    }
    .arrow_down{
        width: 3rem;
        height: 3rem;
        border-color: #FFF;
    }
}

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

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

    #CR-contact-page .contact--box .list a {
        font-size: 0.875rem /* 14/16 */;
    }

    #CR-about-page .team--sec .item .heading-title,
    #CR-project-detail-page .related--sec .heading--box .heading-title,
    #CR-news-detail-page .intro--box .heading--box .heading-title,
    #CR-news-page .heading--box .heading-title,
    #CR-recruitment-detail-page .desc-list--box .form--box .heading-title,
    #CR-recruitment-detail-page .top--sec .left .heading-title,
    #CR-popup-recruitment .heading-title,
    .CR-banner--group .heading-title,
    #CR-contact-page .contact--box .heading-title,
    #CR-contact-page .form--box .heading-title,
    .CR-form-footer--sec .heading-title,
    .CR-heading-title--group .heading-title {
        font-size: 2.1875rem /* 35/16 */ !important;
        line-height: normal;
    }

    #CR-about-page .team--sec .item .desc,
    #CR-project-detail-page .intro--box .sort-desc--box,
    .CR-item-service .desc,
    #CR-contact-page .form--box .desc,
    .CR-form-footer--sec .desc,
    .CR-heading-title--group .desc {
        font-size: 1.125rem /* 18/16 */ !important;
        line-height: 1.625rem /* 26/16 */ !important;
    }
}

@media only screen and (max-width: 992px) {
    #CR-header .lang--box a {
        font-size: 0.875rem  /* 14/16 */;
    }

    #CR-footer .CR-main-footer > .container > .row > div {
        flex: 0 0 auto;
        width: 100%;
    }

    #CR-services-page .procedure--sec .main-list--box {
        padding-left: calc((100% - 704px) / 2);
    }

    .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-footer .CR-main-footer {
        padding: 1.875rem /* 30/16 */ 0;
    }

    #CR-footer .logo--box {
        margin-bottom: 2rem;
    }

    #CR-footer .CR-bottom-footer {
        padding: 1rem 0;
    }

    #CR-footer .CR-bottom-footer .content--box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0.75rem;
    }

    #CR-footer .CR-main-footer .menu-item-box {
        border-top: 1px solid var(--cl-light-gray);
        padding-bottom: 0;
        margin: 0 !important;
    }

    #CR-footer .CR-main-footer .menu-item-box .heading-title {
        position: relative;
        text-align: left;
        letter-spacing: normal;
        font-size: 1rem /* 16/16 */;
        padding: 0.9375rem /* 15/16 */ 0 1.125rem /* 18/16 */;
        margin: 0 !important;
        font-weight: 700;
    }

    #CR-footer a, #CR-footer span, #CR-footer span b, #CR-footer p {
        font-size: 0.875rem /* 14/16 */;
    }

    #CR-footer .CR-main-footer .menu-item-box .toggle-menu-item-cont--mb {
        width: 100%;
        height: 100%;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 2;
        margin: 0 !important;
    }

    #CR-footer .CR-main-footer .menu-item-box.active .menu-item-cont--mb {
        visibility: visible;
        opacity: 1;
        transition: opacity 1s cubic-bezier(.25, .46, .45, .94), height .35s cubic-bezier(.25, .46, .45, .94);
    }

    #CR-footer .CR-main-footer .menu-item-box .menu-item-cont--mb {
        visibility: hidden;
        overflow: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        opacity: 0;
        height: 0;
        transition: opacity .3s cubic-bezier(.25, .46, .45, .94), height .3s cubic-bezier(.25, .46, .45, .94);
    }

    #CR-footer .CR-main-footer .menu-item-box.active .menu-item-cont--mb .inner--box {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        transition: transform .5s cubic-bezier(.25, .46, .45, .94);
    }

    #CR-footer .CR-main-footer .menu-item-box .menu-item-cont--mb .inner--box {
        -webkit-transform: translateY(40px);
        -ms-transform: translateY(40px);
        transform: translateY(40px);
        transition: transform .5s cubic-bezier(.25, .46, .45, .94);
        padding: 0 0 0.9375rem /* 15/16 */;
    }

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

    #CR-home-page .intro--sec .list--box {
        width: 100%;
        position: inherit;
        aspect-ratio: unset;
        border: none;
        border-radius: unset;
    }

    #CR-home-page .intro--sec .list--box .item {
        width: 70%;
        position: inherit;
        margin: 0 auto 1rem;
    }

    #CR-home-page .intro--sec .list--box .item .content--box {
        padding: 0 3.75rem /* 60/16 */;
    }

    #CR-home-page .intro--sec .list--box .item .num,
    #CR-home-page .intro--sec .list--box .item .heading-title {
        text-align: center;
    }

    #CR-home-page .intro--sec .list--box .item .desc {
        color: var(--cl-light-main);
        text-align: center;
        font-family: var(--font-sp);
        font-size: 1.125rem /* 18/16 */;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5625rem /* 25/16 */;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        max-height: calc(1.5625rem * 3);
        margin-top: 1rem;
    }

    #CR-home-page .intro--sec .list--box .content-swap--box {
        display: none;
    }

    #CR-home-page .news--sec .head--box,
    #CR-home-page .projects--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 .news--sec .head--box > div,
    #CR-home-page .projects--sec .head--box > div {
        width: 100% !important;
    }

    #CR-home-page .projects--sec .top--box {
        padding: 3.125rem /* 50/16 */ 0;
    }

    #CR-home-page .news--sec .CR-heading-title--group,
    #CR-home-page .projects--sec .top--box .CR-heading-title--group {
        padding: 0;
        margin-bottom: 1.25rem /* 20/16 */;
    }

    #CR-home-page .projects--sec .action--box,
    #CR-home-page .news--sec .action--box {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    #CR-search-page .filter--box a,
    #CR-news-page .filter--box a,
    #CR-home-page .news--sec .action--box a,
    #CR-home-page .projects--sec .top--box .action--box a {
        font-size: 1.125rem /* 18/16 */;
    }

    #CR-search-page .filter--box a.active,
    #CR-news-page .filter--box .active a,
    #CR-home-page .news--sec .action--box a.active,
    #CR-home-page .projects--sec .action--box a.active {
        color: var(--cl-hover-main) !important;
    }

    #CR-search-page .filter--box a:before,
    #CR-news-page .filter--box a:before,
    #CR-home-page .news--sec .action--box a:before,
    #CR-home-page .projects--sec .action--box a:before {
        display: none !important;
    }

    #CR-home-page .news--sec .action--box ul,
    #CR-home-page .projects--sec .action--box ul {
        gap: 1rem !important;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #CR-about-page .team--sec,
    #CR-about-page .hr--sec,
    #CR-about-page .value--sec,
    #CR-about-page .number--sec,
    #CR-about-page .intro--sec,
    #CR-services-page .partner--sec,
    #CR-services-page .procedure--sec,
    #CR-services-page .services--sec,
    #CR-recruitment-page .opportunities--sec,
    #CR-recruitment-page .intro--sec,
    #CR-home-page .intro--sec,
    #CR-home-page .services--sec,
    #CR-home-page .partner--sec,
    #CR-home-page .news--sec {
        padding: 3.125rem /* 50/16 */ 0;
    }

    #CR-home-page .services--sec .CR-heading-title--group {
        width: 70%;
    }

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

    .CR-item-service-home {
        width: 50%;
        padding: 1rem /* 16/16 */;
    }

    .CR-item-service-home:after {
        top: 0.3125rem /* 5/16 */;
        left: 0.3125rem /* 5/16 */;
        right: 0.3125rem /* 5/16 */;
        bottom: 0.3125rem /* 5/16 */;
    }

    .CR-item-service-home .heading-title {
        font-size: 1.125rem /* 18/16 */;
    }

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

    #CR-home-page .partner--sec .CR-item-partner {
        width: 33.33%;
    }

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

    #CR-home-page .news--sec .main-list--box > div {
        width: 100%;
    }

    #CR-home-page .news--sec .CR-news-list--box .CR-item-news .thumb--box {
        aspect-ratio: 1/1.1;
    }

    .CR-item-news .view-video .icon--box {
        width: 2.1875rem /* 35/16 */;
        height: 2.1875rem /* 35/16 */;
    }

    .CR-item-news .content--box {
        padding: 1rem !important;
    }

    .CR-item-news .content--box .heading-title,
    .CR-item-news .hover-content--box .heading-title {
        font-size: 1.25rem /* 20/16 */;
        line-height: 1.5625rem /* 25/16 */;
        max-height: calc(1.5625rem * 2);
    }

    #CR-contact-page .contact--box {
        padding: 0;
        margin-bottom: 1.875rem /* 30/16 */;
        height: auto;
    }

    #CR-contact-page .contact--box .list {
        margin-top: 1.875rem /* 30/16 */;
    }

    #CR-contact-page .contact--box .list a {
        padding: 1rem 0;
    }

    #CR-contact-page .contact--box .view-map {
        font-size: 1rem;
    }

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

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

    #CR-recruitment-page .intro--sec .sub-content--box {
        font-size: 0.875rem /* 14/16 */;
    }

    .CR-recruitment-list-heading {
        display: none;
    }

    .CR-item-recruitment {
        padding: 1rem;
        background: var(--cl-gray);
        border-radius: 0.3125rem /* 5/16 */;
    }

    .CR-item-recruitment:not(:last-child) {
        margin-bottom: 1rem;
    }

    .CR-item-recruitment ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .CR-item-recruitment ul li {
        width: 100% !important;
        padding: 0.9375rem /* 15/16 */ 0 !important;
    }

    .CR-recruitment-col-box li:nth-child(1) {
        display: none !important;
    }

    body .CR-item-recruitment .CR-recruitment-col-box li * {
        font-size: 0.8125rem /* 13/16 */ !important;
    }

    body .CR-item-recruitment .label {
        font-size: 0.8125rem /* 13/16 */ !important;
        font-weight: 700 !important;
        color: var(--cl-white) !important;
        text-transform: uppercase;
        width: 50%;
        background: var(--cl-main);
        padding: 0.25rem;
        border-radius: 0.3125rem /* 5/16 */;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        margin-right: 1rem;
    }

    .CR-item-recruitment .CR-recruitment-col-box li p,
    .CR-item-recruitment .CR-recruitment-col-box li a {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        text-align: center !important;
        line-height: normal !important;
        padding: 0 1rem;
    }

    #CR-recruitment-detail-page .top--sec {
        margin-bottom: 1.875rem /* 30/16 */;
    }

    #CR-recruitment-detail-page .top--sec .contact--box .icon--box {
        margin-top: 2.5rem /* 40/16 */;
    }

    #CR-recruitment-detail-page .top--sec .left {
        padding: 1.875rem /* 30/16 */ 1rem /* 16/16 */ !important;
    }

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

    #CR-recruitment-detail-page .desc-list--box .row--box > *,
    #CR-recruitment-detail-page .top--sec .sub--box > * {
        width: 100% !important;
    }

    #CR-recruitment-detail-page .top--sec .list--box li {
        font-size: 0.875rem /* 14/16 */;
    }

    #CR-recruitment-detail-page .desc-list--box .row--box .content--box {
        padding-left: 0;
    }

    #CR-recruitment-detail-page .desc-list--box {
        width: 100%;
    }

    #CR-recruitment-detail-page .desc-list--box .form--box {
        padding: 1.875rem /* 30/16 */ 1rem !important;
    }

    #CR-recruitment-detail-page .sidebar--box {
        margin-top: 1.875rem /* 30/16 */;
    }

    .CR-item-recruitment-related {
        padding: 0 1rem;
    }

    .CR-item-recruitment-related .title {
        font-size: 1rem /* 16/16 */;
        line-height: 1.375rem /* 22/16 */;
    }

    #CR-news-page .main-list--box .list--box {
        margin: -0.3125rem /* -5/16 */;
    }

    .CR-item-news {
        padding: 0.3125rem /* 5/16 */;
    }

    .next-previous--box a,
    #CR-news-detail-page .intro--box .bottom--box p {
        font-size: 0.875rem /* 14/16 */;
    }

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

    #CR-news-detail-page .action--box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 30px;
        gap: 1.75rem;
    }

    #CR-news-detail-page .action--box > * {
        width: 100%;
        max-width: 100%;
    }

    .next-previous--box ul {
        gap: 1rem;
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    #CR-news-detail-page .sidebar--box .sidebar-title,
    #CR-news-detail-page .sidebar--box .list--box {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .CR-item-news-general .content--box .heading-title {
        font-size: 1rem;
        line-height: 1.375rem /* 22/16 */;
        max-height: calc(1.375rem * 3);
    }

    .CR-item-service .wrap {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .CR-item-service .content--box,
    .CR-item-service .wrap > div {
        position: inherit !important;
        width: 100% !important;
        transform: unset !important;
    }

    .CR-item-service .content--box {
        padding: 1.875rem /* 30/16 */ !important;
    }

    .CR-item-service .thumb--box {
        aspect-ratio: 16/9 !important;
    }

    .CR-item-service:not(:last-child) {
        margin-bottom: 1.875rem /* 30/16 */;
    }

    #CR-services-page .video--sec .CR-fancybox-yt {
        height: auto;
        aspect-ratio: 16/9;
    }

    #CR-services-page .video--sec .CR-fancybox-yt svg {
        width: 6.25rem /* 100/16 */;
        height: 6.25rem /* 100/16 */;
    }

    #CR-services-page .procedure--sec .list--box.CR-slider-service-procedure .slick-list:after {
        width: calc(120rem / 10);
    }

    #CR-services-page .partner--sec .number--box .heading-title {
        font-size: 12.5rem /* 200/16 */;
    }

    #CR-services-page .partner--sec .number--box .heading--box:after {
        font-size: 4.375rem /* 70/16 */;
    }

    #CR-services-page .partner--sec .CR-heading-title--group {
        margin-top: 2rem;
    }

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

    .item-service-procedure .heading-title {
        font-size: 1.25rem /* 20/16 */;
        line-height: 1.75rem /* 28/16 */;
        max-height: calc(1.75rem * 2);
        height: calc(1.75rem * 2);
    }

    #CR-projects-page .filter--box {
        gap: 1rem;
    }

    #CR-projects-page .filter--box .item {
        width: 100%;
        padding: 0 1rem;
    }

    .CR-item-project .content--box {
        padding: 1rem !important;
    }

    .CR-item-project .heading-title {
        font-size: 1.25rem /* 20/16 */ !important;
        line-height: 1.75rem /* 28/16 */ !important;
        max-height: calc(1.75rem * 2) !important;
        margin-bottom: 0 !important;
    }

    .CR-item-project .terms--box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: var(--cl-white) !important;
    }

    .CR-item-project .terms--box * {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        display: unset;
    }

    #CR-projects-page .heading--box {
        padding: 0 1.25rem /* 20/16 */;
    }

    #CR-project-detail-page .intro--box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #CR-project-detail-page .intro--box > div {
        width: 100% !important;
    }

    #CR-project-detail-page .intro--box .sort-desc--box {
        padding-right: 0;
        margin-bottom: 1.25rem /* 20/16 */;
    }

    #CR-project-detail-page .main-content--sec {
        padding-top: 1.875rem /* 30/16 */;
    }

    #CR-project-detail-page .intro--box .info-list--box li b,
    #CR-project-detail-page .intro--box .info-list--box li p {
        font-size: 1rem /* 16/16 */;
    }

    #CR-project-detail-page .content--box,
    #CR-project-detail-page .gallery--box {
        margin-top: 1.875rem /* 30/16 */;
    }

    #CR-project-detail-page .action--box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 1.75rem;
    }

    #CR-project-detail-page .action--box > div {
        width: 100%;
        max-width: 100%;
    }

    #CR-project-detail-page .related--sec {
        padding: 1.875rem /* 30/16 */ 0 0;
    }

    #CR-about-page .value--sec .list--box {
        margin-left: 0;
        margin-right: 0;
    }

    #CR-about-page .value--sec .item {
        width: 100%;
        padding: 1rem !important;
    }

    #CR-about-page .value--sec .item .heading-title {
        font-size: 1.25rem /* 20/16 */;
        line-height: 1.5625rem /* 25/16 */;
    }

    #CR-about-page .number--sec .main-quote--box {
        padding: 3.75rem /* 60/16 */ 0;
    }

    #CR-about-page .number--sec .quote--box {
        font-size: 1.5625rem /* 25/16 */;
    }

    #CR-about-page .number--sec .list--box .item {
        min-width: 100%;
    }

    #CR-about-page .team--sec .arrow-slider--box {
        display: none !important;
    }

    #CR-about-page .team--sec .item {
        aspect-ratio: unset;
    }

    #CR-about-page .team--sec .item img {
        height: auto;
    }

    #CR-about-page .team--sec .item img,
    #CR-about-page .team--sec .item .content--box {
        position: initial !important;
    }

    #CR-about-page .team--sec .item .content--box {
        padding: 1.875rem /* 30/16 */;
    }

    #CR-search-page .filter-results--box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 1rem;
    }

    #CR-search-page .filter-results--box > * {
        width: 100%;
    }

    .CR-btn-style-icon {
        width: 5rem /* 80/16 */;
        height: 3.125rem /* 50/16 */;
    }

    .CR-btn-style-icon svg {
        width: 75%;
    }

    .CR-btn-style-icon:after {
        height: 3.125rem /* 50/16 */;
    }

    .CR-form-footer--sec.white--sec {
        margin-top: 1.875rem /* 30/16 */;
    }

    .CR-form-footer--sec.black--sec .main--box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        align-items: unset;
        gap: 1rem;
    }

    .CR-form-footer--sec.black--sec .main--box > div {
        width: 100%;
    }

    .default-main--box {
        padding: 6.25rem /* 100/16 */ 0 3.75rem /* 60/16 */;
    }

    #CR-popup-recruitment .box {
        max-width: 90vw;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #CR-popup-recruitment .CR-form-def label {
        font-size: 0.8125rem /* 13/16 */;
    }

    #CR-about-page .team--sec .item .heading-title,
    #CR-project-detail-page .related--sec .heading--box .heading-title,
    .CR-item-service .heading-title,
    #CR-news-detail-page .intro--box .heading--box .heading-title,
    #CR-news-page .heading--box .heading-title,
    #CR-recruitment-detail-page .desc-list--box .form--box .heading-title,
    #CR-recruitment-detail-page .top--sec .left .heading-title,
    #CR-popup-recruitment .heading-title,
    .CR-banner--group .heading-title,
    #CR-contact-page .contact--box .heading-title,
    #CR-contact-page .form--box .heading-title,
    .CR-form-footer--sec .heading-title,
    .CR-heading-title--group .heading-title {
        font-size: 1.75rem /* 28/16 */ !important;
        line-height: normal;
    }

/*HOME DEV VL*/
    .heading_0 {
        font-size: 2rem;
    }
    .item_hero:after, .item_hero:before {
        width: 70%;
    }
    .home_1 {
        padding-top: 4rem;
    }
    .content_sec {
        font-size: 1.125rem;
    }
    .group_heading.padding_top .content_sec {
        padding-top: 1rem;
    }
    .group_heading .subtitle_wrap {
        display: flex;
        justify-content: center;
    }
    .subtitle.sec span {
        font-size: 1.05rem;
    }
    .home_5 .group_heading,
    .home_2 .group_heading,
    .home_1 .group_heading {
        text-align: center;
    }
    .home_img_1 {
        width: 100%;
        margin: 0 auto !important;
    }
    .box_criteria_wrap {
        display: flex;
        gap: 1rem;
        justify-content: space-between;
    }
    .box_criteria_wrap .icon:before {
        content: unset;
    }
    .box_criteria_wrap .item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .home_2 .btn_custom {
        justify-content: center;
    }
    .box_counter_home {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 2rem;
        padding-top: 3rem;
    }
    .item_counter_home:nth-child(4) {
        margin-top: 0;
    }
    .tab_project.project_home {
        flex-wrap: wrap;
        justify-content: center !important;
        column-gap: 2rem;
        row-gap: 1.3rem;
    }
    .item_project_home {
        height: 14rem;
    }
    .box_partner_home .slick-dots {
        text-align: center;
    }
    .form_home_wrap .box_img {
        height: 40rem;
    }
    .box_form_home .heading_0 {
        font-size: 2.1rem;
    }
    .marquee-item.heading_0 {
        font-size: 3.3rem;
    }
    .home_5.bg_image {
        background-image: none !important;
    }
    .footer_logo {
        display: flex;
        justify-content: center;
        margin-bottom: 3rem;
    }
    .footer_logo img {
        width: auto;
        height: 4rem;
    }
    .socials_wrap {
        justify-content: center !important;
    }
    .item_solution_home .box_content {
        padding-bottom: 1rem;
    }

    #footer .socials_wrap ul li:nth-child(n+2) a {
        font-size: 1.1rem;
    }
    #footer .footer_bottom a, #footer .copyright {
        font-size: 1rem;
    }
    #footer .footer_bottom .link_page,
    #footer .footer_bottom .row {
        justify-content: center !important;
    }
    #footer .footer_bottom .copyright {
        text-align: center;
        padding-bottom: 1rem;
    }
}

@media only screen and (max-width: 782px) {
    html #wpadminbar {
        position: fixed;
        height: 46px;
        min-width: 240px;
        border-radius: 0;
    }

    .admin-bar #CR-header {
        top: 46px !important;
    }

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

@media only screen and (max-width: 768px) {
    #CR-services-page .procedure--sec .main-list--box {
        padding-left: calc((100% - 560px) / 2);
    }
}

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

    #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);
    }

    .admin-bar .CR-banner--group {
        height: 13.4375rem  /* 215/16 */;
    }

    .CR-banner--group {
        height: 13.4375rem  /* 215/16 */;
    }

    #CR-services-page .procedure--sec .main-list--box {
        padding-left: var(--bs-gutter-x, .75rem);
    }

    .CR-item-partner {
        width: 50%;
    }

    .partner-list--box .items--box.active-line:after,
    .partner-list--box .items--box .line {
        display: none !important;
    }

/*HOME DEV VL*/
    .heading_0 {
        font-size: 1.8rem;
    }
    .banner_home .group_content,
    .banner_home .group_heading {
        text-align: center;
    }
    .banner_home .btn_custom {
        justify-content: center !important;
    }
    .subtitle_banner_wrap {
        display: flex;
        justify-content: center;
    }
    /*.item_hero .box_img {*/
    /*    height: 100vh;*/
    /*}*/
    .item_solution_home .box_content {
        padding-bottom: 1.4rem;
    }
    .item_solution_home h3 {
        font-size: 1.1rem;
        -webkit-line-clamp: 2 !important;
    }
    .home_2 .btn_custom {
        padding-top: 0;
    }
    .home_3.bg_image {
        background-size: cover;
    }
    .home_3 {
        padding-top: 4rem;
    }
    .box_counter_home {
        justify-content: space-between !important;
        padding-left: 15px;
        padding-right: 15px;
        column-gap: 0;
        row-gap: 1rem;
    }
    .item_counter_home {
        width: 11rem !important;
        height: 11rem !important;
    }
    .item_counter_home .item_counter .number {
        font-size: 2.2rem;
    }

    .item_counter_home:nth-child(2) {
        margin-top: 0;
    }
    .mobile_grid_2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .item_project_home {
        height: 12rem;
    }
    .item_project_home .title {
        -webkit-line-clamp: 2;
    }
    .item_project_home .info {
        display: none !important;
    }
    .item_project_home .icon>svg {
        height: 2.5rem;
    }
    .home_5 .heading_0 {
        font-size: 1.5rem;
    }
    .partners_home_grid {
        column-gap: 1rem;
    }
    .form_home_wrap .box_img {
        height: 25rem;
    }
    .box_form_home .group_heading {
        position: unset;
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .box_form_home .heading_0 {
        font-size: 1.5rem;
        margin-bottom: 0.7rem;
    }
    .box_form_home .desc {
        font-size: 0.9rem;
    }
    .box_form_home .CR-form-def .def-form-field.def-form-field-half {
        width: 100% !important;
    }
    .arrow_down_wrapper {
        left: unset;
    }
    .item_solution_home .icon {
        width: 4.5rem;
        height: 4.5rem;
    }
    .home_6 {
        padding-top: 2.8rem;
    }
    .box_criteria_wrap.mobile {
        display: block;
    }
    .box_criteria_wrap.mobile .slick-dots {
        text-align: center;
    }

    #footer .socials_wrap {
        padding-top: 3rem;
    }
    #footer .socials_wrap ul li:nth-child(1) {
        display: none;
    }
    #footer .socials_wrap ul li:not(:nth-child(2)) {
        margin-left: 0;
    }
    #footer .footer_middle .container {
        padding-bottom: 1.375rem;
    }
    #footer .footer_top .container {
        margin-bottom: 2.271rem;
        padding-bottom: 2.125rem;
    }
    .menu_wrap ul {
        justify-content: flex-start !important;
    }
    #CR-header .CR-main-nav-mb .mobile--box .nav-mb--content .nav-socials > span{
        display: none !important;
    }
    #CR-header .CR-main-nav-mb{
        padding: 7rem 1rem 1rem !important;
    }
    #CR-header .main-merged-menu a{
        font-size: 1.5rem;
    }
    #CR-header .main--box .left--box{
        gap: 1rem
    }
    #CR-header .main--box .right--box, #CR-header .main--box .left--box{
        width: 25%;
    }
    #CR-header .main-merged-menu > ul > li {
        justify-content: center;
    }

    .item-with-arrow-box .arrow {
        margin-left: 1.5rem;
    }
}

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

}