@font-face {
    font-display: swap;
    font-family: 'BebasNeueLocal';
    src: url('../coming/fonts/BebasNeue-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --tt-red: #f20f17;
    --tt-red-dark: #d20a10;
    --tt-yellow: #ffc400;
    --tt-orange: #ff6518;
    --tt-black: #030303;
    --tt-ink: #161616;
    --tt-muted: #9a9a9a;
    --tt-white: #ffffff;
    --tt-container: 1200px;
}

body {
    color: var(--tt-ink);
    background: var(--tt-white);
}

.wrap-content {
    max-width: var(--tt-container);
}

.page-index {
    /* background: var(--tt-black); */
}

.page-index .wrap-home {
    /* background: var(--tt-black); */
}

.page-index .header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    height: 128px;
    background: transparent;
}

.page-index .header .wrap-content {
    height: 100%;
    max-width: var(--tt-container);
}

.wrap-top-row {
    /* position: relative; */
    /* display: flex; */
    /* align-items: flex-start; */
    /* justify-content: space-between; */
    /* align-content: flex-start; */
    /* flex-wrap: nowrap; */
    /* gap: 0; */
    /* width: 100%; */
}

.page-index .header .logo {
    position: relative;
    width: 200px;
    height: 126px;
    margin-left: 44px;
    padding: 10px 20px;
    background: #fff;
    clip-path: polygon(24% 0, 100% 0, 76% 100%, 0 100%);
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.header .logo img {
    /* display: block; */
    /* width: 100%; */
    /* height: 100%; */
    /* max-height: none; */
    /* object-fit: contain; */
}

.header .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.page-index .header .logo img {
    /* width: 92px; */
    /* height: auto; */
    /* max-height: 88px; */
}

.page-index .menu {
    margin-left: auto;
    /* padding-top: 44px; */
}

.menu ul.menu-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-main > li {
    position: relative;
}

.menu-main > li > a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 0 17px;
    border: 1px solid transparent;
    color: #fff;
    font-family: var(--fontSB);
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.menu-main > li > a:hover,
.menu-main > li > a.active {
    border-color: rgba(255, 255, 255, .82);
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    /* padding-top: 49px; */
    margin-left: 13px;
    color: #fff;
}

.header-search-line {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .6);
}

.header-search .icon-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin: 0;
    cursor: pointer;
}

.header-search .search-grid {
    position: absolute;
    top: 82px;
    right: 0;
    z-index: 4;
    display: flex;
    width: 0;
    height: 42px;
    overflow: hidden;
    opacity: 0;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .22);
}

.header-search .search-grid input {
    width: 188px;
    height: 42px;
    border: 0;
    padding: 0 12px;
}

.header-search .search-grid p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    color: #fff;
    background: var(--tt-red);
    cursor: pointer;
}

.tt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    min-width: 236px;
    height: 42px;
    padding: 0 20px;
    border: 0;
    border-radius: 2px;
    color: #fff;
    font-family: var(--fontSB);
    font-size: 15px;
    line-height: 1;
    transition: transform .2s ease, background-color .2s ease;
}

.tt-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.tt-btn--red {
    background: var(--tt-red-dark);
}

.tt-btn--red:hover {
    background: var(--tt-red);
}

.tt-section-title {
    position: relative;
    margin: 0 auto 32px;
    text-align: center;
}

.tt-section-title h2 {
    margin: 0;
    color: var(--tt-red);
    font-family: var(--fontB);
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
}

.tt-section-title span {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 7px;
    color: var(--tt-yellow);
    font-family: var(--fontSB);
    font-size: 13px;
    text-transform: uppercase;
}

.tt-section-title span::before,
.tt-section-title span::after,
.tt-section-title--light > span::before,
.tt-section-title--light > span::after {
    content: "";
    display: block;
    width: 86px;
    height: 19px;
    background: repeating-linear-gradient(45deg, var(--tt-orange) 0 6px, transparent 6px 12px);
}

.tt-hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    color: #fff;
    background: var(--hero-bg) center/cover no-repeat;
}

.tt-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .38) 45%, rgba(0, 0, 0, .08) 100%);
}

.tt-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 700px;
}

.tt-hero__text {
    max-width: 660px;
    padding-top: 82px;
}

.tt-hero h1 {
    margin: 0 0 8px;
    color: #ffdb13;
    font-family: 'BebasNeueLocal', var(--fontB);
    font-size: 110px;
    font-style: italic;
    line-height: .82;
    text-transform: uppercase;
    text-shadow: 0 8px 22px rgba(0, 0, 0, .26);
    transform: skew(-8deg);
}

