:root {
    --white-color: #fafafa;
    --black-color: #121212;
    --red-dark-color: #651F0C;
    --red-light-color: #7A0511;
    --yellow-color: #FFFC04;
    --bg-color: #f0e9e3;
    --main-font: 'Raleway';
    --special-font: 'Ephesis';
}

@font-face {
    font-family: 'Ephesis';
    src: url('../font/Ephesis.ttf');
}

@font-face {
    font-family: 'Raleway';
    src: url('../font/Raleway.ttf');
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--white-color);
}

::-webkit-scrollbar {
    width: 4px;
    background-color: var(--white-color);
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

body {
    font-size: 18px;
    font-weight: 300;
    font-family: var(--main-font);
    color: var(--black-color);
    background: var(--bg-color);
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

a:focus-visible {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

p {
    margin-bottom: 10px;
    text-align: justify;
}

a.button {
    display: block;
    position: relative;
    color: var(--red-dark-color);
    background-color: var(--yellow-color);
    padding: 10px 20px;
    border-radius: 10px;
    overflow: hidden;
    font-weight: 600;
    transition: .6s ease;
}

a.button:hover {
    color: var(--white-color);
}

a.button span:not(:nth-child(6)) {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 30px;
    width: 30px;
    background-color: var(--black-color);
    border-radius: 50%;
    transition: .6s ease;
}

a.button span:nth-child(6) {
    position: relative;
}

a.button span:nth-child(1) {
    transform: translate(-52.8px, -64px);
}

a.button span:nth-child(2) {
    transform: translate(-96px, 20.8px);
}

a.button span:nth-child(3) {
    transform: translate(-3.2px, 28.8px);
}

a.button span:nth-child(4) {
    transform: translate(65px, 22.4px);
}

a.button span:nth-child(5) {
    transform: translate(56px, -60.8px);
}

a.button:hover span:not(:nth-child(6)) {
    transform: translate(-50%, -50%) scale(6);
    transition: 1.5s ease;
}

main {
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

a.button-style2 {
    display: inline-flex;
    align-items: center;
    color: var(--white-color);
    transition: .3s ease-in-out;
}

a.button-style2 .icon-svg {
    margin-left: 15px;
    width: 60px;
    height: 60px;
}

a.button-style2:hover .icon-svg {
    transform: scale(1.1);
}

a.button-style2 .icon-svg .after {
    stroke: var(--white-color);
    stroke-width: 2;
    stroke-dasharray: 570;
    stroke-dashoffset: 570;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

a.button-style2:hover {
    color: var(--red-light-color);
}

a.button-style2:hover .icon-svg .after {
    animation-name: show100;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    stroke: var(--red-light-color);
}

a.button-style2:hover .icon-svg .before {
    stroke-width: 0;
}

@keyframes show100 {
    0% {
        stroke-dashoffset: 570;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes clipPath {
    0% {
        clip-path: circle(0 at 70% 50%);
    }

    100% {
        clip-path: circle(70% at 70% 50%);
    }
}

@keyframes slideDown {
    0% {
        clip-path: circle(15% at 70% 50%);
        opacity: 0;
    }

    50% {
        clip-path: circle(15% at 70% 50%);
        opacity: 1;
    }

    100% {
        clip-path: circle(58% at 70% 50%);
        opacity: 1;
    }
}

@keyframes slideDown2 {
    0% {
        clip-path: circle(15% at 70% 50%);
        opacity: 0;
    }

    50% {
        clip-path: circle(15% at 70% 50%);
        opacity: 1;
    }

    100% {
        clip-path: circle(100% at 70% 50%);
        opacity: 1;
    }
}

h1.title {
    font-size: 48px;
    line-height: 1.5;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

h1.title span,
h2.title span {
    display: block;
}

h1.title .highlight {
    display: inline;
    color: var(--yellow-color);
    font-family: var(--special-font);
    font-size: 48px;
}

h2.title .highlight {
    display: inline;
    font-size: 48px;
    color: var(--red-light-color);
}
h2.title .green-highlight {
    color: #068f03;
}
h2.title {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0;
}

h2.title.appear,
h3.sub-title.appear {
    transform: none !important;
}

h3.sub-title {
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0;
}

.section {
    padding: 60px 0;
    position: relative;
    scroll-margin-top: 97px;
}

.appear {
    animation-name: fadeIn;
    animation-duration: 1.5s;
    animation-delay: .3s;
    animation-fill-mode: forwards;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.banner-item {
    height: 70vh;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.banner-item .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.banner-item .background::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(.5rem);
    backdrop-filter: blur(.5rem);
    z-index: 1;
}

.banner-item .content {
    position: relative;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10rem 6rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 3;
    color: var(--white-color);
}

.banner-item__right .content {
    margin-left: auto;
}

.banner-item__right .background::after {
    left: unset;
    right: 0;
}

.banner-item h2.title {
    margin-bottom: 15px;
}

.banner-item p,
.banner-item a.button-style2,
.banner-item span {
    opacity: 0;
}

.banner-item p.appear,
.banner-item a.button-style2.appear,
.banner-item span.appear {
    transform: none !important;
}

.marquee {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    font-size: 80px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: unset;
    display: flex;
    font-family: var(--special-font);
}

.marquee.appear{
    transform: none !important;
}

.marquee span {
    display: inline-block;
    animation: marquee 15s linear infinite;
}

.marquee span strong {
    color: var(--red-light-color);
}

.winner-info{
    display: grid;
    grid-template-columns: 30% 70%;
    margin-bottom: 15px;
    opacity: 0;
}

.winner-info.appear{
    transform: none !important;
}

.winner-info .heading{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    color: var(--white-color);
    background: var(--red-light-color);
}

.winner-info marquee {
    font-size: 16px;
    font-family: var(--main-font);
    display: flex;
    align-items: center;
    background: #939393;
}

.winner-info marquee span {
    display: inline-block;
    width: fit-content;
    margin: 0 50px;
    animation: unset;
    color: var(--white-color);
}

@keyframes marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-100%, 0, 0);
    }
}

.video-controls {
    position: absolute;
    width: 90%;
    height: auto;
    max-width: 50vw;
    padding: 10px 20px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity .5s ease-in-out;
    background-color: rgba(0, 0, 0, .3);
    border-radius: 30px;
    z-index: 100;
    font-family: sans-serif;
}

.video-controls .left-button {
    display: flex;
    align-items: center;
}

#current-time,
#duration,
.video-controls span {
    font-size: 14px;
}


#playback-button {
    cursor: pointer;
    padding-right: 15px;
}

#playback-button[data-state="pause"] .feather-pause,
#playback-button[data-state="play"] .feather-play {
    display: none;
}

#playback-button[data-state="play"] .feather-pause {
    display: block;
}

#mute-toggle {
    padding-right: 5px;
    cursor: pointer;
}

#mute-toggle[data-state="no-mute"] .feather-volume-x,
#mute-toggle[data-state="muted"] .feather-volume-2 {
    display: none;
}

#mute-toggle[data-state="muted"] .feather-volume-x {
    display: block;
}

