#project-register-section-home {
    position: relative;
    padding: 60px 0;
}

.project-register-option-row,
.project-register-option-row>.project-register-option-col {
    position: relative;
}
.project-register-option-row {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
}
.project-register-option-row>.project-register-option-col.this-col-project {
    flex: 1 0 0;
}
/* .project-register-option-row>.project-register-option-col.this-col-submit {
    background-color: #ff0;
} */

.project-register-title-row,
.project-register-title-row>.project-register-title-col {
    position: relative;
}
.project-register-title-row>.project-register-title-col.this-col-title {}
.project-register-title-row>.project-register-title-col.this-col-option {
    flex: 1 0 0;
}

/* inline */
.project-register-title-row.inline {
    display: flex;
    align-items: baseline;
}
.project-register-title-row.inline>.project-register-title-col.this-col-title+.project-register-title-col.this-col-option {
    margin-left: 15px;
}

.project-register-title-row>.project-register-title-col.this-col-option {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
}
.project-register-title-row>.project-register-title-col.this-col-option>.text-label,
.project-register-title-row>.project-register-title-col.this-col-option>.text-project-option {
    position: relative;
}
.project-register-title-row>.project-register-title-col.this-col-option>.text-label+.text-project-option {
    margin-left: 15px;
}

.project-register-title-row>.project-register-title-col.this-col-option>.text-project-option {
    cursor: pointer;
    /* flex: 1 0 0; */
    text-align: left;
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    height: 40px;
    overflow: hidden;
}
.project-register-title-row>.project-register-title-col.this-col-option>.text-project-option.text-color {
    color: rgba(var(--custom-color-secondary-2),1);
}
.project-register-title-row>.project-register-title-col.this-col-option>.text-project-option>.icon {
    position: relative;
    margin-left: 10px;
    font-size: 13px;
    line-height: 20px;
    padding-top: 2px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
}
.project-register-title-row>.project-register-title-col.this-col-option>.text-project-option:hover>.icon {
    opacity: 1;
}

#project-name-option-popup .tab-section>.tab-menu-section + .tab-content-section {
    margin-top: 30px;
}
#project-name-option-popup ul.option-project-name-group,
#project-name-option-popup ul.option-project-name-group>li {
    position: relative;
    list-style: none !important;
    padding: 0;
    margin: 0;
}
#project-name-option-popup ul.option-project-name-group {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 10px);
    margin: 0 -5px -5px -5px;
}
#project-name-option-popup ul.option-project-name-group>li {
    width: 50%;
    padding: 5px;
}
/* #project-name-option-popup ul.option-project-name-group>li+li {
    margin-top: 10px;
} */
#project-name-option-popup .option-project-name-group .option-project-name-btn {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    height: 100px;
    border-radius: 10px;
    border: 1px solid rgba(var(--custom-rgb-color-black),0.1);
    background-color: rgba(var(--custom-rgb-color-black),0);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.15s ease;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -ms-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
}
#project-name-option-popup .option-project-name-group .option-project-name-btn:hover {
    border-color: rgba(var(--custom-rgb-color-black),0);
    background-color: rgba(var(--custom-rgb-color-black),0.05);
}
#project-name-option-popup .option-project-name-group .option-project-name-btn>.cover {
    position: relative;
    width: 100px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* display: none !important; */
}
#project-name-option-popup .option-project-name-group .option-project-name-btn>.detail {
    position: relative;
    flex: 1 0 0;
    padding: 15px 30px;
}
#project-name-option-popup .option-project-name-group .option-project-name-btn>.detail>.text-title,
#project-name-option-popup .option-project-name-group .option-project-name-btn>.detail>.text-description {
    position: relative;
}
#project-name-option-popup .option-project-name-group .option-project-name-btn>.detail>.text-title {
    font-weight: 500;
}
#project-name-option-popup .option-project-name-group .option-project-name-btn>.detail>.text-description {
    opacity: 0.6;
}
#project-name-option-popup .option-project-name-group .option-project-name-btn:before,
#project-name-option-popup .option-project-name-group .option-project-name-btn:after {
    position: absolute;
    right: 12px;
    top: 12px;
    /* top: 50%;    
    margin-top: -17.25px; */
    width: 35px;
    height: 35px;
    border-radius: 10px;
}
#project-name-option-popup .option-project-name-group .option-project-name-btn:before {
    content : "";
    background-color: rgba(var(--custom-rgb-color-secondary-2),0.12);
    opacity : 1;
    z-index: 1;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}
#project-name-option-popup .option-project-name-group .option-project-name-btn.selected:before {
    background-color: rgba(var(--custom-rgb-color-secondary-2),0.12);
}
#project-name-option-popup .option-project-name-group .option-project-name-btn:after {
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    content: "\f633";
    font-size: 13px !important;
    line-height: 35px !important;
    text-align: center;
    color: rgba(var(--custom-rgb-color-black),0.3);
    opacity : 0;
    z-index: 2;
    transition: opacity 0.2s ease;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
}
#project-name-option-popup .ss-content {
	padding-right: 2px;
}
/* #project-name-option-popup .option-project-name-group .option-project-name-btn:after {

    opacity : 0;
    transition: opacity 0.2s ease;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
} */

