/* impoort pages */
/* Font */
@font-face {
    font-family: SVNFuturaBook;
    font-weight: 400;
    src: url(../fonts/SVN-Futura-Book.ttf) format("truetype");
}

@font-face {
    font-family: UTMBebas;
    font-weight: 400;
    src: url(../fonts/UTMBebas.ttf) format("truetype");
}

/* ANIMATION KEYFRAME
  -----------------------------*/
@-moz-keyframes rotate {
    0% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -moz-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-o-keyframes rotate {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-moz-keyframes countdowntiming {
    0% {
        -moz-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes countdowntiming {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-o-keyframes countdowntiming {
    0% {
        -o-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes countdowntiming {
    0% {
        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        -o-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-moz-keyframes zoomIn {
    0% {
        opacity: 0;
        -moz-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

@-o-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        -moz-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

.page-tien-ich {
    display: block;
}

.page-tien-ich .heading-title {
    margin: 0 0 30px 0;
    text-align: center;
}

.page-tien-ich .heading-title h2 {
    background: -webkit-gradient(linear, left top, right top, from(#9e6d31), color-stop(#997839), color-stop(#f1d97f), color-stop(#9e6d31), color-stop(#cda250), to(#f1d97f));
    background: -webkit-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: -moz-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: -o-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: linear-gradient(to right, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    display: inline-block;
    font-family: UTMBebas, Arial, Helvetica, sans-serif;
    font-size: 50px;
    margin: 0;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-tien-ich .heading-title h3 {
    font-family: UTMBebas, Arial, Helvetica, sans-serif;
    font-size: 50px;
    color: #004d71;
    display: block;
    margin-top: 10px;
}

.page-tien-ich .heading-title.white h3 {
    color: #fff;
}

.page-tien-ich .tab-content {
    position: relative;
}

.page-tien-ich .tab-content>.tab-pane {
    display: block;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    width: 100%;
    z-index: 3;
    top: 0;
    left: 0;
}

.page-tien-ich .tab-content>.tab-pane.active {
    left: 0;
    opacity: 1;
    position: relative;
    top: 0;
    visibility: visible;
    z-index: 888;
}

.page-tien-ich .page-row {
    margin: 0 0 75px 0;
}

.page-tien-ich .row-1 {
    background: url(../images/tien-ich/icon1.png) left 115% no-repeat;
    padding: 0;
}

.page-tien-ich .row-1 .image {
    margin: 0 0 50px 0;
    text-align: center;
}

.page-tien-ich .row-1 .image img {
    width: 100%;
}

.page-tien-ich .row-1 .box-text {
    padding: 0 15%;
}

.page-tien-ich .row-1 .box-text h4 {
    font-size: 1.75em;
    color: #0b1f24;
    margin: 0 0 45px 0;
    text-align: center;
    text-transform: uppercase;
    font-family: Gotham, Arial, Helvetica, sans-serif;
}

.page-tien-ich .row-1 .box-text .danh-sach {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.page-tien-ich .row-1 .box-text .danh-sach .box {
    margin: 0 0 14px 0;
    position: relative;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

.page-tien-ich .row-1 .box-text .danh-sach .box:after {
    clear: both;
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.page-tien-ich .row-1 .box-text .danh-sach .box:first-child span {
    background: #cba544;
}

.page-tien-ich .row-1 .box-text .danh-sach span {
    background: #124a5a;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    color: #fff;
    font-size: 14px;
    height: 21px;
    line-height: 21px;
    margin-right: 5px;
    text-align: center;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    width: 21px;
    float: left;
    display: block;
    margin-right: 10px;
}

.page-tien-ich .row-2 {
    padding-top: 50px;
    color: #fff;
    position: relative;
    margin: 0;
}

.page-tien-ich .row-2:before {
    content: "";
    display: block;
    z-index: -2;
    position: absolute;
    background: url(../images/tien-ich/tien-ich-row2-bg.jpg) top left;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    top: 0;
    left: 0;
    right: 0;
    height: 75%;
}

.page-tien-ich .row-2 .heading-title.white {
    position: relative;
}

.page-tien-ich .row-2 .heading-title.white:after {
    content: "";
    display: block;
    width: 200px;
    height: 2px;
    margin: 40px auto 0 auto;
    background: #cba544;
}

.page-tien-ich .row-2 .heading-title,
.page-tien-ich .row-2 .nav-tabs,
.page-tien-ich .row-2 .description {
    padding: 0 15%;
}

.page-tien-ich .row-2 .content {
    padding-top: 15px;
}

.page-tien-ich .row-2 .nav-tabs {
    border: none;
    margin: 0 0 45px 0;
    text-align: center;
}

.page-tien-ich .row-2 .nav-tabs>li {
    display: inline-block;
    float: none;
    font-size: 14px;
    position: relative;
    text-transform: uppercase;
    vertical-align: middle;
}

.page-tien-ich .row-2 .nav-tabs>li:before {
    background: #d1d1d1;
    content: '';
    display: block;
    height: 23px;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
}

.page-tien-ich .row-2 .nav-tabs>li:first-child:before {
    display: none;
}

.page-tien-ich .row-2 .nav-tabs>li.active>a {
    pointer-events: none;
    color: #cba544;
}

.page-tien-ich .row-2 .nav-tabs>li>a {
    background: none;
    border: none;
    /* override */
    color: #fff;
    margin: 0;
    font-size: 1.215em;
    padding: 0 20px;
}

.page-tien-ich .row-2 .nav-tabs>li>a:hover {
    color: #caa34a;
}

.page-tien-ich .row-2 .description {
    margin: 0 0 50px 0;
    text-align: center;
}

.page-tien-ich .row-2 .box-text {
    line-height: 2;
    margin: 0;
    width: 70%;
}

.page-tien-ich .row-2 .box-text .box-text-inner {
    padding-bottom: 50px;
    padding-left: 30px;
    position: relative;
}

.page-tien-ich .row-2 .box-text .box-text-inner:before {
    background: #cba544;
    bottom: 0;
    content: ' ';
    left: 0;
    position: absolute;
    top: -4px;
    width: 4px;
}

.page-tien-ich .row-2 .swiper-pagination {
    position: static;
    margin-top: 30px;
}

.page-tien-ich .row-2 .swiper-pagination .swiper-pagination-bullet {
    background: #124a5a;
    border: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    content: '';
    cursor: pointer;
    display: inline-block;
    height: 22px;
    margin: 0 5px;
    opacity: 1;
    outline: none;
    position: relative;
    -webkit-transition: .15s ease;
    -o-transition: .15s ease;
    -moz-transition: .15s ease;
    transition: .15s ease;
    vertical-align: middle;
    width: 22px;
}

.page-tien-ich .row-2 .swiper-pagination .swiper-pagination-bullet:hover,
.page-tien-ich .row-2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #cba544;
}

.page-tien-ich .row-2 .row-2-slider {
    overflow: hidden;
    margin: 0 0 45px 0;
}

.page-tien-ich .row-2 .row-2-slider .swiper-slide {
    position: relative;
    z-index: 3;
    -webkit-transform: scale(1, 0.9) !important;
    -moz-transform: scale(1, 0.9) !important;
    -ms-transform: scale(1, 0.9) !important;
    -o-transform: scale(1, 0.9) !important;
    transform: scale(1, 0.9) !important;
}

.page-tien-ich .row-2 .row-2-slider .swiper-slide .slide-inner {
    position: relative;
}

.page-tien-ich .row-2 .row-2-slider .swiper-slide .slide-inner .text {
    padding: 60px 6% 30px 6%;
    color: #fff;
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#012c45), color-stop(#266886), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, #012c45, #266886, rgba(0, 0, 0, 0));
    background-image: -moz-linear-gradient(bottom, #012c45, #266886, rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(bottom, #012c45, #266886, rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, #012c45, #266886, rgba(0, 0, 0, 0));
}

.page-tien-ich .row-2 .row-2-slider .swiper-slide-next {
    position: relative;
    z-index: 5;
    -webkit-transform: scale(1, 1) !important;
    -moz-transform: scale(1, 1) !important;
    -ms-transform: scale(1, 1) !important;
    -o-transform: scale(1, 1) !important;
    transform: scale(1, 1) !important;
}

.page-tien-ich .row-2 .row-2-slider .swiper-slide-next img {
    width: 100%;
}

.page-tien-ich .row-2 .row-2-slider .swiper-slide-next .slide-inner .text {
    display: block;
}

.page-tien-ich .row-2 .row-2-slider .slider-inner {
    margin: 0 -60%;
}

.page-tien-ich .row-3 {
    color: #333;
    display: none;
    text-align: center;
    margin: 0;
}

.page-tien-ich .row-3 .heading-title,
.page-tien-ich .row-3 .description {
    padding: 0 15%;
}

.page-tien-ich .row-3 .description {
    margin: 0 0 70px 0;
}

.page-tien-ich .row-3 .image {
    margin: 0 0 30px 0;
}

.page-tien-ich .row-3 .text {
    padding: 0 15%;
    margin: 0 0 85px 0;
}

.page-tien-ich .row-3 .text h2 {
    margin: 0 0 20px 0;
    color: #004d71;
    display: block;
    font-family: UTMBebas, Arial, Helvetica, sans-serif;
    font-size: 40px;
}

.page-tien-ich .row-3 .text h4 {
    color: inherit;
    text-transform: uppercase;
    font-size: 1em;
    font-family: Gotham, Arial, Helvetica, sans-serif;
}

/* RESPONSIVE
  -----------------------------*/
@media screen and (max-width: 1599px) {

    .page-tien-ich .heading-title h2,
    .page-tien-ich .heading-title h3 {
        font-size: 45px;
    }
}

@media screen and (max-width: 1439px) {
    .page-tien-ich .row-1 .box-text {
        padding: 0 12%;
    }
}

@media screen and (max-width: 1199px) {
    .page-tien-ich .row-2 .box-img {
        margin-top: 0;
    }

    .page-tien-ich .row-2 .box-text {
        margin: 0 0 50px 0;
    }

    .page-tien-ich .row-2 .box-text .box-text-inner {
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 991px) {

    .page-tien-ich .heading-title h2,
    .page-tien-ich .heading-title h3 {
        font-size: 40px;
    }

    .page-tien-ich .heading-title h3 {
        margin: 15px 0 0 0;
    }

    .page-tien-ich .row-1 {
        padding: 0 15px;
    }

    .page-tien-ich .row-1 .box-text .danh-sach {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }

    .page-tien-ich .page-tien-ich .row-2 .heading-title,
    .page-tien-ich .page-tien-ich .row-2 .nav-tabs,
    .page-tien-ich .page-tien-ich .row-2 .description {
        padding: 0 15px;
    }
}

@media screen and (max-width: 767px) {
    .page-tien-ich .row-1 .box-text {
        padding: 0;
    }

    .page-tien-ich .row-1 .box-text h4 {
        font-size: 1.5em;
    }

    .page-tien-ich .row-2 .heading-title,
    .page-tien-ich .row-2 .nav-tabs,
    .page-tien-ich .row-2 .description {
        padding: 0 15px;
    }

    .page-tien-ich .row-3 .heading-title,
    .page-tien-ich .row-3 .description {
        padding: 0 15px;
    }

    .page-tien-ich .row-3 .text {
        padding: 0 15px;
        margin: 0 0 40px 0;
    }
}

@media screen and (max-width: 639px) {

    .page-tien-ich .heading-title h2,
    .page-tien-ich .heading-title h3 {
        font-size: 25px;
    }

    .page-tien-ich .row-1 {
        background: none;
    }

    .page-tien-ich .row-1 .box-text h4 {
        font-size: 1.2em;
    }

    .page-tien-ich .row-2 .nav-tabs>li {
        width: 100%;
        margin: 0 0 15px 0;
    }

    .page-tien-ich .row-2 .nav-tabs>li:last-child {
        margin: 0;
    }

    .page-tien-ich .row-2 .nav-tabs>li:before {
        display: none;
    }

    .page-tien-ich .row-2 .row-2-slider .swiper-slide-next .slide-inner .text {
        display: none;
    }
}

@media screen and (max-width: 479px) {
    .page-tien-ich .row-1 .box-text .danh-sach {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}

/* Font */
@font-face {
    font-family: SVNFuturaBook;
    font-weight: 400;
    src: url(../fonts/SVN-Futura-Book.ttf) format("truetype");
}

@font-face {
    font-family: UTMBebas;
    font-weight: 400;
    src: url(../fonts/UTMBebas.ttf) format("truetype");
}

/* ANIMATION KEYFRAME
  -----------------------------*/
@-moz-keyframes rotate {
    0% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -moz-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-moz-keyframes countdowntiming {
    0% {
        -moz-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes countdowntiming {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes countdowntiming {
    0% {
        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        -o-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-moz-keyframes zoomIn {
    0% {
        opacity: 0;
        -moz-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        -moz-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

.page-lien-he {
    display: block;
    padding-bottom: 30px;
}

.page-lien-he .page-title {
    margin: 0 0 55px 0;
    text-align: center;
}

.page-lien-he .page-title h2 {
    color: #cba544;
    font-size: 50px;
    font-weight: normal;
    line-height: .9;
    margin: 0 0 15px 0;
}

.page-lien-he .page-title h3 {
    color: #333;
    font-family: UTMBebas, Arial, Helvetica, sans-serif;
    font-size: 30px;
    line-height: .9;
    margin: 0;
}

.page-lien-he .page-row {
    margin: 0 0 65px 0;
    padding: 0 8%;
}

.page-lien-he .row-1 {
    margin: 0;
}

.page-lien-he .row-1 .box-text {
    color: #7f8992;
    padding-bottom: 30px;
    padding-left: 30px;
    position: relative;
}

.page-lien-he .row-1 .box-text:before {
    background: #cba544;
    bottom: 0;
    content: ' ';
    left: 0;
    position: absolute;
    top: -4px;
    width: 4px;
}

.page-lien-he .row-1 .box-text>div {
    margin: 0 0 20px 0;
}

.page-lien-he .row-1 .box-text .title {
    margin-bottom: 25px;
}

.page-lien-he .row-1 .box-text h4 {
    color: #333;
    font-size: 15px;
}

.page-lien-he .row-1 .box-text strong {
    color: #333;
    font-weight: 600;
    margin: 0 10px 0 0;
}

.page-lien-he .row-1 .box-text ul {
    list-style-type: none;
    margin: 0 -15px;
    padding: 0;
}

.page-lien-he .row-1 .box-text ul:after {
    clear: both;
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.page-lien-he .row-1 .box-text ul li {
    float: left;
    padding: 0 15px;
    width: 50%;
    margin: 0 0 15px 0;
}

.page-lien-he .row-2 {
    background: url(../images/tien-ich/bg-2.png) no-repeat bottom left;
    padding: 0;
}

.page-lien-he .row-2 .map:after {
    clear: both;
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.page-lien-he .row-2 .map-inner {
    -webkit-box-shadow: 0 13px 33.25px 1.75px rgba(6, 6, 6, 0.11);
    -moz-box-shadow: 0 13px 33.25px 1.75px rgba(6, 6, 6, 0.11);
    box-shadow: 0 13px 33.25px 1.75px rgba(6, 6, 6, 0.11);
    float: right;
    position: relative;
    width: 80%;
}

.page-lien-he .row-2 .map-inner img {
    width: 100%;
}

.page-lien-he .row-2 .map-inner img.icon {
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: auto;
    z-index: 9;
}

.page-lien-he .row-3 .box-dang-ky {
    padding-bottom: 50px;
    padding-left: 30px;
    position: relative;
}

.page-lien-he .row-3 .box-dang-ky:before {
    background: #cba544;
    bottom: 0;
    content: ' ';
    left: 0;
    position: absolute;
    top: -4px;
    width: 4px;
}

.page-lien-he .row-3 .box-dang-ky h4 {
    font-size: 15px;
    margin-bottom: 15px;
}

.page-lien-he .row-3 #form-page-lh {
    padding-right: 220px;
    position: relative;
}

.page-lien-he .row-3 #form-page-lh input {
    border: none;
    /* override */
    border-bottom: 1px solid #ebebeb;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    /* override */
    height: 44px;
    line-height: 43px;
    outline: none;
    /* override */
    padding: 0;
    /* override */
}

.page-lien-he .row-3 #form-page-lh .submit {
    background: #cba544;
    bottom: 0;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-family: UTMBebas, Arial, Helvetica, sans-serif;
    font-weight: normal;
    height: 44px;
    left: auto;
    line-height: 44px;
    padding: 0 15px;
    position: absolute;
    right: 0;
    text-align: center;
    top: auto;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    width: 206px;
    z-index: 9;
}

.page-lien-he .row-3 #form-page-lh .submit:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    width: 44px;
    height: 15px;
    background: url(../images/lien-he/icon-right.png) center center no-repeat;
}

.page-lien-he .row-3 #form-page-lh .submit:hover {
    background: #333;
}

@media screen and (min-width: 992px) {
    .page-lien-he .page-row {
        padding: 0 15px;
    }

    .page-lien-he .row-1 .box-text ul {
        list-style-type: none;
        margin: 0 -15px;
    }

    .page-lien-he .row-1 .box-text ul li:first-child {
        width: 32%;
    }

    .page-lien-he .row-1 .box-text ul li:nth-child(2) {
        width: 21%;
    }

    .page-lien-he .row-1 .box-text ul li:nth-child(3) {
        width: 25%;
    }

    .page-lien-he .row-1 .box-text ul li:nth-child(4) {
        width: 22%;
    }
}

@media screen and (max-width: 991px) {
    .page-lien-he .page-row {
        padding: 0 15px;
    }

    .page-lien-he .page-title {
        margin: 0 0 40px 0;
    }

    .page-lien-he .page-title h2 {
        font-size: 42px;
    }

    .page-lien-he .page-title h3 {
        font-size: 25px;
    }

    .page-lien-he .row-2 .map-inner img.icon {
        width: 140px;
    }
}

@media screen and (max-width: 767px) {
    .page-lien-he .page-row {
        margin: 0 0 50px 0;
    }

    .page-lien-he .row-1 {
        margin: 0 0 50px 0;
    }

    .page-lien-he .row-2 {
        background: none;
    }

    .page-lien-he .row-2 .map-inner {
        width: 100%;
    }

    .page-lien-he .row-2 img.icon {
        display: none;
    }
}

@media screen and (max-width: 639px) {
    .page-lien-he .page-title h2 {
        font-size: 35px;
    }

    .page-lien-he .page-title h3 {
        font-size: 21px;
    }

    .page-lien-he .row-1 .box-text ul li {
        width: 100%;
    }

    .page-lien-he .row-3 #form-page-lh {
        padding: 0;
    }

    .page-lien-he .row-3 #form-page-lh .submit {
        position: static;
        margin: 25px 0 0 0;
    }
}

@media screen and (max-width: 479px) {
    .page-title h2 {
        font-size: 30px;
    }

    .page-title h3 {
        font-size: 18px;
    }
}

/* Font */
@font-face {
    font-family: SVNFuturaBook;
    font-weight: 400;
    src: url(../fonts/SVN-Futura-Book.ttf) format("truetype");
}

@font-face {
    font-family: UTMBebas;
    font-weight: 400;
    src: url(../fonts/UTMBebas.ttf) format("truetype");
}

/* ANIMATION KEYFRAME
  -----------------------------*/
@-moz-keyframes rotate {
    0% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -moz-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-moz-keyframes countdowntiming {
    0% {
        -moz-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes countdowntiming {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes countdowntiming {
    0% {
        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        -o-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-moz-keyframes zoomIn {
    0% {
        opacity: 0;
        -moz-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        -moz-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

.page-tong-quan {
    display: block;
}

.page-tong-quan .page-row {
    margin: 0 0 70px 0;
}

.page-tong-quan .heading-title {
    margin: 0 0 30px 0;
    text-align: center;
}

.page-tong-quan .heading-title h2 {
    background: -webkit-gradient(linear, left top, right top, from(#9e6d31), color-stop(#997839), color-stop(#f1d97f), color-stop(#9e6d31), color-stop(#cda250), to(#f1d97f));
    background: -webkit-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: -moz-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: -o-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: linear-gradient(to right, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    display: inline-block;
    font-family: UTMBebas, Arial, Helvetica, sans-serif;
    font-size: 50px;
    margin: 0;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-tong-quan .heading-title h3 {
    color: #004d71;
    display: block;
    font-family: UTMBebas, Arial, Helvetica, sans-serif;
    font-size: 50px;
    margin-top: 10px;
}

.page-tong-quan .row-1 {
    background: url(../images/tong-quan/icon1.png) left 10% no-repeat;
}

.page-tong-quan .row-1 .heading-title ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.page-tong-quan .row-1 .heading-title ul:after {
    clear: both;
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.page-tong-quan .row-1 .heading-title li {
    float: left;
    list-style-type: none;
    padding: 0 20px;
    position: relative;
}

.page-tong-quan .row-1 .heading-title li:before {
    background: #333;
    content: '';
    display: block;
    height: 40px;
    left: auto;
    position: absolute;
    right: -3px;
    top: 12px;
    width: 5px;
}

.page-tong-quan .row-1 .heading-title li:first-child {
    padding-left: 0;
}

.custom-p{
  width: 70%;
  padding: 0 20px;
}
.page-tong-quan .row-1 .heading-title li:first-child a {
    background: -webkit-gradient(linear, left top, right top, from(#9e6d31), color-stop(#997839), color-stop(#f1d97f), color-stop(#9e6d31), color-stop(#cda250), to(#f1d97f));
    background: -webkit-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: -moz-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: -o-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: linear-gradient(to right, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    color: #333;
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
}

.page-tong-quan .row-1 .heading-title li:first-child a:hover {
    color: #333;
}

.page-tong-quan .row-1 .heading-title li:last-child {
    padding-right: 0;
}

.page-tong-quan .row-1 .heading-title li:last-child:before {
    display: none;
}

.page-tong-quan .row-1 .heading-title li h3 {
    margin: 0;
}

.page-tong-quan .row-1 .heading-title li a {
    color: #333;
    display: inline-block;
    text-decoration: none;
}

.page-tong-quan .row-1 .heading-title li a:hover {
    color: #cba544;
}

.page-tong-quan .row-1 .left-side {
    float: left;
    padding-right: 15px;
    width: 50%;
}

.page-tong-quan .row-1 .left-side .text {
    margin: 0 0 100px 0;
    padding-left: 25%;
    text-align: justify;
}

.page-tong-quan .row-1 .right-side {
    float: right;
    padding-left: 15px;
    width: 50%;
}

.page-tong-quan .row-1 .right-side .text {
    margin: 0;
    padding-right: 15%;
    text-align: justify;
}

.page-tong-quan .row-1 .right-side .image {
    margin: 0 0 45px 0;
}

.page-tong-quan .row-2 {
    color: #fff;
    text-align: center;
}

.page-tong-quan .row-2 .page-row-content {
    background: url(../images/tong-quan/tongquan-row2-bg.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-bottom: 50px;
    padding-top: 50px;
}

.page-tong-quan .row-2 .page-row-content:after {
    clear: both;
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.page-tong-quan .row-2 .page-row-content .content {
    float: left;
    margin-bottom: -50px;
    width: 100%;
}

.page-tong-quan .row-2 .heading-title,
.page-tong-quan .row-2 .description {
    padding: 0 22%;
}

.page-tong-quan .row-2 .heading-title h3 {
    color: #fff;
}

.page-tong-quan .row-2 .description {
    margin: 0 0 50px 0;
}

.page-tong-quan .row-3 {
    margin: 0;
    text-align: center;
}

.page-tong-quan .row-3 .heading-title,
.page-tong-quan .row-3 .description,
.page-tong-quan .row-3 .text {
    padding: 0 15%;
}

.page-tong-quan .row-3 .description {
    margin: 0 0 70px 0;
}

.page-tong-quan .row-3 .image {
    margin: 0 0 35px 0;
}

.page-tong-quan .row-3 .text {
    margin: 0 0 75px 0;
}

.page-tong-quan .row-3 .text h4 {
    font-family: Gotham, Arial, Helvetica, sans-serif;
    font-size: 1em;
}

.page-tong-quan .row-3 .text h2 {
    margin: 0 0 20px 0;
    color: #004d71;
    display: block;
    font-family: UTMBebas, Arial, Helvetica, sans-serif;
    font-size: 48px;
}

/* RESPONSIVE
  -----------------------------*/
@media screen and (max-width: 991px) {

    .page-tong-quan .heading-title h2,
    .page-tong-quan .heading-title h3 {
        font-size: 35px;
    }

    .page-tong-quan .heading-title h3 {
        margin: 15px 0 0 0;
    }

    .page-tong-quan .page-row {
        margin: 0 0 35px 0;
    }

    .page-tong-quan .row-1 {
        background: none;
        padding: 0 15px;
    }

    .page-tong-quan .row-1 .heading-title li::before {
        top: 7px;
    }

    .page-tong-quan .row-1 .left-side {
        margin: 0 0 50px 0;
        padding: 0;
        width: 100%;
    }

    .page-tong-quan .row-1 .left-side .text {
        margin: 0 0 35px 0;
        padding: 0;
    }

    .page-tong-quan .row-1 .right-side {
        padding: 0;
        width: 100%;
    }

    .page-tong-quan .row-1 .right-side .text {
        margin: 0 0 35px 0;
        padding: 0;
    }

    .page-tong-quan .row-2 .heading-title,
    .page-tong-quan .row-2 .description {
        padding: 0 15px;
    }

    .page-tong-quan .row-2 .description {
        text-align: justify;
    }

    .page-tong-quan .row-3 .heading-title,
    .page-tong-quan .row-3 .description,
    .page-tong-quan .row-3 .text {
        padding: 0 15px;
    }

    .page-tong-quan .row-3 .description {
        text-align: justify;
    }
}

@media screen and (max-width: 639px) {

    .page-tong-quan .heading-title h2,
    .page-tong-quan .heading-title h3 {
        font-size: 30px;
    }

    .page-tong-quan .row-1 .heading-title ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .page-tong-quan .row-1 .heading-title li {
        /* margin: 0 0 15px 0; */
        padding: 0;
        /* width: 100%; */
        width: max-content;
        margin: 0 10px;
    }

    .page-tong-quan .row-1 .heading-title li:before {
        display: none;
    }

    .page-tong-quan .row-1 .heading-title li:last-child {
        margin: 0;
    }
}

/* Font */
@font-face {
    font-family: SVNFuturaBook;
    font-weight: 400;
    src: url(../fonts/SVN-Futura-Book.ttf) format("truetype");
}

@font-face {
    font-family: UTMBebas;
    font-weight: 400;
    src: url(../fonts/UTMBebas.ttf) format("truetype");
}

/* ANIMATION KEYFRAME
  -----------------------------*/
@-moz-keyframes rotate {
    0% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -moz-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-moz-keyframes countdowntiming {
    0% {
        -moz-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes countdowntiming {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes countdowntiming {
    0% {
        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        -o-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-moz-keyframes zoomIn {
    0% {
        opacity: 0;
        -moz-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        -moz-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

.page.page-404 {
    display: block;
}

.page.page-404 .top-pane {
    margin: 0;
}

.page.page-404 .page-content {
    float: left;
    width: 100%;
    padding: 80px 0;
}

/* Font */
@font-face {
    font-family: SVNFuturaBook;
    font-weight: 400;
    src: url(../fonts/SVN-Futura-Book.ttf) format("truetype");
}

@font-face {
    font-family: UTMBebas;
    font-weight: 400;
    src: url(../fonts/UTMBebas.ttf) format("truetype");
}

/* ANIMATION KEYFRAME
  -----------------------------*/
@-moz-keyframes rotate {
    0% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -moz-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-moz-keyframes countdowntiming {
    0% {
        -moz-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes countdowntiming {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes countdowntiming {
    0% {
        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        -o-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-moz-keyframes zoomIn {
    0% {
        opacity: 0;
        -moz-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        -moz-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }
}

.page-chu-dau-tu {
    display: block;
}

.page-chu-dau-tu .page-row {
    margin: 0 0 70px 0;
}

.page-chu-dau-tu .heading-title {
    margin: 0 0 50px 0;
    text-align: center;
}

.page-chu-dau-tu .heading-title h2 {
    background: -webkit-gradient(linear, left top, right top, from(#9e6d31), color-stop(#997839), color-stop(#f1d97f), color-stop(#9e6d31), color-stop(#cda250), to(#f1d97f));
    background: -webkit-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: -moz-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: -o-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: linear-gradient(to right, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    display: inline-block;
    font-family: UTMBebas, Arial, Helvetica, sans-serif;
    font-size: 50px;
    margin: 0;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-chu-dau-tu .heading-title h3 {
    color: #004d71;
    display: block;
    font-family: UTMBebas, Arial, Helvetica, sans-serif;
    font-size: 50px;
    margin-top: 22px;
}

.page-chu-dau-tu .heading-title ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.page-chu-dau-tu .heading-title ul:after {
    clear: both;
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.page-chu-dau-tu .heading-title li {
    float: left;
    list-style-type: none;
    padding: 0 20px;
    position: relative;
}

.page-chu-dau-tu .heading-title li:before {
    background: #333;
    content: '';
    display: block;
    height: 40px;
    left: auto;
    position: absolute;
    right: -3px;
    top: 12px;
    width: 5px;
}

.page-chu-dau-tu .heading-title li:first-child {
    padding-left: 0;
}

.page-chu-dau-tu .heading-title li:last-child {
    padding-right: 0;
}

.page-chu-dau-tu .heading-title li:last-child a {
    background: -webkit-gradient(linear, left top, right top, from(#9e6d31), color-stop(#997839), color-stop(#f1d97f), color-stop(#9e6d31), color-stop(#cda250), to(#f1d97f));
    background: -webkit-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: -moz-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: -o-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: linear-gradient(to right, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    color: #333;
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-chu-dau-tu .heading-title li:last-child a:hover {
    color: #333;
}

.page-chu-dau-tu .heading-title li:last-child:before {
    display: none;
}

.page-chu-dau-tu .heading-title li:last-child a {
    pointer-events: none;
}

.page-chu-dau-tu .heading-title li h3 {
    margin: 0;
}

.page-chu-dau-tu .heading-title li a {
    color: #333;
    display: inline-block;
    text-decoration: none;
}

.page-chu-dau-tu .heading-title li a:hover {
    color: #cba544;
}

.page-chu-dau-tu .page-content {
    padding: 0 14% 70px 14%;
}

.page-chu-dau-tu h2 {
    display: inline-block;
    font-family: UTMBebas, Arial, Helvetica, sans-serif;
    font-size: 30px;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    color: #004d71;
}

/* RESPONSIVE
  -----------------------------*/
@media screen and (max-width: 991px) {
    .custom-p{
      width: 100%;
      padding: 20px 0 0;
    }
    .page-tien-ich .row-1 .image{
      margin: 0 0 30px 0;
    }
    .page-tien-ich .page-row {
      margin: 0 0 40px 0;
    }

    .page-chu-dau-tu .heading-title h2,
    .page-chu-dau-tu .heading-title h3 {
        font-size: 40px;
    }

    .page-chu-dau-tu .heading-title h3 {
        margin: 15px 0 0 0;
    }
}

@media screen and (max-width: 767px) {
    .page-chu-dau-tu .page-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 639px) {

    .page-chu-dau-tu .heading-title h2,
    .page-chu-dau-tu .heading-title h3 {
        font-size: 35px;
    }

    .page-chu-dau-tu .heading-title ul {
        width: 100%;
    }

    .page-chu-dau-tu .heading-title li {
        margin: 0 0 15px 0;
        padding: 0;
        width: 100%;
    }

    .page-chu-dau-tu .heading-title li:before {
        display: none;
    }

    .page-chu-dau-tu .heading-title li:last-child {
        margin: 0;
    }
}

.page {
    float: left;
    width: 100%;
    position: relative;
}

.page .pagenavi {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.page .pagenavi .page-numbers {
    display: inline-block;
    background: #fff;
    padding: 10px 20px;
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0px 5px;
    font-size: 14px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    color: #000;
    font-weight: 500;
    vertical-align: middle;
}

.page .pagenavi .page-numbers:hover {
    background: #E6D067;
    color: #fff;
}

.page .pagenavi .page-numbers.current {
    background: #E6D067;
    color: #fff;
}

.page .pagenavi .page-numbers.prev {
    width: 48px;
    height: 45px;
    background: #fff url(../images/trang-chu/prev-icon-2.png) no-repeat center center;
    -webkit-background-size: 32px 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

.page .pagenavi .page-numbers.next {
    width: 48px;
    height: 45px;
    background: #e6d067 url(../images/trang-chu/next-icon.png) no-repeat center center;
    -webkit-background-size: 32px 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

.page .top-pane {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    margin-bottom: 50px;
}

.page .top-pane .text-box {
    background: url(../images/page-banner-1.jpg) no-repeat top left;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 40%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

.page .top-pane .text-box .text-box-inner {
    position: absolute;
    bottom: 18%;
    right: 10%;
    left: 0;
    right: 0;
    padding-left: 32%;
    padding-right: 15px;
}

.page .top-pane .text-box .break-crumb {
    color: #fff;
    font-size: 14px;
    margin: 0 0 15px 0;
    font-family: Gotham;
}

.page .top-pane .text-box .break-crumb a {
    color: #fff;
    display: inline-block;
}

.page .top-pane .text-box .break-crumb a:hover {
    text-decoration: underline;
}

.page .top-pane .text-box .break-crumb span {
    display: inline-block;
    margin-left: 0;
}

.page .top-pane .text-box .title {
    margin: 0;
    font-size: 75px;
    color: #fff;
    font-family: UTMBebas;
    line-height: 1;
}

.page .top-pane .img-box {
    float: right;
    width: 60%;
}

.page .top-pane .img-box img {
    width: 100%;
}

.page .page-content {
    float: left;
    width: 100%;
}

.page .page-row {
    float: left;
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.page.page-gioi-thieu {
    line-height: 1.95;
}

.page.page-gioi-thieu .page-gioi-thieu-title {
    margin: 0 0 30px 0;
    text-align: center;
    color: #caa34a;
    font-family: Baskerville;
    font-size: 50px;
    line-height: 1.2;
}

.page.page-gioi-thieu .page-gioi-thieu-title span {
    font-size: 36px;
    display: block;
    font-family: MontserratSemiBold;
    color: #0f4656;
}

.page.page-gioi-thieu .top-pane {
    margin-bottom: 115px;
}

.page.page-gioi-thieu .row-1 {
    margin: 0 -20px 60px -20px;
    width: auto;
}

.page.page-gioi-thieu .row-1:after {
    clear: both;
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.page.page-gioi-thieu .row-1 .page-col {
    float: left;
    width: 50%;
    padding: 0 20px;
}

.page.page-gioi-thieu .row-1 .page-col .text-box {
    float: left;
    width: 100%;
    padding: 0 0 0 17%;
    text-align: justify;
    margin-bottom: 35px;
    font-size: 15px;
}

.page.page-gioi-thieu .row-1 .page-col .text-box .text-box-inner {
    padding-left: 25px;
    position: relative;
    padding-bottom: 60px;
}

.page.page-gioi-thieu .row-1 .page-col .text-box .text-box-inner:before {
    content: ' ';
    position: absolute;
    top: 10px;
    left: 0;
    bottom: 0;
    width: 4px;
    background: #caa34a;
}

.page.page-gioi-thieu .row-1 .page-col .img-box {
    float: left;
    width: 100%;
}

.page.page-gioi-thieu .row-1 .page-col .img-box img {
    width: 100%;
}

.page.page-gioi-thieu .row-1 .page-col:nth-child(2n) {
    margin-right: 0px;
}

.page.page-gioi-thieu .row-1 .page-col:nth-child(2n) .img-box {
    padding-top: 50px;
}

.page.page-gioi-thieu .row-1 .page-col:nth-child(2n) .text-box {
    margin-top: 40px;
    margin-bottom: 0px;
    padding: 0 17% 0 0;
}

.page.page-gioi-thieu .row-2 {
    margin: 0 0 85px 0;
}

.page.page-gioi-thieu .row-2 .text-box {
    width: 100%;
}

.page.page-gioi-thieu .row-2 .text-box .des {
    width: 72%;
    padding-left: 8.5%;
    font-size: 15px;
    text-align: justify;
    margin-bottom: 15px;
}

.page.page-gioi-thieu .row-2 .text-box .des .des-inner {
    position: relative;
    padding-bottom: 60px;
    padding-left: 25px;
}

.page.page-gioi-thieu .row-2 .text-box .des .des-inner:before {
    content: ' ';
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    width: 4px;
    background: #caa34a;
}

.page.page-gioi-thieu .row-2 .img-box {
    margin-top: -60px;
}

.page.page-gioi-thieu .row-2 .img-box:after {
    clear: both;
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.page.page-gioi-thieu .row-2 .img-box-inner {
    position: relative;
    width: 70%;
    float: right;
}

.page.page-gioi-thieu .row-2 .img-box-inner img {
    width: 100%;
}

.page.page-gioi-thieu .row-2 .img-box-inner img.icon {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.page.page-gioi-thieu .row-3 {
    margin: 0 0 85px 0;
}

.page.page-gioi-thieu .row-3 .text-box {
    float: left;
    width: 100%;
}

.page.page-gioi-thieu .row-3 .text-box .des {
    float: right;
    width: 75%;
    padding-right: 8.5%;
    position: relative;
    font-size: 15px;
    text-align: right;
    margin-bottom: 55px;
}

.page.page-gioi-thieu .row-3 .text-box .des p {
    margin-bottom: 30px;
}

.page.page-gioi-thieu .row-3 .text-box .des *:last-child {
    margin-bottom: 0;
}

.page.page-gioi-thieu .row-3 .text-box .des .des-inner {
    position: relative;
    padding-right: 25px;
}

.page.page-gioi-thieu .row-3 .text-box .des .des-inner:before {
    content: ' ';
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 10px;
    width: 4px;
    background: #caa34a;
}

.page.page-gioi-thieu .row-3 .img-box:after {
    clear: both;
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.page.page-gioi-thieu .row-3 .img-box-inner {
    float: left;
    position: relative;
    width: 70%;
}

.page.page-gioi-thieu .row-3 .img-box-inner img {
    width: 100%;
}

.page.page-gioi-thieu .row-3 .img-box-inner img.icon {
    position: absolute;
    bottom: 0px;
    left: auto;
    right: 0;
    width: auto;
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);
}

.page.page-gioi-thieu .row-3 .text-box-2 {
    float: left;
    width: 100%;
    margin: 65px 0 0 0;
}

.page.page-gioi-thieu .row-3 .text-box-2 .des {
    float: left;
    padding-left: 8.5%;
    position: relative;
    font-size: 15px;
}

.page.page-gioi-thieu .row-3 .text-box-2 .des .des-inner {
    width: 75%;
    padding-left: 25px;
    padding-bottom: 40px;
    position: relative;
}

.page.page-gioi-thieu .row-3 .text-box-2 .des .des-inner:before {
    content: ' ';
    position: absolute;
    top: 8px;
    left: 0;
    bottom: 0;
    width: 4px;
    background: #caa34a;
}

.page-album-anh .page-title {
    float: left;
    width: 100%;
    text-align: center;
    margin: 30px 0px;
}

.page-album-anh .page-title a {
    display: inline-block;
    padding: 8px 0px;
    font-family: SFU;
    font-weight: bold;
    font-size: 18px;
    color: #ddb747;
    border: 1px solid #ddb747;
    margin-left: -4px;
    width: 170px;
    text-transform: uppercase;
}

.page-album-anh .page-title a.active {
    color: #fff;
    background: #ddb747;
}

.page-album-anh .row-1 .list-item {
    float: left;
    width: 100%;
    padding: 0px 10%;
}

.page-album-anh .row-1 .list-item .item {
    position: relative;
    margin-bottom: 20px;
}

.page-album-anh .row-1 .list-item .item .item-img {
    width: 100%;
    overflow: hidden;
}

.page-album-anh .row-1 .list-item .item .item-img img {
    width: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.page-album-anh .row-1 .list-item .item .item-img:hover img {
    -webkit-transform: scale(1.5, 1.5);
    -moz-transform: scale(1.5, 1.5);
    -ms-transform: scale(1.5, 1.5);
    -o-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
}

.page-album-anh .row-1 .list-item .item .item-title {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #fff;
    padding: 20px 50px 20px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 17px;
    color: #0f1725;
    text-transform: uppercase;
}

.page-album-anh .row-1 {
    display: none;
}

.page-album-anh .top-pane {
    margin: 0;
}

.page-album-anh .page-content {
    padding: 80px 0;
}

.page-tin-tuc {
    padding: 0 0 50px 0;
}

.page-tin-tuc .row-1 {
    margin-top: 50px;
    padding: 0 10%;
    margin-bottom: 20px;
}

.page-tin-tuc .row-1 .list-news {
    float: left;
    width: 100%;
}

.page-tin-tuc .row-1 .nav-tabs {
    border: none;
    text-align: center;
    margin: 0 0 50px 0;
}

.page-tin-tuc .row-1 .nav-tabs>li {
    float: none;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.page-tin-tuc .row-1 .nav-tabs>li:before {
    background: #333;
    content: '';
    display: block;
    height: 40px;
    left: auto;
    position: absolute;
    left: 0;
    top: 15px;
    width: 5px;
}

.page-tin-tuc .row-1 .nav-tabs>li:first-child:before {
    display: none;
}

.page-tin-tuc .row-1 .nav-tabs>li.active>a,
.page-tin-tuc .row-1 .nav-tabs>li:hover>a {
    background: -webkit-gradient(linear, left top, right top, from(#9e6d31), color-stop(#997839), color-stop(#f1d97f), color-stop(#9e6d31), color-stop(#cda250), to(#f1d97f));
    background: -webkit-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: -moz-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: -o-linear-gradient(left, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    background: linear-gradient(to right, #9e6d31, #997839, #f1d97f, #9e6d31, #cda250, #f1d97f);
    margin: 0;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-tin-tuc .row-1 .nav-tabs>li>a {
    color: #004d71;
    display: block;
    font-family: UTMBebas, Arial, Helvetica, sans-serif;
    font-size: 50px;
    border: none;
    background: none;
    line-height: 1.2;
    margin: 0;
    padding: 0 20px;
}

.page-tin-tuc .row-1 .row {
    margin-left: -10px;
    margin-right: -10px;
}

.page-tin-tuc .row-1 .row [class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
}

.page-tin-tuc .row-1 .pagination {
    margin: 15px 0 45px 0;
    padding: 0 15px;
    text-align: center;
    width: 100%;
}

.page-tin-tuc .row-1 .pagination .pagination-inner {
    margin: 0;
    width: 100%;
}

.page-tin-tuc .row-1 .pagination .pagination-inner a,
.page-tin-tuc .row-1 .pagination .pagination-inner span {
    border: 1px solid #ebebeb;
    background: #fff;
    display: inline-block;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    height: 40px;
    line-height: 38px;
    margin: 0 5px 5px 0;
    min-width: 0;
    padding: 0 5px;
    text-align: center;
    vertical-align: middle;
    width: 40px;
    -webkit-transition: 0.15s ease;
    -o-transition: 0.15s ease;
    -moz-transition: 0.15s ease;
    transition: 0.15s ease;
}

.page-tin-tuc .row-1 .pagination .pagination-inner a.next,
.page-tin-tuc .row-1 .pagination .pagination-inner a.prev,
.page-tin-tuc .row-1 .pagination .pagination-inner span.next,
.page-tin-tuc .row-1 .pagination .pagination-inner span.prev {
    width: auto;
    padding: 0 20px;
}

.page-tin-tuc .row-1 .pagination .pagination-inner a.prev,
.page-tin-tuc .row-1 .pagination .pagination-inner span.prev {
    margin-right: 0;
}

.page-tin-tuc .row-1 .pagination .pagination-inner span.current,
.page-tin-tuc .row-1 .pagination .pagination-inner a:hover {
    border-color: #cba544;
    background: #cba544;
    color: #fff;
}

.page-tin-tuc .row-2 .list-news {
    float: left;
    width: 100%;
}

.page-tin-tuc .row-2 .list-news .news {
    float: left;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 20px;
}

.page-tin-tuc .row-2 .list-news .news:nth-child(3n) {
    margin-right: 0px;
}

.page-tin-tuc .row-2 .list-news .news .news-img {
    float: left;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.page-tin-tuc .row-2 .list-news .news .news-img:after {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: url(../images/tin-tuc/banner.png) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.page-tin-tuc .row-2 .list-news .news .news-img img {
    float: left;
    width: 100%;
}

.page-tin-tuc .row-2 .list-news .news:hover .news-img:after {
    visibility: visible;
    opacity: 1;
}

.page-tin-tuc .row-2 .list-news .news .news-info {
    float: left;
    width: 100%;
}

.page-tin-tuc .row-2 .list-news .news .news-info .news-title {
    float: left;
    width: 100%;
    font-size: 18px;
    color: #262626;
}

.page-tin-tuc .row-2 .list-news .news .news-info .news-date {
    float: left;
    width: 100%;
    margin: 10px 0px;
    font-size: 14px;
    font-family: UTMBebas;
}

.page-tin-tuc .row-2 .list-news .news .news-info .news-des {
    float: left;
    width: 100%;
    font-size: 14px;
}

.page-tin-tuc .row-2 .list-news .news .news-info .news-des .read-more {
    color: #c7a745;
}

.page-single-img .page-title {
    float: left;
    width: 100%;
    text-align: center;
    margin: 30px 0px;
}

.page-single-img .page-title .title-page {
    text-transform: uppercase;
    font-size: 26px;
    color: #0f1725;
}

.page-single-img .list-item {
    float: left;
    width: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.page-single-img .list-item .item {
    position: relative;
    margin-bottom: 25px;
    float: left;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    height: 315px;
    height: 230px;
}

.page-single-img .list-item .item .item-img {
    width: 100%;
    position: relative;
    height: 100%;
    float: left;
    overflow: hidden;
}

.page-single-img .list-item .item .item-img:before {
    position: absolute;
    bottom: 0px;
    left: 0px;
    content: ' ';
    width: 100%;
    height: 30%;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#1f1f1f), to(rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(bottom, #1f1f1f, rgba(255, 255, 255, 0));
    background-image: -moz-linear-gradient(bottom, #1f1f1f, rgba(255, 255, 255, 0));
    background-image: -o-linear-gradient(bottom, #1f1f1f, rgba(255, 255, 255, 0));
    background-image: linear-gradient(to top, #1f1f1f, rgba(255, 255, 255, 0));
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.page-single-img .list-item .item .item-img:after {
    position: absolute;
    content: ' ';
    background: #ddb747;
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.page-single-img .list-item .item .item-img img {
    height: 100%;
    min-width: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.page-single-img .list-item .item:hover .item-img:after {
    opacity: 0.7;
}

.page-single-img .list-item .item:hover .item-img:before {
    opacity: 0;
}

.page-single-img .list-item .item:hover .item-img img {
    -webkit-transform: scale(1.5, 1.5);
    -moz-transform: scale(1.5, 1.5);
    -ms-transform: scale(1.5, 1.5);
    -o-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
}

.page-single-img .list-item .item .item-text {
    position: absolute;
    left: 0px;
    text-align: center;
    bottom: 10px;
    color: #fff;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
}

.page-single-img .list-item .item.item-long {
    height: 655px;
    height: 485px;
}

.page-single-img .list-item .item.item-long .item-img img {
    height: 100%;
    min-width: 100%;
    width: unset;
}

@media only screen and (max-width: 1600px) and (min-width: 768px) {
    .page-single-img .list-item .item {
        height: 260px;
    }

    .page-single-img .list-item .item.item-long {
        height: 545px;
    }
}

@media only screen and (max-width: 1440px) and (min-width: 769px) {
    .page.page-gioi-thieu .row-2 .text-box .title {
        font-size: 50px;
    }

    .page.page-gioi-thieu .row-2 .text-box .title span {
        font-size: 30px;
    }

    .page.page-gioi-thieu .row-3 .text-box .title {
        font-size: 50px;
    }

    .page.page-gioi-thieu .row-3 .text-box .title span {
        font-size: 30px;
    }
}

@media only screen and (max-width: 1366px) and (min-width: 768px) {
    .page-single-img .list-item .item {
        height: 220px;
    }

    .page-single-img .list-item .item.item-long {
        height: 465px;
    }
}

@media only screen and (max-width: 1280px) and (min-width: 768px) {
    .page-single-img .list-item .item {
        height: 200px;
    }

    .page-single-img .list-item .item.item-long {
        height: 425px;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
    .page-tin-tuc .row-1 .list-news .col-news {
        height: 500px;
    }

    .page-tin-tuc .row-1 .list-news .news .news-info .news-title {
        font-size: 16px;
    }

    .page-tin-tuc .row-1 .list-news .news .news-info .news-des {
        font-size: 12px;
    }

    .page-single-img .list-item .item {
        height: 160px;
    }

    .page-single-img .list-item .item.item-long {
        height: 345px;
    }
}

@media only screen and (max-width: 425px) {
    .page-single-img .list-item .item {
        height: unset;
    }

    .page-single-img .list-item .item .item-img img {
        height: unset;
        min-width: unset;
        width: 100%;
    }

    .page-single-img .list-item .item.item-long {
        height: unset;
    }

    .page-single-img .list-item .item.item-long .item-img img {
        height: unset;
        min-width: unset;
        width: 100%;
    }
}

@media screen and (max-width: 1350px) {

    .page.page-gioi-thieu .row-2 .img-box-inner img.icon,
    .page.page-gioi-thieu .row-3 .img-box-inner img.icon {
        width: 200px;
    }
}

@media screen and (max-width: 1199px) {
    .page.page-gioi-thieu .top-pane {
        margin-bottom: 70px;
    }

    .page.page-gioi-thieu .page-row {
        margin-bottom: 50px;
    }

    .page.page-gioi-thieu .row-2 .img-box {
        margin-top: -30px;
    }
}

@media screen and (min-width: 992px) {
    .page-tin-tuc .list-news .col-md-4:nth-child(3n+1) {
        clear: both;
    }
}

@media screen and (max-width: 991px) {
    .page .top-pane .text-box .title {
        font-size: 50px;
    }

    .page.page-gioi-thieu .page-gioi-thieu-title {
        font-size: 45px;
    }

    .page.page-gioi-thieu .page-gioi-thieu-title span {
        font-size: 30px;
    }

    .page.page-gioi-thieu .row-2 .img-box-inner img.icon,
    .page.page-gioi-thieu .row-3 .img-box-inner img.icon {
        width: 160px;
    }

    .page.page-gioi-thieu .row-2 .img-box {
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .page .top-pane {
        margin-bottom: 35px;
    }

    .page .top-pane .img-box {
        float: none;
        width: 100%;
    }

    .page .top-pane .text-box {
        width: 100%;
        position: static;
    }

    .page .top-pane .text-box .text-box-inner {
        position: static;
        padding: 40px 30px;
        text-align: center;
    }

    .page .top-pane .text-box .title {
        font-size: 45px;
    }

    .page.page-tin-tuc .row-1 {
        margin: 0;
        padding: 0 15px;
    }

    .page.page-gioi-thieu .page-gioi-thieu-title {
        font-size: 40px;
    }

    .page.page-gioi-thieu .page-gioi-thieu-title span {
        font-size: 25px;
    }

    .page.page-gioi-thieu .row-2 .img-box-inner img.icon,
    .page.page-gioi-thieu .row-3 .img-box-inner img.icon {
        display: none;
    }

    .page.page-gioi-thieu .row-1 {
        margin-left: 0;
        margin-right: 0;
        padding: 0 15px;
    }

    .page.page-gioi-thieu .row-1 .page-col {
        width: 100%;
        padding: 0;
    }

    .page.page-gioi-thieu .row-1 .page-col .text-box {
        padding: 0 !important;
    }

    .page.page-gioi-thieu .row-2 {
        padding: 0 15px;
    }

    .page.page-gioi-thieu .row-2 .text-box .des {
        width: 100%;
        padding: 0;
    }

    .page.page-gioi-thieu .row-2 .img-box-inner {
        width: 100%;
    }

    .page.page-gioi-thieu .row-3 {
        padding: 0 15px;
    }

    .page.page-gioi-thieu .row-3 .text-box .des {
        width: 100%;
        padding: 0;
    }

    .page.page-gioi-thieu .row-3 .img-box-inner {
        width: 100%;
    }

    .page.page-gioi-thieu .row-3 .text-box-2 .des {
        width: 100%;
        padding: 0;
    }

    .page.page-gioi-thieu .row-3 .text-box-2 .des .des-inner {
        width: 100%;
    }

    .page.page-tong-quan .heading-title {
        margin-bottom: 20px;
    }

    .page.page-tong-quan .row-1 {
        margin: 0 0 20px 0;
    }

    .page.page-tong-quan .row-1 .left-side {
        margin-bottom: 30px;
    }

    .page.page-tong-quan .row-1 .left-side .text {
        margin-bottom: 20px;
    }

    .page.page-tong-quan .row-1 .right-side .text {
        margin-bottom: 20px;
    }

    .page.page-tong-quan .row-1 .right-side .image {
        margin-bottom: 30px;
    }

    .page.page-tong-quan .row-2 .page-row-content {
        padding-top: 30px;
    }

    .page.page-tong-quan .row-3 {
        margin: 0;
    }

    .page.page-tong-quan .row-3 .description {
        margin: 0 0 30px 0;
    }

    .page.page-tong-quan .row-3 .text {
        margin-bottom: 30px;
    }

    .page.page-tong-quan .row-3 .text h2 {
        font-size: 35px;
    }
}

@media screen and (max-width: 639px) {
    .page-tin-tuc {
        padding-bottom: 20px;
    }

    .page-tin-tuc .row-1 .nav-tabs {
        margin: 0 0 35px 0;
        display: flex;
        justify-content: center;
    }

    .page-tin-tuc .row-1 .nav-tabs>li {
        /* width: 100%; */
        width: max-content;
    }
    .page-tin-tuc .row-1 .nav-tabs>li a {
        padding: 0 10px;
    }

    .page-tin-tuc .row-1 .nav-tabs>li:before {
        display: none;
    }

    .page-tin-tuc .row-1 .nav-tabs>li>a {
        font-size: 36px;
    }
}

@media screen and (max-width: 479px) {
    [class*="col-"] {
        width: 100% !important;
    }

    .page.page-gioi-thieu .page-gioi-thieu-title {
        font-size: 30px;
    }

    .page.page-gioi-thieu .page-gioi-thieu-title span {
        margin-top: 5px;
        font-size: 18px;
    }
}

.row-tai-appp {
    position: relative;
    overflow: hidden;
}

.row-tai-appp .banner-row {
    position: relative;
    top: 0;
    left: 0;
    min-width: 100%;
    max-width: inherit;
    height: 100%;
}

@media (max-width: 1279px) {
    .row-tai-appp .banner-row {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100%;
        max-width: inherit;
        height: 100%;
    }
}

.row-tai-appp .title-row {
    color: #fff;
    font-family: UTMBebas;
    font-style: normal;
    font-weight: normal;
    font-size: 30px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-top: 0;
}

.row-tai-appp .box-content-row {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

@media (max-width: 1279px) {
    .row-tai-appp .box-content-row {
        position: inherit;
        top: auto;
        left: auto;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        padding: 40px 0 40px;
    }
}

.row-tai-appp .content-row {
    margin-bottom: 43px;
}

@media (max-width: 1365px) {
    .row-tai-appp .content-row {
        margin-bottom: 20px;
    }
}

.row-tai-appp .qrcode {
    margin-bottom: 36px;
}

.row-tai-appp .img-down {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.row-tai-appp .img-down a {
    display: inline-block;
    margin: 0 5px;
}

.row-tai-appp .img-down a .hover {
    display: none;
}

.row-tai-appp .img-down a:hover .normal {
    display: none;
}

.row-tai-appp .img-down a:hover .hover {
    display: block;
}