.video-controls .volume {
    display: flex;
    align-items: center;
    width: fit-content;
    transition: .3s ease-in-out;
}

#volume-input {
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.video-controls .volume:hover #volume-input {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.video-wrap {
    position: relative;
    margin-bottom: 60px;
    color: var(--white-color);
    z-index: 3;
    padding-top: 60px;
}

.video-wrap::after {
    content: '';
    position: absolute;
    z-index: 1;
    background: var(--white-color);
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
}

.video-wrap svg {
    color: var(--white-color);
}

#progress-bar {
    flex: 1;
    margin: 0 15px;
}

.video-controls input[type="range"] {
    height: 3px;
}

#fullscreen {
    cursor: pointer;
}

#fullscreen[data-state="small"] .feather-minimize,
#fullscreen[data-state="full"] .feather-maximize {
    display: none;
}

#mute-toggle[data-state="full"] .feather-minimize {
    display: block;
}

.pagination {
    justify-content: center;
    color: var(--red-light-color);
}

.pagination .page-link {
    color: var(--red-light-color);
}

.pagination-nav {
    opacity: 0;
}

.active>.page-link,
.page-link.active {
    background: var(--red-light-color);
    border-color: var(--red-light-color);
    color: var(--white-color);
}

.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stars i {
    color: var(--white-color);
    font-size: 24px;
    margin: 0 10px;
    cursor: pointer;
}