/* hover */
#project-name-option-popup .option-project-name-group .option-project-name-btn:hover:before {
    background-color: rgba(var(--custom-rgb-color-white),1);
}
#project-name-option-popup .option-project-name-group .option-project-name-btn:hover:after {
    opacity : 1;
}

/* selected */
#project-name-option-popup .option-project-name-group .option-project-name-btn.selected {
    background-color: rgba(var(--custom-rgb-color-secondary-2),0.12);
    color: rgba(var(--custom-rgb-color-secondary-2),1);
}
#project-name-option-popup .option-project-name-group .option-project-name-btn.selected:hover:before {
    opacity : 1;
}
#project-name-option-popup .option-project-name-group .option-project-name-btn.selected:hover:before,
#project-name-option-popup .option-project-name-group .option-project-name-btn.selected:before {
    opacity : 1;
}
#project-name-option-popup .option-project-name-group .option-project-name-btn.selected:hover:after,
#project-name-option-popup .option-project-name-group .option-project-name-btn.selected:after {
    opacity : 1;
    color: rgba(var(--custom-rgb-color-secondary-2),1);
}

/* #project-name-option-popup .option-project-name-group .option-project-name-btn:hover {
    
}
#project-name-option-popup .option-project-name-group .option-project-name-btn:hover:after {
    opacity : 1;
    color: rgba(var(--custom-rgb-color-black),1);
    background-color: rgba(var(--custom-rgb-color-black),0);
}


#project-name-option-popup .option-project-name-group .option-project-name-btn.selected {
    border-color: rgba(var(--custom-rgb-color-secondary-2),0);
    background-color: rgba(var(--custom-rgb-color-secondary-2),0.12);
    color: rgba(var(--custom-rgb-color-secondary-2),1);
}
#project-name-option-popup .option-project-name-group .option-project-name-btn.selected:after {
    opacity : 1;
} */

/* #project-name-option-popup .modal-body {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
} */

#projecct-register-popup #project-register-form-section .project-register-form-row .content-row {
    text-align: left;
    padding: 0 !important;
}

/* ============================================================================================== */
/* ========================================== PROJECT TYPE ====================================== */
/* ============================================================================================== */

#project-type-section-home {
    position: relative;
    padding: 30px 0;
}

/* ============================================================================================== */
/* ========================================= PROJECT SEARCH ===================================== */
/* ============================================================================================== */

#project-search-section-home {
    position: relative;
}
#triple-e-modal-section + #project-search-section-home {
    padding-top: 0 !important;
}

/* ============================================================================================== */
/* ======================================== PROJECT RECOMMEND =================================== */
/* ============================================================================================== */

#project-recommend-section-home {
    position: relative;
    overflow: hidden;
}
#project-recommend-section-home .project-recommend-title {
    position: absolute;
    width: 100%;
    height: 0;
    z-index: 2;
} 
#project-recommend-section-home .project-recommend-title>.container {
    position: relative;
    padding: 0;
}
#project-recommend-section-home .project-recommend-title>.container>.title {
    position: absolute;
    left: 20px;
    top: 80px;
}
#project-recommend-section-home .project-recommend-section {
    position: relative;
    z-index:1;
}
#project-recommend-section-home #project-recommend-banner-slide {
    position: relative;
    z-index: 1;
}
#project-recommend-section-home #project-recommend-content-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

/* banner slide */
#project-recommend-banner-slide:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.3);
    /* -webkit-backdrop-filter: saturate(100%) blur(10px);
    -moz-backdrop-filter: saturate(100%) blur(10px);
    -ms-backdrop-filter: saturate(100%) blur(10px);
    -o-backdrop-filter: saturate(100%) blur(10px);
    backdrop-filter: saturate(100%) blur(10px); */
    z-index: 2;
}
#project-recommend-banner-slide.splide>.splide-track {
    position: relative;
    z-index: 1;
}

#project-recommend-banner-slide .project-recommend-banner-item.img-file>.this-bg {
    background-attachment: fixed;
}

/* content slide */
#project-recommend-content-slide {}
#project-recommend-content-slide {}
#project-recommend-content-slide .project-recommend-content-item {
    position: relative;
    width: 100%;
    height: 100%;
    color: rgba(var(--custom-rgb-color-white),1);
}
#project-recommend-content-slide .project-recommend-content-item>.container {
    position: relative;
    height: 100%;
    /* background-color: rgba(0,0,0,0.3); */
    padding: 0;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row,
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col {
    position: relative;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row {
    display: flex;
    align-items: stretch;
    height: 100%;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col {
    line-height: 25px;
}

/* col content */
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content {
    flex: 1 0 0;
    padding: 80px 80px 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-wrap: wrap;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .title-row {
    text-shadow: 0 3px 5px rgba(var(--custom-rgb-color-black),0.8);
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .title-row>.title {
    max-height:100px;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .title-row>.description {
    max-height: 70px;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .title-row,
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .btn-row {
    position: relative;
    width: 100%;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .title-row>.title+.description {
    margin-top: 10px;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .title-row+.btn-row {
    margin-top: 30px;
}

/* col project */
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-project {
    width: 450px;    
}
#project-recommend-content-slide .project-card,
#project-recommend-content-slide .project-card>.cover,
#project-recommend-content-slide .project-card>.info {
    position: relative;
}

#project-recommend-content-slide .project-card {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    text-align: center;
    height: 100%;
    padding-top: 10px;
}
#project-recommend-content-slide .project-card>.cover {
    background-color: rgba(0,0,0,0.2);
}
#project-recommend-content-slide .project-card>.info {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
}

#project-recommend-content-slide .project-card>.info.on-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 30px 50px;
}
#project-recommend-content-slide .project-card>.info.on-desktop ul.slot-text-group {
    justify-content: center;
}
#project-recommend-content-slide .project-card>.info.on-desktop .project-status+.project-name {
    margin-top: 50px;
}
#project-recommend-content-slide .project-card>.info.on-desktop .project-price {
    position: relative;
    margin-top: 25px;
    padding-top: 25px;
    width: 100%;
}
#project-recommend-content-slide .project-card>.info.on-desktop .project-price:before {
    position: absolute;
    content: "";
    border-top-style: solid;
    border-top-width: 1px;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
}