.tt-hero__sub {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 114px;
    color: #ffdc13;
    text-transform: uppercase;
}

.tt-hero__sub span {
    color: #fff;
    font-family: 'Brush Script MT', cursive;
    font-size: 54px;
    line-height: 1;
    text-transform: none;
}

.tt-hero__sub strong {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding-left: 24px;
    font-family: var(--fontSB);
    font-size: 35px;
    font-weight: normal;
}

.tt-hero__sub strong::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 334px;
    max-width: 100%;
    height: 12px;
    background: #fff;
}

.tt-about {
    position: relative;
    min-height: 743px;
    overflow: hidden;
    color: #fff;
    background: var(--about-bg) center/cover no-repeat;
}

.tt-about__shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(0, 0, 0, .42), rgba(0, 0, 0, .88) 68%), rgba(0, 0, 0, .72);
}

.tt-about__inner {
    position: relative;
    z-index: 2;
    min-height: 743px;
    padding-top: 60px;
    text-align: center;
}

.tt-section-title--light {
    margin-bottom: 24px;
}

.tt-section-title--light > span {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin: 0 0 4px;
    color: var(--tt-yellow);
    font-family: var(--fontSB);
    font-size: 18px;
}

.tt-section-title--light h2 {
    margin: 0;
    color: var(--tt-red);
    font-size: 40px;
}

.tt-section-title--light strong {
    display: block;
    color: var(--tt-yellow);
    font-family: var(--fontB);
    font-size: 52px;
    line-height: 1.08;
    text-transform: uppercase;
}

.tt-about__desc {
    max-width: 830px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, .92);
    font-size: 15px;
    line-height: 1.65;
}

.tt-about__desc p {
    margin: 0;
}

.tt-about__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 46px;
}

.tt-about__photo {
    position: relative;
    display: block;
    height: 265px;
    padding: 0 0 12px 0;
}

.tt-about__photo::after {
    content: "";
    position: absolute;
    left: 8px;
    right: -8px;
    bottom: 0;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, .58);
    border-top: 0;
    box-shadow: 0 8px 0 rgba(255, 255, 255, .25);
}

.tt-about__photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tt-product-home {
    padding: 20px 0 48px;
    background: #000;
}

.tt-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tt-product-card {
    min-width: 0;
    text-align: center;
}

.tt-product-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    padding: 10px;
    background: #fff;
}

.tt-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tt-product-card h3 {
    min-height: 45px;
    margin: 14px 0 11px;
    padding: 0 10px;
    font-family: var(--fontB);
    font-size: 16px;
    line-height: 1.25;
    text-transform: uppercase;
}

.tt-product-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    color: #2d2d2d;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tt-product-card__spec {
    min-height: 58px;
    padding: 16px 10px 0;
    border-top: 1px solid #333;
    color: #fff;
    font-family: var(--fontSB);
    font-size: 15px;
    line-height: 1.35;
}

.tt-product-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    height: 42px;
    margin-top: 16px;
    color: #777;
    background: #f2f2f2;
    font-family: var(--fontSB);
    border-radius: 2px;
}

.tt-product-card.is-active .tt-product-card__btn,
.tt-product-card__btn:hover {
    color: #fff;
    background: var(--tt-red-dark);
}

.tt-featured-projects {
    padding: 8px 0 18px;
    background: #000;
}

.tt-project-stack {
    display: grid;
    gap: 0;
}

.tt-project-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 58px;
}

.tt-project-row.is-reverse .tt-project-row__image {
    order: 2;
}

.tt-project-row.is-reverse .tt-project-row__body {
    order: 1;
}

.tt-project-row__image {
    position: relative;
    display: block;
    padding: 21px;
    background: var(--tt-red);
    clip-path: polygon(0 0, 90% 0, 100% 13%, 100% 100%, 10% 100%, 0 88%);
}

.tt-project-row__image img {
    width: 100%;
    height: 395px;
    object-fit: cover;
}

.tt-project-row__body {
    padding: 36px 0;
}

.tt-project-row__body h3 {
    position: relative;
    margin: 0 0 17px;
    padding-left: 26px;
    font-family: var(--fontB);
    font-size: 29px;
    line-height: 1.16;
    text-transform: uppercase;
}

.tt-project-row__body h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 19px;
    background: var(--tt-red);
}

.tt-project-row__body h3 a {
    color: var(--tt-yellow);
}

.tt-project-row__body p {
    max-width: 500px;
    margin: 0 0 18px;
    color: #777;
    font-family: var(--fontSB);
    font-size: 15px;
    line-height: 1.7;
}

.tt-video-home {
    padding: 8px 0 0;
}