.stars i.active {
    color: var(--yellow-color);
}

/* HEADER CSS */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 30px;
    z-index: 999;
    transition: .5s ease-in-out;
    opacity: 1 !important;
    pointer-events: all !important;
}

.header.active {
    z-index: 9999;
}

.header.active .logo {
    display: none;
}

.header[data-scroll-section-inview] header::after {
    opacity: 0;
}

.header[data-scroll-section-inview] header .logo {
    width: 15rem;
    height: calc(300 / 500* 15rem);
}

.header[data-scroll-section-inview] header .logo_1,
header .logo_2 {
    display: block;
}

.header[data-scroll-section-inview] header .logo_2,
header .logo_1 {
    display: none;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header[data-scroll-section-inview] header {
    align-items: start;
}

header .logo {
    width: 6rem;
    /* height: calc(300 / 500* 6rem); */
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(101, 31, 12, .8);
    -webkit-backdrop-filter: blur(.3rem);
    backdrop-filter: blur(.3rem);
    opacity: 0;
    transition: .3s ease-in-out;
    z-index: 1;
}

header.fixed::after {
    opacity: 1;
}

.header.active header.fixed::after {
    opacity: 0;
}

.header.active header {
    justify-content: end;
}

header .nav a {
    margin: 0 15px;
    color: var(--white-color);
    font-weight: 600;
    transition: .3s ease-in-out;
}

header .nav a:hover,
header .nav a.active {
    color: var(--yellow-color);
}

header .header-right {
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    z-index: 3;
}

header a {
    position: relative;
    z-index: 3;
}

header a.button {
    margin-left: 15px;
}

.menu-btn {
    position: relative;
    width: 50px;
    height: 40px;
    cursor: pointer;
    margin-left: 15px;
    display: none;
}

.menu-btn span.line {
    position: absolute;
    width: 100%;
    height: 0.08rem;
    left: 0;
    top: .5rem;
    background: var(--white-color);
    transition: all .3s ease-in-out;
}

.menu-btn span.line-2 {
    width: 80%;
    right: 10%;
    top: 50%;
}

.menu-btn span.line-3 {
    top: calc(100% - .5rem);
}

.menu-btn:hover span.line {
    background: var(--yellow-color);
    width: 80%;
    left: 20%;
}

.menu-btn:hover span.line-2 {
    width: 60%;
    left: 20%;
}

.menu-btn:hover span.line-3 {
    width: 80%;
    left: 0;
}

.menu-btn.active span.line-1 {
    width: 60%;
    left: 20%;
    transform: rotate(45deg);
    top: 50%;
}

.menu-btn.active span.line-2 {
    transform: scaleX(0);
}

.menu-btn.active span.line-3 {
    width: 60%;
    left: 20%;
    transform: rotate(-45deg);
    top: 50%;
}

/* MOBILE MENU CSS */
.mobile-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9990;
    transform: translateY(100%);
}

.mobile-menu.show {
    transform: none;
}

.menu-overlay {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.menu-overlay::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--red-light-color);
    transition: clip-path .6s cubic-bezier(.83, .31, .2, .9);
    clip-path: circle(0 at 100% 0);
    pointer-events: none;
}

.mobile-menu .menu-overlay.show::after {
    clip-path: circle(200% at 100% 0);
    pointer-events: auto;
    transition: clip-path 1s cubic-bezier(.83, .31, .2, .9);
}

.mobile-menu .menu-logo {
    position: absolute;
    opacity: 0;
    width: 30vw;
    height: 30vw;
    top: calc(50% - 15vw);
    transition: all .5s ease-in-out;
    right: 5vw;
    pointer-events: none;
    z-index: 2;
}

.mobile-menu .menu-logo.show,
.mobile-menu .menu-nav.show {
    opacity: 1;
}

.mobile-menu .menu-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 40vw;
    height: 100%;
    overflow: hidden;
    background-image: url(../images/02.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.mobile-menu .menu-nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(.3rem);
    backdrop-filter: blur(.3rem);
    z-index: 1;
    transition: opacity 1s ease-in-out;
    background-color: rgba(0, 0, 0, .3);
}