#project-recommend-content-slide .project-card>.info.on-mobile {
    display: none;
}

/* control */
#project-recommend-section-home #project-recommend-content-control {
    position: absolute;
    width: 100%;
    bottom: 50px;
    left: 0;
    z-index: 5;
    /* background-color: rgba(255,0,0,0.5); */
}
#project-recommend-section-home #project-recommend-content-control,
#project-recommend-section-home #project-recommend-content-control>.container {
    height: 2px;
}
#project-recommend-section-home #project-recommend-content-control .splide-pagination-outside {
    width: auto;
    display: inline-block;
    /* background-color: rgba(255,255,0,0.5); */
}
#project-recommend-section-home #project-recommend-content-control .splide-pagination-outside .splide-pagination {
    justify-content: flex-start;    
}

/* ============================================================================================== */
/* ============================================== BLOG ========================================== */
/* ============================================================================================== */

#blog-section-home.off {
    display: none;
}
#blog-section-home {
    padding: 100px 0;
} 
#blog-section-home .blog-highlight-row,
#blog-section-home .blog-highlight-row>.blog-highlight-col {
    position: relative;
}
#blog-section-home .blog-highlight-row {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    height: 525px;    
    /* background-color: rgba(0,0,0,.1); */
}
#blog-section-home .blog-highlight-row>.blog-highlight-col { 
}
#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-cate {
    width: 325px;
    padding-right: 20px;
}
#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-result {
    width: calc(100% - 325px);
}
#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-result.not-found {
    display: flex;
    align-items: center;
    justify-content: center;
}


#blog-section-home .blog-highlight-row .blog-category-menu-group,
#blog-section-home .blog-highlight-row .blog-category-menu-group>.blog-category-menu-item,
#blog-section-home .blog-highlight-row .blog-category-menu-group>.blog-category-menu-item>.blog-category-menu-btn {
    position: relative;
}
#blog-section-home .blog-highlight-row .blog-category-menu-group>.blog-category-menu-item {
    border: 1px solid rgba(var(--custom-rgb-color-black),0.08);
    border-left: none !important;
    border-right: none !important;
}
#blog-section-home .blog-highlight-row .blog-category-menu-group>.blog-category-menu-item+.blog-category-menu-item {
    border-top: none !important;
}
#blog-section-home .blog-highlight-row .blog-category-menu-group>.blog-category-menu-item>.blog-category-menu-btn {
    text-overflow: ellipsis;
	white-space: nowrap;
    overflow: hidden;
    padding: 15px 20px;
    cursor: pointer;
    color: rgba(var(--custom-rgb-color-black),1);
    background: linear-gradient( to right, rgba(var(--custom-rgb-color-white),0) , rgba(var(--custom-rgb-color-white),0));
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
#blog-section-home .blog-highlight-row .blog-category-menu-group>.blog-category-menu-item>.blog-category-menu-btn:hover,
#blog-section-home .blog-highlight-row .blog-category-menu-group>.blog-category-menu-item>.blog-category-menu-btn.active {
    color: rgba(var(--custom-rgb-color-secondary-2),1);
}
#blog-section-home .blog-highlight-row .blog-category-menu-group>.blog-category-menu-item>.blog-category-menu-btn.active {
    background: linear-gradient( to right, rgba(var(--custom-rgb-color-white),1) , rgba(var(--custom-rgb-color-white),0));
}
#blog-section-home .blog-highlight-row .blog-category-menu-group>.blog-category-menu-item>.blog-category-menu-btn:before {
    position: absolute;
    content: "";
    width: 0px;
    height: 100%;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: rgba(var(--custom-rgb-color-primary),1);
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}
#blog-section-home .blog-highlight-row .blog-category-menu-group>.blog-category-menu-item>.blog-category-menu-btn.active:before {
    opacity: 1;
    width: 5px;
}

/* desktop */
#blog-section-home .category-on-desktop {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}
#blog-section-home .category-on-desktop>.menu-row {
    padding: 30px 0;
}
#blog-section-home .category-on-desktop>.action-row {
    margin-top: auto;
    margin-bottom: 10px;
}

/* mobile */
#blog-section-home .blog-highlight-row .category-on-mobile {
    display: none;
}


/* ============================================================================================== */
/* ============================================== NEWS ========================================== */
/* ============================================================================================== */

#news-section-home.off {
    display: none;
}

#news-section-home .category-section.category-on-mobile {
    display: none;
}
#news-section-home .category-section.category-on-mobile .menu-row {
    margin-top: 20px;
}