.tt-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tt-video-card {
    position: relative;
    display: block;
    height: 400px;
    overflow: hidden;
    color: #fff;
    background: #111;
}

.tt-video-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .86), transparent);
}

.tt-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.tt-video-card:hover img {
    transform: scale(1.04);
}

.tt-video-card__title {
    position: absolute;
    left: 15px;
    right: 78px;
    bottom: 21px;
    z-index: 2;
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    font-family: var(--fontB);
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tt-video-card__play {
    position: absolute;
    right: 14px;
    bottom: 17px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 3px solid #fff;
    border-radius: 50%;
    color: var(--tt-red);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .25);
}

.tt-news-home {
    padding: 50px 0 ;
    background: url(../images/bg_tintuc.png) center center no-repeat;
    background-size: cover;
}

.tt-section-title--news {
    margin-bottom: 38px;
}

.tt-news-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tt-news-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 18px;
}
.tt-news-card.is-center{
     flex-direction: column-reverse;
}

.tt-news-card__image {
    display: block;
    height: 225px;
    overflow: hidden;
    background: #ddd;
}

.tt-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.tt-news-card:hover .tt-news-card__image img {
    transform: scale(1.04);
}

.tt-news-card__body {
    min-height: 180px;
}

.tt-news-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 11px;
    color: #B4B4B4;
    font-size: 15px;
}

.tt-news-card__meta i {
    color: var(--tt-red);
}

.tt-news-card h3 {
    margin: 0 0 13px;
    font-family: var(--fontB);
    font-size: 18px;
    line-height: 1.34;
    text-transform: uppercase;
}

.tt-news-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    color: var(--colordo);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tt-news-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #202020;
    font-size: 16px;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-family: var(--fontHelveticaNeueMedium);
}

footer {
    color: #fff;
    /* background: #070707; */
}

footer .wrap-content {
    max-width: var(--tt-container);
}

@media (max-width: 1199px) {
    .wrap-content {
        max-width: 960px;
    }

    .page-index .header .logo {
        margin-left: 0;
    }

    .menu ul.menu-main {
        gap: 8px;
    }

    .menu-main > li > a {
        padding: 0 10px;
        font-size: 14px;
    }

    .tt-hero h1 {
        font-size: 86px;
    }

    .tt-project-row {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .header {
        display: none;
    }

    .page-index .header {
        display: none;
    }

    .tt-hero,
    .tt-hero__content {
        min-height: 620px;
    }

    .tt-hero__text {
        padding-top: 70px;
    }

    .tt-hero h1 {
        font-size: 76px;
    }

    .tt-hero__sub {
        margin-bottom: 78px;
    }

    .tt-hero__sub span {
        font-size: 44px;
    }

    .tt-hero__sub strong {
        font-size: 26px;
    }

    .tt-about__gallery,
    .tt-product-grid,
    .tt-news-layout {
        grid-template-columns: 1fr;
    }

    .tt-product-card__image {
        height: 300px;
    }

    .tt-project-row,
    .tt-project-row.is-reverse {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }

    .tt-project-row.is-reverse .tt-project-row__image,
    .tt-project-row.is-reverse .tt-project-row__body {
        order: initial;
    }

    .tt-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tt-section-title h2,
    .tt-section-title--light h2 {
        font-size: 31px;
    }

    .tt-section-title--light strong {
        font-size: 36px;
    }

    .tt-section-title span::before,
    .tt-section-title span::after,
    .tt-section-title--light > span::before,
    .tt-section-title--light > span::after {
        width: 48px;
    }

    .tt-hero,
    .tt-hero__content {
        min-height: 560px;
    }

    .tt-hero h1 {
        font-size: 58px;
    }

    .tt-hero__sub {
        display: block;
        margin-bottom: 58px;
    }

    .tt-hero__sub span {
        display: block;
        font-size: 38px;
    }

    .tt-hero__sub strong {
        padding-left: 0;
        font-size: 22px;
    }

    .tt-hero__sub strong::before {
        width: 220px;
    }

    .tt-about__inner {
        padding-top: 42px;
    }

    .tt-about__photo,
    .tt-project-row__image img,
    .tt-news-card__image {
        height: 230px;
    }

    .tt-video-grid {
        grid-template-columns: 1fr;
    }

    .tt-video-card {
        height: 340px;
    }
}

@media (max-width: 575px) {
    .tt-btn {
        min-width: 210px;
    }

    .tt-hero h1 {
        font-size: 48px;
    }

    .tt-section-title h2,
    .tt-section-title--light h2 {
        font-size: 27px;
    }

    .tt-section-title span {
        font-size: 11px;
    }

    .tt-section-title--light > span {
        font-size: 15px;
    }
}