.mobile-menu .menu-nav.show::after {
    opacity: 1;
}

.mobile-menu .menu-nav ul {
    position: relative;
    z-index: 2;
}

.mobile-menu .menu-nav a {
    display: block;
    margin-bottom: 15px;
    color: var(--white-color);
    font-weight: 600;
    font-size: 24px;
    transition: all .3s ease-in-out;
}

.mobile-menu .menu-nav a.active,
.mobile-menu .menu-nav a:hover {
    color: var(--yellow-color);
}

.mobile-menu .close {
    position: absolute;
    top: 20px;
    right: 42px;
    color: var(--yellow-color);
    opacity: 0;
    transition: all .5s ease-in-out;
    z-index: 3;
}

.mobile-menu .close.show {
    opacity: 1;
}

.mobile-menu .close svg {
    width: 24px;
}

/* SECTION 1 CSS */
.sec-1 {
    position: relative;
    height: 100vh;
    background: var(--red-light-color);
}

.sec-1#trang-chu {
    padding: 0;
}

.sec-1 .background-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.sec-1 .background-icon img {
    position: absolute;
    width: 140px;
    height: auto;
}

.sec-1 .background-icon .icon1 {
    top: 25%;
    left: 1%;
}

.sec-1 .background-icon .icon2 {
    top: 60%;
    left: 5%;
}

.qr-scan .sec-1 {
    height: 70vh;
}

.qr-scan .sec-1 .left-text {
    color: var(--red-light-color);
    z-index: 7;
    mix-blend-mode: normal;
}

.sec-1 .image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    backface-visibility: hidden;
    background-attachment: fixed;
    background-image: url(../images/02.jpg);
    z-index: 4;
}

.sec-1 .image-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 3;
}

.qr-scan .sec-1::before {
    content: none;
}

.sec-1.show .image-wrap {
    animation-name: slideDown;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.qr-scan .sec-1.show .image-wrap {
    animation-name: slideDown2;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.sec-1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, var(--red-dark-color) 0%, var(--red-light-color) 100%);
    z-index: 2;
}

.sec-1.show::before {
    animation-name: clipPath;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.sec-1 .image-wrap img {
    width: 100%;
    height: 100%;
}

.sec-1 .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--white-color);
    display: flex;
    align-items: center;
    padding-left: 280px;
    padding-top: 100px;
    z-index: 5;
}

.qr-scan .sec-1 .content {
    padding-left: 0;
}

.sec-1 .content p {
    margin-bottom: 30px;
    max-width: 600px;
}

.sec-1 text {
    fill: var(--white-color);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    font-variant-ligatures: none;
    letter-spacing: 6px;
    animation: rotate 10s linear infinite;
    transform-origin: 250px 250px;
}

.sec-1 .textcircle {
    transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
    transform-origin: 250px 250px;
}

.sec-1 .scroll-down {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    cursor: pointer;
    color: var(--white-color);
    z-index: 7;
}

.sec-1 .scroll-down:hover text {
    animation-play-state: paused;
}

.sec-1 a.button-style2:hover {
    color: var(--yellow-color);
}

.sec-1 a.button-style2:hover .icon-svg .after {
    stroke: var(--yellow-color);
}

.sec-1 .left-text {
    color: var(--white-color);
    font-weight: 900;
    position: absolute;
    width: 120px;
    left: 0;
    bottom: 190px;
    transform: rotate(-90deg);
    white-space: nowrap;
    mix-blend-mode: overlay;
    font-size: 40px;
}


/* SECTION 2 CSS */
.sec-2:not(.detail-section) {
    padding-top: 0;
}

/* .sec-2#gioi-thieu .content p {
    opacity: 1;
} */

.sec-2#gioi-thieu .content {
    opacity: 0;
}

.sec-2#gioi-thieu .content.appear {
    transform: none !important;
}

.sec-2 #youtube-video {
    height: auto;
    width: 100%;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, .1);
    position: relative;
    z-index: 3;
}

.sec-2 .image-wrap {
    border-radius: 8px;
}

.sec-2 .image-wrap__large {
    height: 500px;
    width: 100%;
    border: 3px solid var(--red-dark-color);
    opacity: 0;
}