/* cate */
#news-section-home .category-section.category-on-desktop .news-category-menu-group>.news-category-menu-item>.news-category-menu-btn {
    color: rgba(var(--custom-rgb-color-black),1);
    cursor: pointer;
}
#news-section-home .category-section.category-on-desktop .news-category-menu-group>.news-category-menu-item>.news-category-menu-btn.active {
    color: rgba(var(--custom-rgb-color-secondary-2),1);
}

/* result */
#news-section-home .result-section {
    position: relative;
    height: 500px;
    /* background-color: #ff0; */
}
#news-section-home .card-block-row.splide .splide-track {
    padding: 0 !important;
}
#news-section-home .card-block.is-news.banner-format {
    height: 500px;
    width: 500px !important;
    overflow: hidden;
}
/* #news-section-home .card-block.is-news.banner-format.banner-horizontal-format {
    width: 700px !important;
}
#news-section-home .card-block.is-news.banner-format.banner-square-format {
    width: 500px !important;
} */
#news-section-home .card-block.is-news.banner-format>.card-block-inner {
    z-index: 2;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block {
    top: 0;
    height: 100%;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 350px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( to top, rgba(var(--custom-rgb-color-black-default),0.9) , rgba(var(--custom-rgb-color-black-default),0));
    z-index: 2;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--custom-rgb-color-black-default),0.4);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
}
#news-section-home .card-block.is-news.banner-format:hover>.card-block-inner>.content-block:after {
    opacity: 1;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block>.content-inner {
    padding: 50px;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    z-index: 3;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .title  {
    color: rgba(var(--custom-rgb-color-white),1) !important;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .description {
    color: rgba(var(--custom-rgb-color-gray),0.8) !important;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .title {
    font-size: 30px;
    line-height: 35px;
    max-height: 70px;
    font-weight: 400;
    margin-top: auto !important;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .description {
    margin-top: 10px;
    max-height: 25px;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .read-more-btn-row {
    position: relative;
    height: 0;
    transition: height 0.3s ease;
    -webkit-transition: height 0.3s ease;
    -moz-transition: height 0.3s ease;
    -ms-transition: height 0.3s ease;
    -o-transition: height 0.3s ease;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .read-more-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
}
#news-section-home .card-block.is-news.banner-format:hover>.card-block-inner>.content-block  .read-more-btn {
    opacity: 1;
}
#news-section-home .card-block.is-news.banner-format:hover>.card-block-inner>.content-block .read-more-btn-row {
    height: 45px;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .read-more-btn-row>.read-more-btn>.text+.icon {
    margin-left: 15px;    
}

/* xxl */
@media (min-width: 1400px) {}

/* xxl - 1 */
@media (min-width:1500px) and (max-width: 1599.98px) {
    
/* ============================================================================================== */
/* ====================================== BANNER + REGISTER ===================================== */
/* ============================================================================================== */

#project-register-section-home {
    padding: 50px 0;
}
.project-register-title-row>.project-register-title-col.this-col-option {
    font-size: 40px;
}

/* ============================================================================================== */
/* ======================================== PROJECT RECOMMEND =================================== */
/* ============================================================================================== */

#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-project {
    width: 400px;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content {
    padding: 60px 60px 100px 20px;
}

#project-recommend-content-slide .project-card>.info.on-desktop {
    padding: 20px 40px;
}
#project-recommend-content-slide .project-card>.info.on-desktop .project-status+.project-name {
    margin-top: 20px;
}

#project-recommend-content-slide .project-card>.info.on-desktop .project-price {
    margin-top: 15px;
    padding-top: 15px;
}

/* ============================================================================================== */
/* ============================================== BLOG ========================================== */
/* ============================================================================================== */

#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-cate {
    width: 305px;
    padding-right: 20px;
}
#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-result {
    width: calc(100% - 305px);
}

/* ============================================================================================== */
/* ============================================== NEWS ========================================== */
/* ============================================================================================== */

#news-section-home .result-section {
    height: auto;
}
#news-section-home .card-block.is-news.banner-format {
    height: 450px;
    width: 450px !important;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .title {
    font-size: 25px;
    line-height: 30px;
    max-height: 60px;
}

}

/* xxl - 2 */
@media (min-width: 1400px) and (max-width: 1499.98px) {

/* ============================================================================================== */
/* ====================================== BANNER + REGISTER ===================================== */
/* ============================================================================================== */

#project-register-section-home {
    padding: 50px 0;
}
.project-register-title-row>.project-register-title-col.this-col-option {
    font-size: 40px;
}

/* ============================================================================================== */
/* ======================================== PROJECT RECOMMEND =================================== */
/* ============================================================================================== */

#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-project {
    width: 400px;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content {
    padding: 60px 60px 100px 20px;
}

#project-recommend-content-slide .project-card>.info.on-desktop {
    padding: 20px 40px;
}
#project-recommend-content-slide .project-card>.info.on-desktop .project-status+.project-name {
    margin-top: 20px;
}

#project-recommend-content-slide .project-card>.info.on-desktop .project-price {
    margin-top: 15px;
    padding-top: 15px;
}

/* ============================================================================================== */
/* ============================================== BLOG ========================================== */
/* ============================================================================================== */

#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-cate {
    width: 305px;
    padding-right: 20px;
}
#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-result {
    width: calc(100% - 305px);
}

