body {
    overflow-y: hidden;
    color: #fff;
    background: #3a3f54;
}

#main {
    position: relative;
    height: 100vh;
}

#main .main-content {
    height: 100%;
    position: relative;
}

.section {
    height: 100%;
    width: 100%;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.section .module-header {
    flex: 0 0 40%;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 40%;
}

.section .module-header .title {
    font-family: Didot, serif;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 80px;
    color: #fff;
    line-height: 1;
}

.section .module-header .sub-menu {
    width: 200px;
    margin: 0 auto;
    margin-top: 40px;
}

.section .module-header .sub-menu li a {
    display: block;
    font-family: Vnf, serif;
    text-align: center;
    height: 26px;
    line-height: 30px;
    overflow: hidden;
    color: #fff;
}

.section .module-header .sub-menu li a.active {
    background: rgba(0, 0, 0, 0.8)!important;
}

.section .module-header .sub-menu li a:hover {
    background: rgba(0, 0, 0, 0.4);
}

.section .module-content {
    height: 100%;
    width: 100%;
}

.section-home {
    background-image: url("../images/bg-home.jpg");
}

.section-home ul {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 300px;
    transform: translateY(-50%);
    margin-top: -100px;
}

.section-home ul li a {
    font-family: Didot, serif;
    display: block;
    font-size: 50px;
    text-shadow: #000 -2px 0px 0px;
    line-height: 80px;
    color: #fff;
    text-align: center;
    transition: 0.5s;
    height: 75px;
}

.section-home ul li a:hover {
    background: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
}

.section-about {
    display: flex;
}

.section-about .module-content {
    flex: 0 0 60%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-about .module-content.show-content .btn-circle {
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

.section-about .module-content.show-content .text-info {
    top: 0;
    transition: 0.5s;
}

.section-about .module-content .text-info {
    position: absolute;
    height: 100%;
    width: 100%;
    top: calc(100% - 60px);
    left: 0;
    overflow: scroll;
    padding: 25px 50px 25px 25px;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.5s;
}

.section-about .module-content .text-info .title {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: Vnf, serif;
    color: #fff;
}

.section-about .module-content .text-info .s-content {
    color: #fff;
    font-size: 14px;
}

.section-about .module-content .btn-circle {
    width: 52px;
    height: 52px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    border: 1px solid #fff;
    cursor: pointer;
    transition: 0.5s;
}

.section-about .module-content .btn-circle::before {
    content: "";
    height: 1px;
    width: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
}

.section-about .module-content .btn-circle::after {
    content: "";
    width: 1px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
}

.section-project {
    display: flex;
    cursor: -webkit-grab;
    flex-wrap: nowrap;
    overflow-x: scroll;
}

.section-project .module-content {
    background: #000;
}

.section-project .module-content .cell {
    height: calc(100% / 3);
    flex-wrap: nowrap;

}

.section-project .module-content .cell:last-child {
    border-bottom: 1px solid #221713;
}

.item-image__all {
    min-width: 300px;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: inline-block;
    z-index: 0;
    border-top: 1px solid #221713;
    border-left: 1px solid #221713;
}

.item-image__all .image {
    display: block;
    height: 100%;
    filter: grayscale(1);
    transition: 0.5s;
}

.item-image__all .image img {
    height: auto;
}

.item-image__all .image-old {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    transform: translateY(100%);
    transition: 0.5s;
}

.item-image__all .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-left: 15px;
    padding-bottom: 5px;
    padding-top: 15px;
    transition: 0.5s;
    z-index: 1;
    flex-wrap: wrap;
}

.item-image__all .title > a:hover {
    color: #fff;
}

.item-image__all .title:hover {
    color: #fff;
}

.item-image__all .title .type {
    font-family: Vnf, serif;
    white-space: nowrap;
    font-size: 16px;
}

.item-image__all .title .name {
    font-family: Vnf, serif;
    font-size: 16px;
}

.item-image__all .title .name:hover,
.item-image__all .title .type:hover {
    color: #3a3f54;
}

.item-image__all .title .bg-hover {
    background-color: #b4842f;
    height: 100%;
    transform: translateY(100%);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.5s;
}

.item-image__all .title .social {
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

.item-image__all .title .social li {
    margin-right: 5px;
}

.item-image__all .title .social li:last-child {
    margin-right: 0;
}

.item-image__all .title .social a {
    padding: 5px;
    color: #fff;
    display: block;
}

.item-image__all .title .social a:hover {
    color: #3a3f54;
}

.item-image__all .title .social a .fa {
    font-size: 13px;
}

.item-image__all:hover .image {
    transform: translateY(-100%);
    transition: 0.5s;
}

.item-image__all:hover .image-old {
    transform: translateY(0%);
    transition: 0.5s;
}

.item-image__all:hover .bg-hover {
    height: 100%;
    transition: 0.5s;
    transform: translateY(0);
}

.item-image__all:hover .title .social {
    transition: 0.5s;
    visibility: visible;
    opacity: 1;
}

footer .list-lang {
    height: 100%;
}

.page-detail {
    background: #fff;
    max-width: 80%;
    height: 100%;
    position: relative;
    margin: auto;
    color: #000;
    padding: 30px 35px;
    overflow-y: scroll;
    z-index: 1;
}

.page-detail::-webkit-scrollbar {
    display: none;
}

.page-detail {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.smooth {
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -ms-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.close:hover img,
.close:focus img {
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.close img {
    width: 25px;
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    transform: rotateZ(0);
    height: 25px;
    object-fit: contain;
}

.form-contact input {
    height: 25px;
    border-radius: 0;
    margin-bottom: 15px;
}

.form-contact label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #fff;
    display: block;
}

.form-contact textarea {
    width: 100%;
    resize: none;
    margin-bottom: 15px;
}

.form-contact button {
    border: transparent;
    padding: 5px 30px;
    font-size: 14px;
    transition: 0.3s;
}
.form-contact button:hover{
    background: #b4842f;
    transition: 0.3s;
    color: #fff;
}

.section .module-header .title {
    padding: 0px 15px;
    cursor: context-menu;
}

.row .three {
    padding: 80px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
}

.hamburger .line {
    width: 50px;
    height: 5px;
    background-color: #ecf0f1;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

.slide-project__detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.slide-project__detail .close-view{
    display: block;
    width: 30px;
    height: 30px;
    position: fixed;
    top: 105px;
    right: 20px;
    z-index: 1;
    transition: 0.5s;
    cursor: pointer;
}
.slide-project__detail .close-view:hover{
    transform: rotate(90deg);
    transition: 0.5s;
}
.slide-project__detail .close-view::before{
    width: 100%;
    height: 1px;
    background: #fff;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.slide-project__detail .close-view::after{
    height: 100%;
    width: 1px;
    background: #fff;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}

.slide-project__detail .swiper-pagination {
    position: fixed;
    top: 106px;
    right: 70px;
    left: unset;
    width: auto;
    font-size: 25px;
}

.slide-project__detail .swiper-pagination span {
    font-family: Vnf, serif;
    font-size: 25px;
}

.slide-project__detail .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-project__detail .swiper-slide img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.slide-project__detail .info-project {
    position: absolute;
    bottom: -100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    transition: 0.8s;
    z-index: 2;
}

.slide-project__detail .info-project p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slide-project__detail .active{
    bottom: 0;
    transition: 0.8s;
}

.circle-slide {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid #fff;
    z-index: 1;
    position: fixed;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
}
.slide-project__detail .close_content{
    background: rgba(0,0,0,0.4);
}


.circle-slide::before {
    content: "";
    width: 1px;
    height: 30px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
}

.circle-slide::after {
    content: "";
    height: 1px;
    width: 30px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
}
.circle-slide:hover{
    background: rgba(0,0,0,0.4);
    transition: 0.5s;
}

.circle-slide.close_content::before {
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: 0.5s;
}

.circle-slide.close_content::after {
    transform: translate(-50%, -50%) rotate(135deg);
    transition: 0.5s;
}

.viewpre {
    position: fixed;
    width: 50px;
    height: 50px;
    border-left: 1px solid #999;
    border-bottom: 1px solid #999;
    left: 40px;
    top: 50%;
    margin-top: -25px;
    cursor: pointer;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(
            45deg
    );
    transform: rotate(
            45deg
    );
    z-index: 1;
}
.viewnext{
    position: fixed;
    width: 50px;
    height: 50px;
    border-right: 1px solid #999;
    border-top: 1px solid #999;
    right: 40px;
    top: 50%;
    margin-top: -25px;
    cursor: pointer;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(
            45deg
    );
    transform: rotate(
            45deg
    );
    z-index: 1;
}