.sec-2 .image-wrap__large img {
    transform: translate3d(20px, 20px, 0);
}

.sec-2 .image-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: .6s cubic-bezier(.17, .67, .83, .67);
}

.sec-2 .image-wrap__small img {
    width: 240px;
    height: 180px;
    position: absolute;
    bottom: -10%;
    right: -20%;
    opacity: 0;
}

.sec-2:not(.detail-section) p {
    opacity: 0;
}
.sec-2:not(.detail-section) p .p-chuaquet {
    opacity: unset;
}
.tags {
    opacity: 0;
}

.detail-section .detail-content {
    opacity: 0;
}

.sec-2 p.appear,
.qr-scan .scan-history.appear,
.sec-2 .appear p,
.tags.appear,
.detail-section .detail-content.appear {
    transform: none !important;
}

.qr-scan .sec-2 p {
    width: 100%;
    opacity: 1;
}

.qr-scan .sec-2 .content {
    margin-top: 30px;
}

.qr-scan .scan-history {
    opacity: 0;
    margin-bottom: 20px;
}

.qr-scan .scan-history table {
    white-space: nowrap;
}

.qr-scan .contact-form {
    margin-bottom: 20px;
}

.detail-section .meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
}

.detail-section .meta.appear {
    transform: none !important;
}

.detail-section .meta li {
    display: block;
    position: relative;
    padding: 0 10px;
}

.detail-section .meta li:first-child {
    margin-left: 0;
}

.detail-section .meta li:last-child {
    margin-right: 0;
}

.detail-section .share {
    display: flex;
    align-items: center;
    opacity: 0;
}

.detail-section .share.appear {
    transform: none !important;
}

.detail-section .share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--white-color);
    transition: .3s ease-in-out;
}

.detail-section .share li:not(:last-child) {
    margin-right: 10px;
}

.detail-section .meta li::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 3px;
    height: 3px;
    background: var(--black-color);
    border-radius: 50%;
}

.detail-section .meta li:last-child::after {
    content: none;
}

.detail-section .share a svg {
    width: 16px;
}

.detail-section .share a.facebook {
    background: #1877F2;
}

.detail-section .share a.instagram {
    background: #e1306c;
}

.detail-section .share a.youtube {
    background: #FF0000;
}

.detail-section .share a.facebook:hover,
.detail-section .share a.instagram:hover,
.detail-section .share a.youtube:hover {
    background: var(--black-color);
}

.detail-section h2.title {
    margin-bottom: 5px;
}

.detail-section .detail-content {
    margin: 30px 0;
}

.tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.tags a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 25px;
    background: var(--black-color);
    color: var(--white-color);
    transition: .3s ease-in-out;
}

.tags a:hover {
    background: var(--red-light-color);
}

.tags li {
    margin-right: 10px;
}

/* SECTION 3 CSS */
.sec-3 p {
    opacity: 0;
}

.sec-3 p.appear {
    transform: none !important;
}

.sec-3 .item:not(.banner-item) .content {
    margin-bottom: 80px;
}

.product p {
    opacity: 1;
    color: var(--white-color);
}

.product {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
    opacity: 0;
    transition: .3s ease-in-out;
}

.product::after {
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, .6) 20%, rgba(0, 0, 0, 0) 80%);
    -webkit-backdrop-filter: blur(.3rem);
    backdrop-filter: blur(.3rem);
    opacity: 0;
    border-radius: 8px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 1;
    transition: all .3s ease-in-out;
}

.product:hover::after {
    opacity: 1;
}

.product::before {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 80%;
    border-radius: 8px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6) 0, rgba(0, 0, 0, 0) 80%);
    overflow: hidden;
    z-index: 1;
}

.appear .product {
    animation-name: fadeIn;
    animation-duration: 1.5s;
    animation-delay: .3s;
    animation-fill-mode: forwards;
}

.product-thumb {
    position: relative;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transition: .3s ease-in-out;
}

.product-info h3.sub-title {
    color: var(--white-color);
    opacity: 1;
}

.product-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
}

.product:hover .product-thumb img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.product:hover .product-info h3.sub-title {
    color: var(--yellow-color);
}