/* ============================================================================================== */
/* ============================================== NEWS ========================================== */
/* ============================================================================================== */

#news-section-home .result-section {
    height: auto;
}
#news-section-home .card-block.is-news.banner-format {
    height: 450px;
    width: 450px !important;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .title {
    font-size: 25px;
    line-height: 30px;
    max-height: 60px;
}

}

/* xl */
@media (min-width: 1200px) and (max-width: 1399.98px) {

/* ============================================================================================== */
/* ====================================== BANNER + REGISTER ===================================== */
/* ============================================================================================== */

#project-register-section-home {
    padding: 40px 0;
}
.project-register-title-row>.project-register-title-col.this-col-option {
    font-size: 35px;
}

/* ============================================================================================== */
/* ======================================== PROJECT RECOMMEND =================================== */
/* ============================================================================================== */

#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-project {
    width: 350px;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content {
    padding: 60px 60px 80px 20px;
}

#project-recommend-content-slide .project-card>.info.on-desktop {
    padding: 20px 40px;
}
#project-recommend-content-slide .project-card>.info.on-desktop .project-status+.project-name {
    margin-top: 5px;
}

#project-recommend-content-slide .project-card>.info.on-desktop .project-price {
    margin-top: 10px;
    padding-top: 10px;
}


/* ============================================================================================== */
/* ============================================== BLOG ========================================== */
/* ============================================================================================== */

#blog-section-home {
    padding: 50px 0;
}
#blog-section-home .blog-highlight-row {
    flex-wrap: wrap;
    height: auto !important;
}
#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-cate {
    width: 100%;
    padding: 0 !important;
}
#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-result {
    width: 100%;
}

#blog-section-home .category-on-desktop {
    display: none !important;
}
#blog-section-home .category-on-mobile {
    display: block !important;
}
#blog-section-home .category-on-mobile>.menu-row {
    margin-top: 20px;
    display: none !important;
}

/* ============================================================================================== */
/* ============================================== NEWS ========================================== */
/* ============================================================================================== */

#news-section-home .result-section {
    height: auto;
}
#news-section-home .title-section {
    padding: 30px 0;
}
#news-section-home .category-section.category-on-desktop {
    display: none;
}
#news-section-home .category-section.category-on-mobile {
    display: block;
}
#news-section-home .category-section.category-on-mobile .menu-row {
    display: none;
}
#news-section-home .card-block.is-news.banner-format {
    height: 400px;
    width: 400px !important;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .title {
    font-size: 25px;
    line-height: 30px;
    max-height: 60px;
}

}

/* lg */
@media (min-width: 992px) and (max-width: 1199.98px) {

/* ============================================================================================== */
/* ====================================== BANNER + REGISTER ===================================== */
/* ============================================================================================== */

#project-register-section-home {
    padding: 40px 0;
}
.project-register-title-row>.project-register-title-col.this-col-option {
    font-size: 35px;
}

/* ============================================================================================== */
/* ======================================== PROJECT RECOMMEND =================================== */
/* ============================================================================================== */

#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-project {
    width: 350px;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content {
    padding: 60px 60px 80px 20px;
}


/* ============================================================================================== */
/* ============================================== BLOG ========================================== */
/* ============================================================================================== */

#blog-section-home {
    padding: 50px 0;
}
#blog-section-home .blog-highlight-row {
    flex-wrap: wrap;
    height: auto !important;
}
#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-cate {
    width: 100%;
    padding: 0 !important;
}
#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-result {
    width: 100%;
}

#blog-section-home .category-on-desktop {
    display: none !important;
}
#blog-section-home .category-on-mobile {
    display: block !important;
}
#blog-section-home .category-on-mobile>.menu-row {
    margin-top: 20px;
    display: none !important;
}

/* ============================================================================================== */
/* ============================================== NEWS ========================================== */
/* ============================================================================================== */

#news-section-home .result-section {
    height: auto;
}
#news-section-home .title-section {
    padding: 30px 0;
}
#news-section-home .category-section.category-on-desktop {
    display: none;
}
#news-section-home .category-section.category-on-mobile {
    display: block;
}
#news-section-home .category-section.category-on-mobile .menu-row {
    display: none;
}
#news-section-home .card-block.is-news.banner-format {
    height: 400px;
    width: 400px !important;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .title {
    font-size: 25px;
    line-height: 30px;
    max-height: 60px;
}

}

/* md */
@media (min-width: 768px) and (max-width: 991.98px) {

/* ============================================================================================== */
/* ====================================== BANNER + REGISTER ===================================== */
/* ============================================================================================== */

#project-register-section-home {
    padding: 50px 0;
}
.project-register-option-row {
    flex-wrap: wrap;
}
.project-register-option-row>.project-register-option-col {
    width: 100% !important;
}
.project-register-option-row>.project-register-option-col.this-col-submit {
    margin-top: 20px;
    padding-top: 20px;
}
.project-register-option-row>.project-register-option-col.this-col-submit:before {
    position: absolute;
    content : "";
    width: 200px;
    border-top: 1px solid rgba(var(--custom-rgb-color-black),1);
    top: 0;
    left: 50%;
    margin-left: -100px;
}
.project-register-title-row {
    flex-wrap: wrap;
}
.project-register-title-row>.project-register-title-col.this-col-title {
    width: 100% !important;
    text-align: center;
}
.project-register-title-row>.project-register-title-col.this-col-option {
    width: auto !important;
}

