:root {
    --cl-0: #1c1c1c;
    --cl-1: #61ce70;
    --cl-2: #6ec1e4;
    --cl-single: #020c30;
    --cl-singleText: #F8D292;
}
html{
    font-size: 1.112vw;
}
body{
    -webkit-font-smoothing: antialiased;
    font-size: 17px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #1c1c1c;
}
.cl-0{
    color: var(--cl-0);
}
.cl-1{
    color: var(--cl-1);
}
.cl-2{
    color: var(--cl-2);
}
.bg-0{
    background-color: var(--cl-0);
}
.bg-1{
    background-color: var(--cl-1);
}
.bg-2{
    background-color: var(--cl-2);
}
.sc-header .menu {
    display: flex;
    justify-content: center;
}
.sc-header .menu li{
    list-style: none;
}
.sc-header .menu a{
    display: block;
    color: var(--cl-0);
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 18px;
    border-bottom: 2px solid #fff;
}
.sc-header .menu a:hover{
    color: var(--cl-1);
    border-bottom-color: var(--cl-1);
}
.sc-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 10px 0;
}
.sc_home-tasklist {
    display: flex;
    gap: 5rem;
    margin-top: -50px;
}
.sc_home-tasklist .item{
    text-align: center;
}
.sc_home-tasklist .item .title {
    color: var(--cl-2);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 5px;
    letter-spacing: 1px;
}
.sc_home-tasklist .item svg {
    width: 150px;
    padding: 40px;
    border-radius: 50%;
    background-color: #fff;
    height: 150px;
}
.tripBanner{
    position: relative;
}
.tripBanner .trip{
    width: calc(100% + 1.3px);
    height: 151px;
    display: block;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: calc(100% + 1.3px);
    z-index: -1;
}
.tripBanner .trip path{
    fill: #fff;
    transform: rotateY(0deg);
    transform-origin: center;
}
.sc_home-tasklist svg path{
    fill: #3894ff;
    color: #3894ff;
}
.tripBanner .img{
    height: 85vh;
    width: 100%;
    object-fit: cover;
}
.sc_home-select {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 30px;
}
.content_p p,.content_p h1,.content_p h2,.content_p h3,.content_p h4,.content_p h5,.content_p h6,.content_p ul,.content_p img,.content_p ol{
    margin-bottom: 16px;
}
.content_p ul,.content_p ol{
    padding-left: 16px;
}
.sc_home-select .intro .item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sc_home-select .intro .item img {
    width: 20px;
}
.sc_home-select .intro .meta {
    border-top: 1px solid #ccc;
    padding-top: 16px;
    padding-bottom: 16px;
}
.sc_home-select > * {
    flex: 1;
}
.sc_home-select .content{
    margin-top: 16px;
}
.sc_project-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.sc_project-list .item {
    background-color: #DBFCF8;
    overflow: hidden;
    border-radius: 25px;
    color: var(--cl-0);
}
.sc_project-list .item:nth-child(2),.sc_project-list .item:nth-child(5),.sc_project-list .item:nth-child(8),.sc_project-list .item:nth-child(11),.sc_project-list .item:nth-child(14){
    background-color: #f9fafa;
}
.sc_project-list .item .wap {
    text-align: center;
    padding: 30px;
}
.sc_project-list .item .wap .readmore {
    display: inline-block;
    border: 2px solid;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 7px 15px;
    margin-top: 15px;
}
.sc_project-list .item .wap .title {
    font-weight: normal;
    font-size: 25px;
    margin-bottom: 10px;
}
.sc_project-list .item .pic {
    display: block;
    overflow: hidden;
    position: relative;
}
.sc_project-list .item .pic img{
    transition: all 1s ease-in-out 0s;
    -webkit-transition: all 1s ease-in-out 0s;
}
.sc_project-list .item:hover .pic img{
    transform: scale(1.25);
}
.sc_project-list .item .pic:after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 1s ease-in-out 0s;
    -webkit-transition: all 1s ease-in-out 0s;
    background-color: rgb(0 0 0 / 35%);
    opacity: 0;
}
.sc_project-list .item:hover .pic:after{
    opacity: 1;
}
.svgRef {
    width: 100%;
    height: 140px;
    z-index: -1;
    position: relative;
    transform: rotate(180deg);
    margin-top: 15px;
    margin-bottom: -10px;
}
.svgRef path{
    fill: #41556E;
    transform: rotateY(0deg);
    transform-origin: center;
}
#sc_footer-main{
    background-color: #001a35;
    color: #fff;
}
.sc_footer {
    display: flex;
    gap: 100px;
    justify-content: space-between;
    text-align: center;
    padding: 100px 0;
}
.sc_footer > *{
    flex: 1;
}
.sc_footer-bageForm {
    order: 2;
}
.sc_footer-info .title{
    font-size: 23px;
    color: #FF8800;
    margin-bottom: 10px;
}
.sc_footer-info > *{
    margin-bottom: 15px;
}
.sc_footer-bageForm .formPushContact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}
.sc_footer-bageForm .formPushContact input {
    width: 100%;
    color: #000;
    border-radius: 10px;
    border: 1px solid #c99190;
    padding: 0 10px;
    line-height: 40px;
    box-shadow: 0 0 0;
}
.sc_footer-bageForm .formPushContact button {
    background-color: #c99190;
    line-height: 40px;
    border: 1px solid #c99190;
    border-radius: 10px;
    font-weight: bold;
}
.sc_footer-bageForm .title {
    font-size: 23px;
    margin-bottom: 15px;
}
.sc_project-banner{
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
.sc_project-top{
    background-color: var(--cl-single);
    color: #e6d1ad;
}
div.title_gradient{
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}
.title_gradient{
    color: #DEB100;
    font-size: 46px;
    text-transform: uppercase;
    font-weight: bold;
}
.title_gradient > span{
    background-image: linear-gradient(to right, #DEB100, #EF9069, #D1AC9C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
    text-align: center;
    display: inline-block;
}
.aligncenter {
    display: block;
    margin: auto;
}
.single-project .formPushContact {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.single-project .formPushContact input {
    border: 2px solid #557BA5;
    border-radius: 5px;
    line-height: 38px;
    padding: 0 15px;
    width: 280px;
    background-color: #fff;
    box-shadow: 0 0 0;
    font-size: 14px;
}
.single-project .formPushContact button{
    background-color: #C00000;
    border: 2px solid #fbc613;
    box-shadow: 0 0 0;
    width: 280px;
    text-align: center;
    border-radius: 5px;
    color: #FFCDAF;
    line-height: 38px;
}
#sc_project-tongquan{
    background-color: #F9F7ED;
    padding-bottom: 30px;
}
.title_bod {
    text-align: center;
    background-color: #06002E;
    border: 1px solid #F8D292;
    border-radius: 25px;
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 1100px;
    max-width: 100%;
}
.title_bod .title_gradient{
    font-size: 35px;
}
.img_pic_bd{
    border-radius: 15px;
    border: 2px solid #e5bca4;
}
.sc_project-tongquan-grow {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}
.sc_project-tongquan-grow > *{
    flex: 1;
}
.sc_project-tongquan-grow .items{
    border: 1px solid gray;
    border-spacing: 3px;
    border-collapse: separate;
    font-size: 16px;

}
.sc_project-tongquan-grow .items tr{
    border-spacing: 3px;
    border: 1px solid #000;
}
.sc_project-tongquan-grow .items td{
    border: 1px solid #000;
    padding: 10px 15px;
}
.sc_project-tongquan-video{
    width: 100%;
    height: 650px;
    margin-top: 30px;
}
#sc_project-vitri{
    background-color: var(--cl-single);
    color: var(--cl-singleText);
    padding-top: 50px;
}
#sc_project-vitri ul ul {
    padding-left: 55px;
}
.sc_project-vitri-bottom{
    color: #000;
    padding: 30px 0;
}
.wrapper_small {
    margin: auto;
    width: 1150px;
    max-width: 100%;
}
.title_gradient_2 {
    color: #06002E;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: bold;
}
.title_gradient_2 > span {
    background-image: linear-gradient(to right,#06002E,#EF9069,#D1AC9C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
    text-align: center;
    display: inline-block;
}
.title_block {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 30px;
}
.content_p * {
    max-width: 100%;
}
.img_pic_bd{
    width: 100%;
}
.content_p .wp-caption-text {
    text-align: center;
    font-size: 14px;
    font-style: italic;
    margin-top: -13px;
}
#sc_project-tienich,#sc_project-matbang{
    background-color: #F9F7ED;
}
.sc_bock-gallery{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.content_p ul li,.content_p ol li{
    margin-bottom: 10px;
}
.sc_modify-price {
    display: flex;
    gap: 15px;
}
.sc_modify-price > *{
    flex: 1;
}
.sc_modify-price .box{
    border: 1px solid #fbc613;
    background-color: #fff;
}
.sc_modify-price .box .top{
    background-color: #001f37;
    color: #fff;
    text-align: center;
    padding: 20px 15px;
}

.sc_modify-price .box .bottom {
    text-align: center;
    padding: 20px 40px;
}
.sc_modify-price .box .price {
    font-size: 25px;
    font-weight: 900;
    color: #555;
    letter-spacing: 2px;
}
.sc_modify-price .box .price sup {
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0;
    top: -10px;
}
.sc_modify-price .box .content {
    margin-top: 30px;
    margin-bottom: 30px;
}
.sc_modify-price .box svg {
    width: 20px;
    transform: translateY(3px);
}
.sc_modify-price .btn-baogia {
    display: inline-block;
    background-image: linear-gradient(180deg, #F69F05 0%, #f2295b 100%);
    border-radius: 4px;
    color: #fff;
    padding: 10px 25px;
    font-size: 16px;
    border: 1px groove;
    transition: all 0.5s ease-in-out 0s;
}
.sc_modify-price .btn-baogia:hover{
    background-image: linear-gradient(180deg, #FF0000 0%, #f2295b 100%);
    animation-name: scaleInFix;
    -webkit-animation-name: scaleInFix;
    -webkit-animation-duration: 0.4s;
}
@-webkit-keyframes scaleInFix {
    50%{
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
    }
    100%{
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
@keyframes scaleInFix {
    50%{
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
    }
    100%{
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
.sc_tabs-block-titles a {
    display: inline-block;
    background-color: #001F37;
    color: #fff;
    font-size: 16px;
    padding: 10px 25px;
    margin: 0 2px;
    color: #f8d292;
    border: 3px groove #f8d292;
    border-radius: 5px;
    font-weight: 600;
}
.sc_tabs-block-titles {
    text-align: center;
    margin-bottom: 30px;
}
.sc_tabs-block-titles a.active,.sc_tabs-block-titles a:hover{
    background-color: #AA0000;
}
.sc_tabs-block-content .item{
    display: none;
}
.sc_tabs-block-content .item.active{
    display: block;
}
.sc_tabs-block{
    margin-bottom: 30px;
}
.sc_bock-gallery img {
    width: 100%;
    object-fit: cover;
}
.sc_bock-gallery.collum-4 img {
    height: 230px;
}

#sc_project-lienhe {
    background-color: #020c30;
    color: #fff;
    display: flex;
    padding: 50px;
    gap: 130px;
}
#sc_project-lienhe .pic{
    flex: 0 0 40%;
}
#sc_project-lienhe .info{
    flex-grow: 1;
    font-size: 19px;
}
#sc_project-lienhe .info .title{
    margin-bottom: 30px;
}

#sc_project-lienhe input {
    line-height: 40px;
    border: 0;
    border-radius: 10px;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 10px;
}
#sc_project-lienhe textarea{
    border: 0;
    border-radius: 10px;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 10px;
    height: 100px;
}
#sc_project-lienhe input[type="submit"]{
    background-color: #F8D292;
    color: #020c30;
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #F8D292;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
}
#sc_project-lienhe input[type="submit"]:hover{
    transform: scale(0.9);
    border-color: #F8D292;
    background-color: #020c30;
    color: #fff;
}
.sc_introSite {
    text-align: center;
    line-height: 2;
    font-style: italic;
}
#sc_project-lienhe .info form {
    margin-top: 30px;
}
.sc_headerSingle {
    display: flex;
    background-color: #06002E;
    align-items: center;
    padding: 0 50px;
    gap: 30px;
    justify-content: space-between;
    border: 1px solid #e5bca4;
    position: sticky;
    top: 0;
    z-index: 100;
}
.sc_headerSingle a{
    color: #e5bca4;
}
.sc_headerSingle svg path{
    fill: #e5bca4;
}
.sc_headerSingle .support {
    display: flex;
    gap: 10px;
}
.singleLogo{
    width: 130px;
}
.sc_headerSingle svg {
    width: 16px;
}
.navTrigger {
    display: flex;
    gap: 35px;
}
.tWhite{
    color: #fff;
}
.navTrigger a {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}
#sc_project-giaban {
    background-color: #F9F7ED;
    padding: 15px 0;
}
.sc_project-giaban-section {
    display: flex;
    gap: 30px;
    align-items: center;
}
.sc_project-giaban-section > *{
    flex: 1;
}
.sc_project-giaban-wrapper .sc_tabs-block-content{
    background-color: var(--cl-single);
    padding: 15px;
    color: #fff;
}
.sc_project-giaban-wrapper .content{
    border: 4px double #FAB51C;
    padding: 15px;
}
.giaban_tasklist-items {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}
.giaban_tasklist-items .wap{
    border: 2px dotted #B30000;
    padding: 5px 10px;
    flex: 1;
    font-size: 15px;
}
.giaban_tasklist-btn {
    display: flex;
    gap: 5px;
    align-items: center;
    background-image: linear-gradient(180deg, #3A15FF 0%, #F22929 100%);
    border: 1px solid #EFD7BB;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 15px;
}
.giaban_tasklist-btn svg {
    width: 20px;
}
.giaban_tasklist-btn svg path{
    fill:#fff;
}
.sc_bock-gallery a.item {
    position: relative;
}
.sc_bock-gallery a.item:after{
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgb(0 0 0 / 20%);
    top: 0;
    left: 0;
    position: absolute;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    opacity: 0;
}
.sc_bock-gallery a.item:hover:after {
    opacity: 1;
}
.sc_project-list .item .pic img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}