.product:hover {
    box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

/* SECTION 4 CSS */
.sec-4 .content p {
    margin-bottom: 60px;
}

.sec-4 a.button-style2 span {
    opacity: 1;
}

.sec-4 p,
.sec-4 a.button-style2 {
    opacity: 0;
}

.sec-4 p.appear,
.sec-4 a.button-style2.appear {
    transform: none !important;
}

.sec-4 a.button-style2 {
    color: var(--black-color);
}

.sec-4 a.button-style2:hover {
    color: var(--red-light-color);
}

.sec-4 .section-item {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 60px;
}

.sec-4 .section-item:nth-of-type(odd) .item-thumb {
    order: 2;
}

.sec-4 .section-item:nth-of-type(odd) .item-text {
    padding-left: 0;
    padding-right: 40px;
    text-align: right;
}

.sec-4 .section-item:nth-of-type(odd) .item-text p {
    margin-left: auto;
}

.sec-4 .section-item .item-thumb {
    position: relative;
    width: calc(100vw / 5);
    height: calc(100vw / 5);
    max-width: 38rem;
    max-height: 38rem;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    transition: all 2s;
}

.sec-4 .section-item .item-thumb.appear {
    transform: none !important;
}

.sec-4 .section-item .item-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all .5s ease-in-out;
}

.sec-4 .section-item:hover .item-thumb {
    box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .1);
}

.sec-4 .section-item:hover .item-thumb img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.sec-4 .section-item .item-thumb .image-wrapper {
    width: 120%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -10%;
}

.sec-4 .section-item .item-text {
    position: relative;
    width: calc(100% - 100vw/4);
    padding-left: 40px;
}

.sec-4 .section-item .item-text h3.sub-title {
    font-size: 38px;
    color: var(--red-light-color);
}

.sec-4 .section-item .item-text .title.appear{
    transform: none !important;
}

/* SECTION 5 CSS */
.sec-5.section {
    padding-bottom: 0;
}

.testi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 25px;
    background: #e9eefa;
    border-radius: 18px;
    color: var(--black-color);
    pointer-events: none;
    transition: .3s ease-in-out;
}

.swiper-slide-active .testi-item {
    background: var(--red-light-color);
    color: var(--white-color);
    pointer-events: auto;
}

.swiper-slide-active {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.swiper-slide .banner-item .background {
    transform: none !important;
}

.testi-item:hover {
    background: var(--red-light-color);
    color: var(--white-color);
}

.sec-5 .testi-item p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testi-item p {
    text-align: center;
}

.testi-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 40px;
}

.testi-name {
    font-size: 18px;
}

.sec-5 .testi-swiper {
    opacity: 0;
}

.sec-5 .testi-swiper.appear {
    transform: none !important;
}

.sec-5 .testi-swiper .swiper-pagination {
    position: static;
    margin-top: 30px;
}

.sec-5 .testi-swiper .swiper-slide {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 18px;
}