.project-register-title-row>.project-register-title-col.this-col-option {
    font-size: 35px;
    line-height: 40px;
    font-weight: 500;
}
.project-register-title-row.inline>.project-register-title-col.this-col-title+.project-register-title-col.this-col-option {
    justify-content: center;
    margin: 0 auto !important;
}
.project-register-title-row>.project-register-title-col.this-col-option>.text-project-option {
    height: 40px;
}

/* project name popup */
#project-name-option-popup ul.option-project-name-group>li {
    width: 100% !important;
}
/* register popup */
#projecct-register-popup .project-register-title-row>.project-register-title-col.this-col-title {
    text-align: left;
}
#projecct-register-popup #project-register-form-section>.project-register-title-row+.project-register-form-row {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(var(--custom-rgb-color-black),1);
}


/* ============================================================================================== */
/* ============================================== SEARCH ======================================== */
/* ============================================================================================== */

#triple-e-modal-section + #project-search-section-home,
#project-search-section-home {
    padding: 40px 0 !important;
}

/* ============================================================================================== */
/* ======================================== PROJECT RECOMMEND =================================== */
/* ============================================================================================== */

#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row {
    height: auto;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content,
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-project {
    padding: 0;
    width: 100%;
    flex: none !important;
}

#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content {
    text-align: center;
    padding: 0 30px !important;
    height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .title-row>.title {
    font-size: 25px;
    line-height: 25px;
    max-height: 50px;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .title-row>.title+.description {
    color: rgba(var(--custom-rgb-color-gray),1);
}

#project-recommend-section-home .project-recommend-section {
    height: 820px !important;
}
#project-recommend-section-home .project-recommend-section .img-size-sec,
#project-recommend-section-home .project-recommend-section .img-file-sec,
#project-recommend-banner-slide {
    height: 100% !important;
}

#project-recommend-section-home .project-recommend-title {
    text-align: center;
}
#project-recommend-section-home .project-recommend-title>.container>.title {
    width: 100%;
    text-align: center;
    left: 0;
    right: 0;
    top:60px;
}

#project-recommend-content-slide {
    margin-top: 80px;
}
#project-recommend-content-slide .project-card {
    width: 400px;
    height: auto;
    border-radius: var(--custom-border-radius-card);
    padding: 0;
    margin: 40px auto;
    overflow: hidden;
    box-shadow: 0 0 30px 0 rgba(var(--custom-rgb-color-black),0.8);
    top: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
#project-recommend-content-slide .project-card:hover {
    top:-10px;
    box-shadow: 0 10px 30px 0 rgba(var(--custom-rgb-color-black),1);
}
#project-recommend-content-slide .project-card>.info.on-desktop {
    display: none;
}
#project-recommend-content-slide .project-card>.info.on-mobile {
    display: block;
    padding: 20px;
}
#project-recommend-content-slide .project-card>.info.on-mobile>.project-name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
#project-recommend-content-slide .project-recommend-content-item .btn-row>.btn-group {
    justify-content: center;

}

/* control */
#project-recommend-section-home #project-recommend-content-control {
    bottom: 280px;
}
#project-recommend-section-home #project-recommend-content-control>.container {
    display: flex;
    justify-content: center;
}
#project-recommend-section-home #project-recommend-content-control .splide-pagination-outside .splide-pagination {
    justify-content: center;    
}

/* ============================================================================================== */
/* ============================================== BLOG ========================================== */
/* ============================================================================================== */

#blog-section-home {
    padding: 50px 0;
}
#blog-section-home .blog-highlight-row {
    flex-wrap: wrap;
    height: auto !important;
}
#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-cate {
    width: 100%;
    padding: 0 !important;
}
#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-result {
    width: 100%;
}

#blog-section-home .category-on-desktop {
    display: none !important;
}
#blog-section-home .category-on-mobile {
    display: block !important;
}
#blog-section-home .category-on-mobile>.menu-row {
    margin-top: 20px;
    display: none !important;
}

/* ============================================================================================== */
/* ============================================== NEWS ========================================== */
/* ============================================================================================== */

#news-section-home .result-section {
    height: auto;
}
#news-section-home .title-section {
    padding: 30px 0;
}
#news-section-home .category-section.category-on-desktop {
    display: none;
}
#news-section-home .category-section.category-on-mobile {
    display: block;
}
#news-section-home .category-section.category-on-mobile .menu-row {
    display: none;
}
#news-section-home .card-block.is-news.banner-format {
    height: 400px;
    width: 400px !important;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .title {
    font-size: 25px;
    line-height: 30px;
    max-height: 60px;
}

}

/* sm - xs */
@media (max-width: 767.98px) {

/* ============================================================================================== */
/* ============================================== BLOG ========================================== */
/* ============================================================================================== */

#blog-section-home {
    padding: 50px 0;
}
#blog-section-home .blog-highlight-row {
    flex-wrap: wrap;
    height: auto !important;
}
#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-cate {
    width: 100%;
    padding: 0 !important;
}
#blog-section-home .blog-highlight-row>.blog-highlight-col.this-col-result {
    width: 100%;
}

#blog-section-home .category-on-desktop {
    display: none !important;
}
#blog-section-home .category-on-mobile {
    display: block !important;
}
#blog-section-home .category-on-mobile>.menu-row {
    margin-top: 20px;
    display: none !important;
}