/* SECTION 6 CSS */
.sec-6 .content {
    display: flex;
    flex-wrap: wrap;
    background: var(--red-light-color);
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.sec-6 .image-wrap {
    width: 50%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    overflow: hidden;
    position: relative;
}

.sec-6 .image-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.sec-6 .image-wrap__text {
    position: absolute;
    top: 25px;
    left: 15px;
    right: 15px;
    bottom: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.sec-6 .image-wrap__text h3.sub-title {
    color: var(--white-color);
}

.sec-6 .image-wrap__text h2.title {
    color: var(--yellow-color);
}

.sec-6 .image-wrap img {
    height: 100%;
    width: 100%;
}

.sec-6 .contact-form {
    width: 50%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.contact-form {
    background: var(--red-light-color);
    padding: 15px 25px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-control {
    width: 100%;
    margin: 4px 0;
    padding-left: 25px;
    font-size: 13px;
    letter-spacing: 0.15px;
    border: none;
    outline: none;
    background-color: #ecf0f3;
    transition: 0.25s ease;
    border-radius: 8px;
    box-shadow: inset 2px 2px 4px #d1d9e6, inset -2px -2px 4px #f9f9f9;
}

.contact-form .form-control:not(textarea) {
    height: 50px;
}

.contact-form label {
    width: 100%;
}

.contact-form a.button {
    width: fit-content;
}

.contact-form form {
    opacity: 0;
}

.contact-form#wcontent form{
    opacity: 1;
}

.contact-form form.appear {
    transform: none !important;
}

/* FOOTER CSS */
footer {
    background: var(--red-light-color);
    padding: 30px 0 100px 0;
    color: var(--white-color);
}


.social {
    display: flex;
    align-items: center;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 10px;
    border-radius: 50%;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    transition: .3s ease-in-out;
}

.social a svg {
    width: 20px;
    transform: scale(1);
    transition: .3s ease-in-out;
}

.social a:hover {
    border-color: var(--red-dark-color);
    background: var(--red-dark-color);
}

.social a:hover svg {
    transform: scale(1.2);
}

footer .footer-tilte {
    margin-bottom: 15px;
    font-size: 18px;
}

footer ul:not(.social) li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

footer ul:not(.social) li svg {
    width: 18px;
    margin-right: 10px;
}

footer ul:not(.social) li a {
    color: var(--white-color);
}

footer ul:not(.social) li a:hover{
    color: var(--yellow-color);
}

footer .form-group {
    display: flex;
    align-items: center;
}

footer .form-group .form-control {
    height: 47px;
    width: 300px;
    border-radius: 10px;
    margin-right: 15px;
}

.footer-widget {
    margin-bottom: 20px;
}

footer .logo{
    display: block;
    width: 280px;
    margin: 0 auto;
}

footer .social{
    justify-content: center;
}

/* RESPONSIVE CSS */
@media only screen and (min-width: 1920.98px) {
    .sec-1 .content {
        padding-left: 340px;
    }
}

@media only screen and (min-width: 1690.98px) {
    .sec-1 .content {
        padding-left: 320px;
    }
}

@media only screen and (max-width: 1690.98px) {
    .sec-1 .left-text {
        font-size: 28px;
    }

    .qr-scan .sec-1 .left-text {
        font-size: 21px;
    }
}

@media only screen and (max-width: 1280px) {
    .header[data-scroll-section-inview] header .logo {
        width: 10rem;
    }
}

@media only screen and (max-width: 1199.98px) {
    body {
        font-size: 16px;
    }

    header .nav a {
        margin: 0 10px;
    }

    .header[data-scroll-section-inview] header .logo {
        width: 7rem;
    }

    .banner-item .background::after {
        width: 55%;
    }

    .banner-item .content {
        width: 55%;
    }

    footer .form-group .form-control {
        width: 250px;
    }

}

@media only screen and (max-width: 991.98px) {
    .section {
        padding: 20px 0;
    }

    .sec-4 .section-item {
        margin-top: 30px;
    }

    .sec-1 .left-text{
        left: unset;
        right: 0;
    }

    .qr-scan .sec-1 .left-text{
        font-size: 16px;
    }

    .video-wrap {
        padding-top: 20px;
    }

    .sec-5 .banner-swiper .swiper-pagination-bullets {
        bottom: 30px;
    }

    .sec-4 .section-item .item-text h3.sub-title {
        font-size: 24px;
    }

    footer {
        padding: 20px 0;
    }

    .testi-name {
        font-size: 16px;
    }

    h1.title {
        font-size: 30px;
    }

    h2.title {
        font-size: 30px;
    }

    h3.sub-title {
        font-size: 18px;
    }

    .sec-1 {
        max-height: 720px;
    }

    header .header-right .nav {
        display: none;
    }

    .mobile-menu .menu-logo {
        display: none;
    }

    .mobile-menu .menu-nav {
        display: block;
        padding-top: 100px;
        width: 100%;
    }

    .mobile-menu .menu-nav a {
        margin-bottom: 15px;
        padding-bottom: 15px;
        font-size: 36px;
        padding: 0 15px;
        border-bottom: 1px solid var(--white-color);
    }

    .sec-1 .content {
        padding-left: 110px;
    }

    h1.title .highlight,
    h2.title .highlight {
        font-size: 38px;
    }

    .sec-1 .scroll-down {
        left: unset;
        right: 0;
    }

    .menu-btn {
        display: block;
    }

    .banner-item {
        height: inherit;
    }

    .banner-item .content {
        padding: 6rem 2rem;
    }

    .container {
        max-width: 100% !important;
    }

    .sec-2 .image-wrap__small img {
        left: -20%;
    }

    .sec-2 .image-wrap__large img {
        transform: translate3d(-20px, 20px, 0);
    }

    .sec-4 .content p {
        margin-bottom: 20px;
    }

    .sec-4 .section-item .item-text {
        width: calc(100% - 100vw/3);
    }

    .sec-4 .section-item .item-thumb {
        width: calc(100vw / 3.5);
        height: calc(100vw / 3.5);
    }
}

@media only screen and (max-width: 767.98px) {
    .section {
        padding: 15px 0;
    }

    .video-wrap {
        padding-top: 15px;
    }

    .marquee {
        font-size: 48px;
    }

    .sec-4 .section-item {
        margin-top: 20px;
    }

    .header {
        padding: 10px;
    }

    footer {
        padding: 15px 0;
    }

    body {
        font-size: 14px;
    }

    h1.title {
        font-size: 24px;
    }

    h2.title {
        font-size: 24px;
    }

    h3.sub-title {
        font-size: 16px;
    }

    .mobile-menu .menu-nav a {
        font-size: 28px;
    }

    .sec-1 .content {
        padding-left: 0;
    }

    .sec-2 .image-wrap__large {
        height: 440px;
    }

    .sec-4 .section-item .item-text h3.sub-title {
        font-size: 20px;
    }

    .sec-4 .section-item .item-text {
        width: calc(100% - 100vw/2.5);
    }

    .sec-4 .section-item .item-thumb {
        width: calc(100vw / 3);
        height: calc(100vw / 3);
    }

    .sec-6 .image-wrap {
        width: 100%;
    }

    .sec-6 .contact-form {
        width: 100%;
        padding: 15px;
    }

    .testi-item {
        padding: 15px;
    }
}

@media only screen and (max-width: 680px) {
    .banner-item .background {
        position: static;
        height: calc(1125/2000*100vw);
    }

    .video-controls {
        opacity: 0;
    }

    .banner-item .background.is-inview {
        transform: none !important;
    }

    .banner-item .background::after {
        content: none;
    }

    .banner-item .content {
        width: 100%;
        background: var(--red-light-color);
        padding: 15px;
    }

    .sec-5 .banner-swiper .swiper-pagination-bullets {
        bottom: 190px;
    }
}

@media only screen and (max-width: 575.98px) {

    h1.title .highlight,
    h2.title .highlight {
        font-size: 30px;
    }

    .superWheel .sWheel>.sWheel-txt-wrap>.sWheel-txt>div {
        font-size: 12px;
    }

    .sec-1 .content {
        padding-top: 65px;
    }

    .mobile-menu .close {
        top: 10px;
        right: 10px;
    }

    .sec-2 .image-wrap__small img {
        width: 200px;
        height: 140px;
        left: -15%;
    }

    .sec-4 .section-item {
        display: block;
    }

    .sec-4 .section-item .item-thumb {
        margin-left: auto;
        margin-bottom: 20px;
    }

    .sec-4 .section-item .item-text {
        width: 100%;
        padding-right: 0;
    }
}

@media only screen and (max-width: 480px) {

    h1.title .highlight,
    h2.title .highlight {
        font-size: 26px;
    }

    .sec-2 .image-wrap__large {
        height: 390px;
    }

    .sec-2 .image-wrap__large img {
        transform: translate3d(-10px, 10px, 0);
    }

    .sec-4 .section-item:nth-of-type(odd) .item-text {
        padding-right: 10px;
    }
}

@media only screen and (max-width: 380px) {
    .sec-2 .image-wrap__large {
        height: 300px;
    }
    .winner-info{
        grid-template-columns: 35% 65%;
    }

    .sec-2 .image-wrap__small img {
        width: 160px;
        height: 110px;
    }

    .superWheel .sWheel>.sWheel-txt-wrap>.sWheel-txt>div {
        font-size: 8px;
    }

    footer .form-group .form-control {
        width: 190px;
    }
}

@media only screen and (max-width: 322px) {
    .sec-2 .image-wrap__large {
        height: 270px;
    }
}