/* ============================================================================================== */
/* ============================================== NEWS ========================================== */
/* ============================================================================================== */

#news-section-home .title-section {
    padding: 30px 0;
}
#news-section-home .category-section.category-on-desktop {
    display: none;
}
#news-section-home .category-section.category-on-mobile {
    display: block;
}
#news-section-home .category-section.category-on-mobile .menu-row {
    display: none;
}

}

/* sm */
@media (min-width: 576px) and (max-width: 767.98px) {
    

/* ============================================================================================== */
/* ====================================== BANNER + REGISTER ===================================== */
/* ============================================================================================== */

#project-register-section-home {
    padding: 40px 0;
}
.project-register-option-row {
    flex-wrap: wrap;
}
.project-register-option-row>.project-register-option-col {
    width: 100% !important;
}
.project-register-option-row>.project-register-option-col.this-col-submit {
    margin-top: 20px;
    padding-top: 20px;
}
.project-register-option-row>.project-register-option-col.this-col-submit:before {
    position: absolute;
    content : "";
    width: 200px;
    border-top: 1px solid rgba(var(--custom-rgb-color-black),1);
    top: 0;
    left: 50%;
    margin-left: -100px;
}
.project-register-title-row {
    flex-wrap: wrap;
}
.project-register-title-row>.project-register-title-col.this-col-title {
    width: 100% !important;
    text-align: center;
}
.project-register-title-row>.project-register-title-col.this-col-option {
    width: auto !important;
}

.project-register-title-row>.project-register-title-col.this-col-option {
    font-size: 28px;
    line-height: 30px;
    font-weight: 500;
}
.project-register-title-row.inline>.project-register-title-col.this-col-title+.project-register-title-col.this-col-option {
    justify-content: center;
    margin: 0 auto !important;
}
.project-register-title-row>.project-register-title-col.this-col-option>.text-project-option {
    height: 30px;
}

/* project name popup */
#project-name-option-popup ul.option-project-name-group>li {
    width: 100% !important;
}
/* register popup */
#projecct-register-popup .project-register-title-row>.project-register-title-col.this-col-title {
    text-align: left;
}
#projecct-register-popup #project-register-form-section>.project-register-title-row+.project-register-form-row {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(var(--custom-rgb-color-black),1);
}

/* ============================================================================================== */
/* ============================================== SEARCH ======================================== */
/* ============================================================================================== */

#triple-e-modal-section + #project-search-section-home,
#project-search-section-home {
    padding: 40px 0 !important;
}

/* ============================================================================================== */
/* ======================================== PROJECT RECOMMEND =================================== */
/* ============================================================================================== */

#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row {
    height: auto;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content,
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-project {
    padding: 0;
    width: 100%;
    flex: none !important;
}

#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content {
    text-align: center;
    padding: 0 30px !important;
    height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .title-row>.title {
    font-size: 25px;
    line-height: 25px;
    max-height: 50px;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .title-row>.title+.description {
    color: rgba(var(--custom-rgb-color-gray),1);
}

#project-recommend-section-home .project-recommend-section {
    height: 820px !important;
}
#project-recommend-section-home .project-recommend-section .img-size-sec,
#project-recommend-section-home .project-recommend-section .img-file-sec,
#project-recommend-banner-slide {
    height: 100% !important;
}

#project-recommend-section-home .project-recommend-title {
    text-align: center;
}
#project-recommend-section-home .project-recommend-title>.container>.title {
    width: 100%;
    text-align: center;
    left: 0;
    right: 0;
    top:60px;
}

#project-recommend-content-slide {
    margin-top: 80px;
}
#project-recommend-content-slide .project-card {
    width: 300px;
    height: auto;
    border-radius: var(--custom-border-radius-card);
    padding: 0;
    margin: 40px auto;
    overflow: hidden;
    box-shadow: 0 0 30px 0 rgba(var(--custom-rgb-color-black),0.8);
    top: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
#project-recommend-content-slide .project-card:hover {
    top:-10px;
    box-shadow: 0 10px 30px 0 rgba(var(--custom-rgb-color-black),1);
}
#project-recommend-content-slide .project-card>.info.on-desktop {
    display: none;
}
#project-recommend-content-slide .project-card>.info.on-mobile {
    display: block;
    padding: 20px;
}
#project-recommend-content-slide .project-card>.info.on-mobile>.project-name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
#project-recommend-content-slide .project-recommend-content-item .btn-row>.btn-group {
    justify-content: center;

}

/* control */
#project-recommend-section-home #project-recommend-content-control {
    bottom: 280px;
}
#project-recommend-section-home #project-recommend-content-control>.container {
    display: flex;
    justify-content: center;
}
#project-recommend-section-home #project-recommend-content-control .splide-pagination-outside .splide-pagination {
    justify-content: center;    
}

/* ============================================================================================== */
/* ============================================== NEWS ========================================== */
/* ============================================================================================== */

#news-section-home .result-section {
    height: auto;
}
#news-section-home .card-block.is-news.banner-format {
    height: 400px;
    width: 400px !important;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .title {
    font-size: 22px;
    line-height: 25px;
    font-weight: 500;
    max-height: 50px;
}

}

/* xs */
@media (max-width: 575.98px) {

/* ============================================================================================== */
/* ====================================== BANNER + REGISTER ===================================== */
/* ============================================================================================== */

#project-register-section-home {
    padding: 30px 0;
}
.project-register-option-row {
    flex-wrap: wrap;
}
.project-register-option-row>.project-register-option-col {
    width: 100% !important;
}
.project-register-option-row>.project-register-option-col.this-col-submit {
    margin-top: 20px;
    padding-top: 20px;
}
.project-register-option-row>.project-register-option-col.this-col-submit:before {
    position: absolute;
    content : "";
    width: 200px;
    border-top: 1px solid rgba(var(--custom-rgb-color-black),1);
    top: 0;
    left: 50%;
    margin-left: -100px;
}
.project-register-title-row {
    flex-wrap: wrap;
}
.project-register-title-row>.project-register-title-col.this-col-title {
    width: 100% !important;
    text-align: center;
}
.project-register-title-row>.project-register-title-col.this-col-option {
    width: auto !important;
}

.project-register-title-row>.project-register-title-col.this-col-option {
    font-size: 28px;
    line-height: 30px;
    font-weight: 500;
}
.project-register-title-row.inline>.project-register-title-col.this-col-title+.project-register-title-col.this-col-option {
    justify-content: center;
    margin: 0 auto !important;
}
.project-register-title-row>.project-register-title-col.this-col-option>.text-project-option {
    height: 30px;
}

/* project name popup */
#project-name-option-popup ul.option-project-name-group>li {
    width: 100% !important;
}
/* register popup */
#projecct-register-popup .project-register-title-row>.project-register-title-col.this-col-title {
    text-align: left;
}
#projecct-register-popup #project-register-form-section>.project-register-title-row+.project-register-form-row {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(var(--custom-rgb-color-black),1);
}

/* ============================================================================================== */
/* ========================================= PROJECT SEARCH ===================================== */
/* ============================================================================================== */

#project-search-section-home,
#triple-e-modal-section + #project-search-section-home {
    padding: 30px 0 !important;
}

/* ============================================================================================== */
/* ======================================== PROJECT RECOMMEND =================================== */
/* ============================================================================================== */

#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row {
    height: auto;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content,
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-project {
    padding: 0;
    width: 100%;
    flex: none !important;
}

#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content {
    text-align: center;
    padding: 0 30px !important;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* top: -10px; */
    top: 0;
    /* background-color: rgba(255,255,0,0.2); */
}

#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .title-row>.title {
    font-size: 22px;
    line-height: 25px;
    max-height:50px;
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .title-row>.description {
    font-size: 18px;
    line-height: 22px;
    max-height: 44px;
    color: rgba(var(--custom-rgb-color-gray),1);
}
#project-recommend-content-slide .project-recommend-content-item .project-recommend-content-row>.project-recommend-content-col.this-col-content .title-row+.btn-row {
    margin-top: 20px;
}

#project-recommend-section-home .project-recommend-section {
    height: 740px !important;
}
#project-recommend-section-home .project-recommend-section .img-size-sec,
#project-recommend-section-home .project-recommend-section .img-file-sec,
#project-recommend-banner-slide {
    height: 100% !important;
}

#project-recommend-section-home .project-recommend-title {
    text-align: center;
}
#project-recommend-section-home .project-recommend-title>.container>.title {
    width: 100%;
    text-align: center;
    left: 0;
    right: 0;
    top:50px;
}

#project-recommend-content-slide {
    margin-top: 80px;
}
#project-recommend-content-slide .project-card {
    width: 280px;
    height: auto;
    border-radius: var(--custom-border-radius-card);
    padding: 0;
    margin: 20px auto 40px auto;
    overflow: hidden;
    box-shadow: 0 0 30px 0 rgba(var(--custom-rgb-color-black),0.8);
    top: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
#project-recommend-content-slide .project-card:hover {
    top:-10px;
    box-shadow: 0 10px 30px 0 rgba(var(--custom-rgb-color-black),1);
}
#project-recommend-content-slide .project-card>.info.on-desktop {
    display: none;
}
#project-recommend-content-slide .project-card>.info.on-mobile {
    display: block;
    padding: 20px;
}
#project-recommend-content-slide .project-card>.info.on-mobile>.project-name {
    text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
#project-recommend-content-slide .project-recommend-content-item .btn-row>.btn-group {
    justify-content: center;

}

/* control */
#project-recommend-section-home #project-recommend-content-control {
    bottom: 250px;
}
#project-recommend-section-home #project-recommend-content-control>.container {
    display: flex;
    justify-content: center;
}
#project-recommend-section-home #project-recommend-content-control .splide-pagination-outside .splide-pagination {
    justify-content: center;    
}

/* ============================================================================================== */
/* ============================================== NEWS ========================================== */
/* ============================================================================================== */

#news-section-home .result-section {
    height: auto;
}
#news-section-home .card-block.is-news.banner-format {
    height: 350px;
    width: 350px !important;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block .title {
    font-size: 22px;
    line-height: 25px;
    font-weight: 500;
    max-height: 50px;
}
#news-section-home .card-block.is-news.banner-format>.card-block-inner>.content-block>.content-inner {
    padding: 30px;
}
#news-section-home .splide-arrows {
    display: none !important;
}

}

/* xs custom */
@media (max-width: 399.98px) {}
