@import url("https://fonts.googleapis.com/css2?family=Siemreap&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/************
 * @FONTFACE
************/
@font-face {
  font-family: "SN KH SIMPLE-HAIR";
  src: url("fonts/SNKHSIMPLEHAIR-Bold.woff2") format("woff2"),
    url("fonts/SNKHSIMPLEHAIR-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/************
 * @VARIABLE
************/
:root {
  --primaryColor: #2e3192;
  --primaryLight: rgb(46, 49, 146, 0.1);
  --disableColor: rgb(46, 49, 146, 0.8);
  --bodyColor: rgb(0, 0, 0, 0.5);
  --secondColor: #ed1b24;
  --blackColor: #000000;
  --whiteColor: #ffffff;

  /****FONT SIZE ****/
  --titleSlider: 36px;
  --titleBrand: 64px;
  --titleModel: 96px;
  --titleSection: 20px;
  --subTitleSection: 30px;
/*  --titleSlider: 32px;
  --titleBrand: 44px;
  --titleModel: 76px;
  --titleSection: 20px;
  --subTitleSection: 26px;*/

}

* {
  padding: 0;
  margin: 0;
}
body {
  font-family: "Roboto", "Siemreap", sans-serif;
  font-size: 16px;
  color: var(--bodyColor);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", "SN KH SIMPLE-HAIR", sans-serif;
}
.navbar-fixed {
  background-color: transparent;
  position: fixed;
  transition: 0.3s all;
  width: 100%;
  left: 0;
  top:0;
  z-index: 999;
}
.relative {
  position: relative;
}
.navbar-fixed.sticky {
  background-color: #ffffffb8;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0px 2px 5px #00000014;
}
.navbar.navbar-expand-lg .navbar-collapse a {
  font-size: 20px;
  color: var(--primaryColor);
  text-decoration: none;
}
.navbar.navbar-expand-lg .navbar-collapse ul li a {
  padding: 15px 30px;
  margin: 0 15px;
  position: relative;
  z-index: 1;
  color: var(--primaryColor);
  transition: 0.3s all;
}

.navbar.navbar-expand-lg .navbar-collapse ul li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primaryColor);
  border-radius: 80px;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.3s all;
}

.navbar.navbar-expand-lg .navbar-collapse ul li a:hover {
  color: var(--whiteColor);
}
.navbar.navbar-expand-lg .navbar-collapse ul li a.active {
  color: var(--whiteColor);
}
.navbar.navbar-expand-lg .navbar-collapse ul li a:hover::before,
.navbar.navbar-expand-lg .navbar-collapse ul li a.active::before {
  opacity: 1;
  transform: scale(1);
}
.tab-item img {
  width: 100px;
}
a {
  text-decoration: none;
}
.navbar-brand img{

  width: 85px;
  height: auto;
}
#mainSlider {
  background-color: var(--primaryLight);
  height: calc(100vh + 200px);
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2;

}

.vertical-center {
  height: 85%;
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
}
.content-slide a {
  font-size: 24px;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  padding: 20px 40px;
  border-radius: 100px;
  display: inline-block;
  transition: 0.3s all;
  box-shadow: 1px 2px 5px #00000061;
  position: relative;
}


.content-slide a:hover {
  background-color: transparent;
}

.content-slide a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--secondColor);
  border-radius: 100px;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.3s all;
}
.content-slide a:hover::before {
  opacity: 1;
  transform: scale(1);
}
.dott-slide ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.dott-slide {
  display: inline-block;
  padding: 40px 10px;
  border-radius: 30px;
  position: relative;
  align-items: center;
}
.dott-slide::before {
  content: "";
  width: 1px;
  height: 100px;
  border-radius: 5px;
  background-color: var(--primaryLight);
  top: 0%;
  left: 50%;
  transform: translate(50%, -105%);
  position: absolute;
}
.dott-slide::after {
  content: "";
  width: 1px;
  height: 100px;
  border-radius: 5px;
  background-color: var(--primaryLight);
  bottom: 0%;
  left: 50%;
  transform: translate(50%, 105%);
  position: absolute;
}
.dott-slide ul span {
  font-size: 24px;
  color: #00000033;
  padding: 15px 0;
  transition: 0.5s all;
  position: relative;
}

.dott-slide ul span.active {
  color: var(--primaryColor);
  font-weight: 700;
  font-size: 40px;
}
.dott-slide ul span:hover {
  cursor: pointer;
}

.wrap-btn {
    opacity: 0;
    transform: translateX(150px);
    transition: transform 1s ease-out, opacity 0.8s ease-out;
    will-change: transform, opacity;
}

.slick-active .wrap-btn.animate-in {
    opacity: 1;
    transform: translateX(0);
}
.dott-up,
.dott-down {
  text-decoration: none;
  width: 30px;
  height: 30px;
  position: absolute;
  border-radius: 50px;
  left: 50%;
  align-items: center;
  /*transition: 0.3s all;*/
}
.dott-up svg,
.dott-down svg {
  width: 15px;
  height: auto;
}
.dott-up {
  top: 0;
  transform: translate(-50%, 20%);
}
.dott-down {
  bottom: 0;
  transform: translate(-50%, -20%);
  padding: 3px;
  text-align: center;
}
.dott-up:hover,
.dott-down:hover {
  border: 1px solid var(--primaryLight);
}

.titleSlider {
  font-size: var(--titleSlider);
  color: var(--bodyColor);
  line-height: 65px;
  margin-bottom: 20px;
  width: calc(100% / 1.5);
  opacity: 0;
  transform: translateY(50px);
  transition: transform 1s ease-out, opacity 0.8s ease-out;
}
.titleBrand {
  font-size: var(--titleBrand);
  color: var(--primaryColor);
  font-weight: 700;
  opacity: 0;
  transform: translateX(50px);
  transition: transform 1.5s ease-out, opacity 0.8s ease-out;
}
.slick-current .titleSlider{
  opacity: 1;
  transform: translateY(0);
}
.slick-current .titleBrand{
  opacity: 1;
  transform: translateX(0);
}
.titleModel {
  font-size: var(--titleModel);
  font-weight: bold;
  color: transparent;
  background: linear-gradient(45deg, var(--secondColor));
  color: #eaeaf2;
  -webkit-background-clip: text;
  -webkit-text-stroke: 3px transparent;
  background-size: 200% 200%;
  position: relative;
  margin-bottom: 50px;

  padding-left: 2px;
  position: relative;
  display: inline-block;
  padding: 0px 35px;
  opacity: 0;
  transition: transform 1s ease-out, opacity 0.8s ease-out;  
}
.slick-current .titleModel{
  opacity: 1;
}
.titleModel::before,
.titleModel::after {
  position: absolute;
}
.titleModel::before {
  content: "";
  width: 70%;
  height: 50%;
  left: 0;
  top: 0;
  border-left: 1px solid var(--secondColor);
  border-top: 1px solid var(--secondColor);
}
.titleModel::after {
  content: "";
  width: 80%;
  height: 50%;
  right: 0;
  bottom: 0;
  border-right: 1px solid var(--secondColor);
  border-bottom: 1px solid var(--secondColor);
  z-index: -1;
}

.titleModel span {
  font-size: 24px;
  color: var(--primaryColor);
  -webkit-text-stroke: 0px transparent;
  font-weight: normal;
  position: absolute;
  bottom: -18px;
  left: -2px;
  padding-right: 15px;
  overflow: hidden;
  background-color: #eaeaf4;
  z-index: 1;
  text-transform: uppercase;
}
.titleSection {
  font-size: var(--titleSection);
  color: var(--blackColor);
  position: relative;
  padding: 25px 0;
}
.titleSection::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 98px;
  height: 42px;
  background-color: var(--primaryLight);
  border-radius: 0px 0px 20px 0px;
}
.titleSection::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 2px;
  background-color: var(--primaryColor);
  left: 0;
  bottom: 0;
}
.subTitleSection {
  font-size: var(--subTitleSection);
  color: var(--blackColor);
  line-height: 50px;
  margin-top: 15px;
  display: block;
}
.subTitleSection span {
  color: var(--secondColor);
}
.contain-text-section p {
  line-height: 30px;
}
#actionService {
  margin-top: 0;
  margin-bottom: 150px;
}
.row.vertical-center{
  margin-top: -80px;
}
.main-tab {
  margin-top: -150px;
  border-radius: 50px;
  box-shadow: 0px 0px 5px 0px #00000012;
  position: relative;
  z-index: 2;
  background-color: var(--whiteColor);
  display: block;
}

.main-tab ul.nav-pills li {
  width: 50%;
  text-align: center;
  border-bottom: 1px solid var(--primaryLight);
}
.main-tab ul.nav-pills li.active {
  border-bottom: 2px solid var(--primaryColor);
}
.main-tab ul.nav-pills li div {
  padding: 15px 0 50px;
  color: var(--blackColor);
  display: block;
}
.main-tab ul.nav-pills li .title-action {
  font-size: 24px;
  padding: 30px 0 15px;
  font-weight: bold;
}
.main-tab ul.nav-pills li span {
  color: var(--bodyColor);
}
.space-section {
  margin: 200px 0;
  display: block;
}

.sst {
  margin-top: 200px;
  display: block;
}
.ssb {
  margin-bottom: 200px;
  display: block;
}

.wrap-vdo-list {
  position: relative;
}
.container-video .landscape {
  width: 100%;
  height: 450px;
  border-radius: 30px;
}

.vdo-list {
  padding: 15px 10px;
  border-radius: 15px;
  overflow: hidden;
}
.vdo-list:first-of-type {
  margin-left: 0;
}

.vdo-list img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}
.contain-vl {
  /*    display: flex;
    flex-wrap: wrap;  */
}
.wrap-vdo-list .prev,
.wrap-vdo-list .next {
  position: absolute;
  z-index: 1;
}
.wrap-vdo-list .prev a,
.wrap-vdo-list .next a {
  width: 38px;
  height: 38px;
  border-radius: 40px;
  background-color: var(--whiteColor);
  display: block;
  transition: 0.3s all;
  box-shadow: 0px 2px 5px #00000014;
  text-align: center;
  align-items: center;
  padding: 6px;  
  transition: 0.3s all;
}
.wrap-vdo-list .prev a:hover,
.wrap-vdo-list .next a:hover{
  background-color: var(--primaryColor);
}
.wrap-vdo-list .prev a:hover svg path,
.wrap-vdo-list .next a:hover svg path{
  fill: var(--whiteColor);
}
.wrap-vdo-list .prev {
  top: 50%;
  left: 0;
  transform: translate(-15%, -50%);
}
.wrap-vdo-list .next {
  top: 50%;
  right: 0;
  transform: translate(15%, -50%);
}
#allProduct .titleSection,
ul.filter-condition,
ul.filter-condition li,
.list-brand li {
  display: inline-block;
}
.list-brand li {
  margin: 0 5px;
}
#allProduct ul li a {
  color: var(--bodyColor);
  transition: 0.3s all;
}

.list-brand li a span:first-child {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  align-items: center;
  text-align: center;
  box-shadow: 0px 1px 3px #00000040;
  padding: 15px 12px;
  z-index: 1;
  background-color: var(--whiteColor);
  position: relative;
}
.list-brand li a span:first-child img {
  width: 25px;
  height: auto;
}
.list-brand li a span:last-child {
  padding: 10px 15px;
  border-radius: 50px;
  margin-left: -15px;
  z-index: -1;
  transition: 0.3s all;
  position: relative;
}

.list-brand li a.active span:last-child {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.list-brand li a span:last-child::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primaryColor);
  border-radius: 80px;
  z-index: -1; /* Ensure the background stays behind the text */
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.list-brand li a:hover span:last-child {
  color: var(--whiteColor);
}

.list-brand li a:hover span:last-child::before {
  opacity: 1;
  transform: scale(1);
}

.filter-condition li {
  margin: 0px;
}
.filter-condition li a {
  padding: 10px 15px;
  border-radius: 50px;
  transition: 0.3s all;
  position: relative;
}
.filter-condition li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primaryColor);
  border-radius: 80px;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.3s all;
}
.filter-condition li a:hover::before {
  opacity: 1;
  transform: scale(1);
}
#allProduct ul.filter-condition li a.active {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
#allProduct ul.filter-condition li a:hover {
  /*background-color: var(--primaryColor);*/
  color: var(--whiteColor);
}
.btn-outline {
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
  display: inline-block;
  transition: 0.3s all;
  position: relative;
}

.btn-outline:hover {
  /*background-color: var(--primaryColor);*/
  color: var(--whiteColor);
}

.btn-outline::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primaryColor);
  border-radius: 80px;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.3s all;
}
.btn-outline:hover::before {
  opacity: 1;
  transform: scale(1);
}
.thumb-product {
  background-color: var(--primaryLight);
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  position: relative;
  border: 1px solid transparent;
  transition: 0.3s all;
}
.thumb-product img{
  max-width: 100%;
}
.thumb-product .social {
  position: absolute;
  left: 55%;
  top: 55%;
  transform: translate(-55%, 100%);
  z-index: 1;
  width: 100%;
  opacity: 0;
  transition: 0.3s all;
}
.thumb-product .social ul {
  padding: 0;
  margin: 0;
}
.thumb-product .social ul li a:hover {
  background-color: var(--secondColor);
}
.thumb-product .social ul li {
  margin: 0 5px;
}
.item-product:hover{
  cursor: pointer;
}
.item-product:hover .thumb-product{
  border-color: var(--primaryColor);
}
.product-title {
  display: block;
  padding: 20px 0;
  font-size: 17px;
}

.product-title span:last-child {
  border-left: 1px solid var(--bodyColor);
  padding-left: 10px;
  margin-left: 10px;
  color: var(--blackColor);
}
.text-animate-left span,
.text-animate-right span {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  border-radius: 50px;
  margin: 30px 0;
  padding: 15px 30px;
  text-align: center;
}

.action-service {
  position: relative;
  width: 100%;
}
.action-service img {
  max-width: 100%;
}
.contact-service {
  bottom: 0%;
  left: 50%;
  width: 150%;
  align-items: center;
  transform: translate(-50%, 75%);
  position: absolute;
}
.contact-box {
  background-color: #f00;
  padding: 23px;
  border-radius: 50px;
}

.contact-box span {
  font-size: 40px;
  display: inline-block;
  color: var(--whiteColor);
  font-weight: bold;
  margin: 0 15px;
}
.contact-box span:first-child {
  background-color: var(--whiteColor);
  border-radius: 70px;
  padding: 20px;
}
.contact-box span a {
  transition: 0.3s all;
  display: block;
  color: var(--whiteColor);
}

/*============= ICON =============*/
.icon-facebook-white {
  width: 36px;
  height: 36px;
  display: inline-block;
  background-image: url(../images/icons/facebook.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.icon-messenger-white {
  width: 36px;
  height: 36px;
  display: inline-block;
  background-image: url(../images/icons/messenger.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.icon-telegram-white {
  width: 36px;
  height: 36px;
  display: inline-block;
  background-image: url(../images/icons/telegram.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.icon-youtube-white {
  width: 36px;
  height: 36px;
  display: inline-block;
  background-image: url(../images/icons/youtube.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.icon-tiktok-white {
  width: 36px;
  height: 36px;
  display: inline-block;
  background-image: url(../images/icons/tiktok.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.icon-phone {
  width: 36px;
  height: 36px;
  display: inline-block;
  background-image: url(../images/icons/phone.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.icon-map {
  width: 36px;
  height: 36px;
  display: inline-block;
  background-image: url(../images/icons/map.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.play-prev {
  width: 38px;
  height: 38px;
  display: inline-block;
  background-image: url(../images/icons/prev-default.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--white);
  border-radius: 30px;
  border: 1px solid var(--primaryLight);
}
.nav-social a {
  display: flex;
  align-items: center;
}
.nav-social a span:first-child {
  height: 40px;
  width: 40px;
  border-radius: 40px;
  background-color: var(--primaryColor);
  padding: 2px;
  display: inline-block;
  position: relative;
  margin-right: 15px;
  transition: 0.3s all;
}

.nav-social a span:first-child::before {
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  border: 1px solid var(--primaryColor);
  left: 0;
  top: 0;
  transform: translate(-8%, -8%);
  border-radius: 48px;
}

.nav-social a:hover span:first-child {
  background-color: var(--secondColor);
}
.nav-social a:hover span:first-child::before {
  border: 1px solid var(--secondColor);
}
.play-next {
  width: 38px;
  height: 38px;
  display: inline-block;
  background-image: url(../images/icons/next-default.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--white);
  border-radius: 30px;
}
.social ul li {
  display: inline-block;
  margin: 0 15px;
}
.social ul li a {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--primaryColor);
  border-radius: 50px;
  transition: 0.3s all;
}
.social ul li a:hover{
  background-color: var(--secondColor);
}
.contact-service .social ul li a:hover {
  background-color: var(--secondColor);
}
#contactUs {
  margin-top: 350px;
  margin-bottom: 100px;
}
.container-map {
  border-radius: 30px;
  overflow: hidden;
  display: block;
  position: relative;
  box-shadow: 0px 2px 5px #00000014;
  position: relative;
  z-index: 1;
}

.address {
  background-color: var(--whiteColor);
  color:var(--bodyColor);
  border-radius: 15px;
  padding: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(5%, -30%);
  width: 90%;
  display: flex;
  box-shadow: 0px 2px 5px #00000014;
  transition: 0.3s all;
}
.address div {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: var(--primaryColor);
  display: inline-block;
  align-items: center;
  padding: 5px 8px;
  margin-right: 15px;
}
.address:hover{
  color: var(--primaryColor);
}
  #socialMedia .social{
    text-align: center;
  } 
footer {
  height: 150px;
  width: 100%;
  display: block;
  background-image: url(../images/footer.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
}
footer p {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 20%);
  width: 100%;
  color: #ffffff9c;
}
.scroll-top{
  position: fixed;
  right: 5px;
  bottom: 0%;
  opacity: 0;
  transition: 0.5s all;
}
.scroll-top.active{
    bottom: 20%;
    opacity: 1;
    z-index: 3;
}
.goto-top { 
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 80px;
  border-radius: 50px;
  background-color: var(--primaryColor);
  transition: 0.3s all;
  position: relative;
  box-shadow: 2px 2px 5px 0px #00000070;
  z-index: 1000;
}
.goto-top::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--secondColor);
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.6);
    transition: 0.3s all;
}
.goto-top:hover::before {
    opacity: 1;
    transform: scale(1);
}
.goto-top:hover{
  background-color: transparent;
}
.goto-top img {
  transform: rotate(-90deg);
  max-width: 60%;
  height: auto;
}
.container-thumb {
  border-radius: 50px;
  padding: 70px 50px 0 50px;
  background-color: var(--primaryLight);
  text-align: center;
  margin-left: -50px;
  display: inline-block;
}
.container-thumb img {
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.box-contact {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(0%, -50%);
}
.text-action {
  background-color: var(--secondColor);
  border-radius: 30px;
  padding: 30px;
  display: inline-block;
}

.text-action h5 {
  color: var(--whiteColor);
  font-size: 25px;
  padding: 15px 0;
  position: relative;
}

.text-action h5::before {
  content: "";
  left: 0;
  bottom: 0;
  width: 120px;
  height: 1px;
  background-color: #ffffff59;
  position: absolute;
}
.text-action h5::after {
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--whiteColor);
  position: absolute;
}

.text-action a {
  color: var(--whiteColor);
  font-size: 20px;
  line-height: 34px;
  transition: 0.3s all;
}

.text-action a:hover,
.contact-box span a:hover {
  color: #ffffffa6;
}

.text-action ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.text-action .social ul li {
  margin: 0 10px;
}

.text-action .social ul li a {
  background-color: var(--whiteColor);
}
.text-action .social ul li a:hover {
  background-color: #ffffff87;
}

.flex-viewport {
  position: relative;
  display: block;
  border-radius: 15px;
  border: 1px solid var(--primaryLight);
  padding: 15px;
}

.flex-viewport img {
  max-width: 100%;
}
.flex-viewport ul,
.flex-control-thumbs {
  padding: 0;
  margin: 0;
}
.flex-viewport ul li {
  list-style: none;
}
.flex-prev, .flex-next {
  position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 40px;
    background-color: var(--whiteColor);
    padding: 5px;
    display: block;
    align-items: center;
    text-align: center;
    box-shadow: 0px 2px 5px #00000014;
    transition: 0.3s all;
}
.flex-prev{
  left: 0;
  bottom:50%;
  transform: translate(-50%, -50%);
}
.flex-next{
  right: 0;
  bottom:50%;
  transform: translate(50%, -50%);
}
.flex-prev:hover, .flex-next:hover{
  background-color: var(--primaryColor);
}
.flex-prev:hover svg path,
.flex-next:hover svg path{
  fill: var(--whiteColor);
}
.flexslider-thumbnails .flex-control-thumbs .slick-slide {
  list-style: none;
  display: inline-block;
  border: 1px solid var(--primaryLight);
  border-radius: 15px;
  margin: 5px;
  padding: 10px;
}
.flexslider-thumbnails .flex-control-thumbs .slick-slide.slick-current{
  border:1px solid var(--primaryColor);
}
.shop-single-title {
  font-size: 24px;
  font-weight: bold;
}
.shop-single-sortinfo {
  padding: 15px 0;
  border-top: 1px solid var(--primaryLight);
  border-bottom: 1px solid var(--primaryLight);
  display: block;
  margin: 15px 0;
}

.shop-single-title span:first-child {
  color: var(--bodyColor);
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #000;
  margin-bottom: 15px;
  display: inline-block;
}
.remove-border {
  border: 0 !important;
}

.shop-single-btn .social ul {
  padding: 0;
  margin: 30px 0;
}

.phone-contact a {
  color: var(--bodyColor);
  font-size: 20px;
  position: relative;
  padding: 0 15px;
  transition: 0.3s all;
}
.phone-contact a:hover {
  color: var(--primaryColor);
}
.phone-contact a:first-child {
  padding-left: 0;
}
.phone-contact a::before {
  content: "";
  right: 0;
  top: 0;
  height: 15px;
  width: 1px;
  background-color: var(--bodyColor);
  position: absolute;
  transform: translate(0, 30%);
}
.phone-contact a:last-child::before {
  background-color: transparent;
}
.shop-single-btn h5 {
  padding: 15px 0;
}
.shop-single-btn .social ul li {
  display: inline-block;
  margin: 0 5px;
}

button.btn-close {
  background-color: rgb(0 0 0 / 12%);
  border-radius: 50%;
}

.slide-social .social ul li {
  margin: 15px 0;
  display: block;
}
.slide-social .social ul li a {
  background-color: transparent;
  border: 1px solid var(--primaryColor);
  position: relative;
  z-index: 1;
}
.box-contact ul li a .icon-telegram-white,
.slide-social .social ul li a .icon-telegram-white {
  background-image: url(../images/icons/telegram-default.svg);
}
.box-contact .social ul li a .icon-facebook-white,
.slide-social .social ul li a .icon-facebook-white {
  background-image: url(../images/icons/facebook-default.svg);
}
.box-contact .social ul li a .icon-messenger-white,
.slide-social .social ul li a .icon-messenger-white {
  background-image: url(../images/icons/messenger-default.svg);
}
.box-contact .social ul li a .icon-tiktok-white,
.slide-social .social ul li a .icon-tiktok-white {
  background-image: url(../images/icons/tiktok-default.svg);
}
.box-contact .social ul li a .icon-youtube-white,
.slide-social .social ul li a .icon-youtube-white {
  background-image: url(../images/icons/youtube-default.svg);
}
.slide-social .social ul li a:hover {
  background-color: var(--primaryLight);
}
.slide-social .social ul li a{
  width: 35px;
  height: 35px;
}
.slide-social {
  .icon-facebook-white,
  .icon-messenger-white,
  .icon-tiktok-white,
  .icon-telegram-white{
    width: 20px;
    height: 20px;
    background-size: contain;
  }
}
.slide-social {
    position: fixed;
    top: 50%;
    right: 0%;
    transform: translate(-18%, -50%);
    z-index: 3;
}

/*.full-h {
  height: calc(100vh);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}*/

/*.image-slider img {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-100%, 0);
  transition: 1.2s all;
  opacity: 0;
}*/

/*.slick-active .image-slider img {
  transform: translate(5%, 0);
  opacity: 1;
}*/


.image-slider {
    opacity: 0;
    transform: translateX(-200px);
    transition: transform 1s ease-out, opacity 0.8s ease-out;
    will-change: transform, opacity;
}

.slick-active .image-slider.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.image-slider img {
  max-width: 100%;
}

.content-img img {
  max-width: 100%;
  border-radius: 30px;
}

.break {
  position: relative;
}
.play-list{
  cursor: pointer;
}
.navbar-toggler:focus{
  box-shadow: 0 0 0 transparent;
}
  .show-m{
    display: none !important;
  }
  .hidden-m{
    display: block !important;
  }

.portrait-video-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  background: #000;
  border-radius: 40px;
  padding: 20px 12px; /* simulates phone bezel */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  z-index: 1;
}

.portrait-video-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background-color: #000;
}

.portrait-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Optional: simulate camera speaker at top center */
.portrait-video-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #333;
  border-radius: 3px;
}
.gbstyle{
  position: relative;
  display: block;
}
.gbstyle::before{
  content: '';
  position: absolute;
  /*background-image: url('../images/motor-drawing.png');*/
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 80%;
  max-width: 360px;  
  aspect-ratio: 9 / 16;  
  left: 0%;
  bottom:5%;
  border: 4px solid var(--primaryColor);
  border-radius: 40px;
}
.gbstyle::after{
  content: '';
  position: absolute;
  /*background-image: url('../images/adv.png');*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  width: 100%;
  height: 80%;
  max-width: 360px;  
  aspect-ratio: 9 / 16;  
  right: 0%;
  bottom:5%;
  /*border: 4px solid var(--primaryColor);*/
  border-radius: 40px;
}
.vdo-list{
  transition: 0.3s all;
  position: relative;
}
.vdo-list img{
  border: 1px solid transparent;
  transition: 0.3s all;
}
.active.vdo-list img,
.vdo-list img:hover{
  border: 1px solid var(--primaryColor);
}
.play-vdo{
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.icon.play{
  background-image: url(../images/icons/pause.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  display: inline-block;
}
.active .icon.play{
  background-image: url(../images/icons/play.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  display: inline-block;
}

.slide-show-m{
  display: none;
}

.relative{
  position: relative;
}
.hero-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
  border-radius: 60px;
}
.hero-section::before{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #00000061;
  position: absolute;
  left: 0;
  top: 0;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 30px;
}

.hero-content h3 {
  font-size: 48px;
  margin: 0 0 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-content a {
    font-size: 24px;
    color: var(--whiteColor);
    border: 1px solid var(--whiteColor);
    padding: 15px 40px;
    border-radius: 100px;
    display: inline-block;
    transition: 0.3s all;
    box-shadow: 1px 2px 5px #00000061;
    position: relative;
}
.hero-content a:hover{
    background-color: var(--secondColor);
    border: 1px solid var(--secondColor);  
}

@media only screen and (max-width: 1650px){
  .titleSlider {
      width: calc(100% / 1.3);
      margin-top:30px;
  }   
}
@media only screen and (max-width: 1400px) {
.titleSlider {
    width: calc(100% / 1.4);
}  
  .slick-active .image-slider img {
    transform: translate(0%, 0%);
  }
  .titleModel {
    font-size: 56px;
  }
  .titleBrand {
    font-size: 44px;
  }
  .titleSlider {
    font-size: 26px;
    padding: 0;
    line-height: 40px;
    margin-bottom: 15px;
  }
  .mh {
    display: none;
  }
  .full-h {
    height: calc(75vh);
  }
  .filter-condition li a {
    padding: 10px 10px;
  }
  .list-brand li {
    margin: 0 0px;
  }
  .contact-box span{
    font-size: 36px;
  }
}

@media only screen and (max-width: 1199px) {
  .navbar.navbar-expand-lg .navbar-collapse ul li a {
    padding: 15px 20px;
    margin: 0 10px;
  }
  .titleSlider {
      width: calc(100% / 1.2);
  }  
  #mainSlider{ 
    height: auto;
    padding: 200px 0;
  }
  .image-slider{
    padding: 30px 0;
  }
  .container-video .landscape {
    height: 340px;
  }
  .text-animate-left span,
  .text-animate-right span {
    font-size: 22px;
  }
  .container-thumb {
    display: none;
  }
  .box-contact {
    position: relative;
    transform: translate(0%, 15%);
  }
  .text-action {
    width: 100%;
  }

  #allProduct .text-end {
    text-align: left !important;
  }
  .list-brand {
    padding: 15px;
    margin-top: 15px;
    border: 1px solid var(--primaryLight);
    border-radius: 15px;
  }
  .list-brand li {
    margin: 15px 10px;
  }
  .contact-box span {
    font-size: 30px;
  }
  .contact-service {
    width: calc(56vh);
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 90%);
  }
  .social ul li a{
    height: 40px;
    width: 40px;   
  }
  .social ul li a span{
    width: 20px;
    height: 20px;
    background-size: contain;
  }
}

@media only screen and (max-width: 991px) {
  .image-slider img {
    position: relative;
  }
  .filter-condition {
    padding-left: 0;
    margin-top:15px;
  }  
  .footer p{
    font-size: 10px;
  }
  .dott-slide::before,
  .dott-slide::after {
    background-color: transparent;
  }
  .navbar-collapse {
    background-color: var(--whiteColor);
  }
  .navbar.navbar-expand-lg {
    border-bottom: 1px solid var(--primaryLight);
  }
  .text-animate-left span, .text-animate-right span {
    font-size: 18px;
    margin: 15px 0;
  } 

  .nav-social a {
      font-size: 24px;
      display: flex;
      color: var(--primaryColor);
      font-weight: bold;
  }
  .nav-social.show-m{
    display: block !important;
  }  
   .nav-social.hidden-m{
    display: none !important;
   }
  .shop-single-title{
    margin-top:30px;
  }  
  .list-brand li{
    margin: 15px 10px;
  } 
  .slide-hidden-m{
    display: none;
  }
  .slide-show-m{
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .main-tab {
    padding: 15px !important;
  }
  .titleSlider{
    font-size: 20px;
    line-height: normal;
  }
  .titleBrand,
     .hero-content h3{
    font-size: 24px;
  }
  .titleModel{
    font-size: 36px;
    -webkit-text-stroke: 2px transparent;
  }
  .titleModel span {
    font-size: 14px;
    bottom: -12px;
  }

  .content-slide a,
  .hero-content a{
    font-size: 14px;
  }
  .text-animate-left span,
  .text-animate-right span {
    font-size: 12px;
    margin: 5px 0;
    padding: 10px 15px;
  }
  .main-tab ul.nav-pills li .title-action {
    font-size: 16px;
  }
  .main-tab ul.nav-pills li span {
    font-size: 12px;
  }
  .contact-service {
    width: calc(50vh);
    bottom: 0%;
    left: 55%;
    transform: translate(-50%, 90%);
  }
  .contact-box span {
    font-size: 16px;
  }
  .container-video .landscape {
    height: 250px;
  }
  .contact-box span:first-child {
    padding: 14px;
    width: 70px;
  }

    .image-slider {
      padding: 40px 0 70px;
    }

  .tab-item img{
    width: 70px;
  }
  .navbar-brand img{
      width: 70px;
  }
  .nav-social.show-m a{
    text-align: center;
    align-items: center;
  }
  .nav-social a span:first-child{
    height: 34px;
    width: 34px;
  }
  .nav-social a span:first-child::before{
    height: 40px;
    width: 40px;  
    left: 50%;
    top: 51%;
    transform: translate(-50%, -50%);  
  }
  .nav-social a span:first-child .icon-phone{
    width: 18px;
    height: 18px;
    background-size: contain;
  }
  .image-slider img{
    max-width: 90%;
  } 
  .overflow-m{
    overflow: hidden;
  }
  .subTitleSection{
    font-size: 24px;
  }
  .gbstyle::before,
  .gbstyle::after{
    background-image: none !important;
    border:0;
    left: 0;
    bottom:0
  }

.slide-social {
    bottom: 9%;
    right: 50%;
    transform: translate(50%, 82%);
    text-align: center;
    width: 100%;
}

  .slide-social .social ul li{
    display: inline-block;
    margin: 0 5px;
  }
  .slide-social .social ul li a{
    height: 40px;
    width: 40px;    
    background-color: var(--whiteColor);
    border: 0;
    box-shadow: 1px 1px 5px 0px #00000038;
  }
  .slide-social .social ul li a:hover {
      background-color: #dedfff;
  } 
  .box-contact {
    position: relative;
    transform: translate(0%, 15%);
  }
  section#allProduct .col-sm-6 {
      width: 49%;
  }  
  .product-title{
    font-size: 14px;
  } 
  .slide-social ul {
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);    
      background-color: #ffffff4d;
      padding: 6px;
      display: inline-block;
      border-radius: 50px;
      border: 1px solid var(--primaryLight);
  } 
  #socialMedia .social ul li{
    margin: 0 5px;
  }
  .hero-section{
    border-radius: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .text-animate-left span, .text-animate-right span{
    font-size: 25px;
    width: 100%;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border-radius: 15px;    
  }
  .action-service{
    margin-top:60px;
    text-align: center;
  }
  .contact-service{
    position: relative;
    width: 100%;
    left: 0;
    bottom:0;
    transform: translate(0%, 0%);
  }
  .contact-box span:first-child{
    width: 58px;
  }
  .contact-box span {
    font-size: 18px;
  }
  #contactUs {
      margin-top: 100px;
  }  
  .show-m{
    display: block !important;
  }
  .hidden-m{
    display: none !important;
  }
  .action-service img{
    max-width: 60%;
  }
  .phone-contact a{
    font-size: 16px;
  }
  .goto-top{
    width: 30px;
    height: 50px;   
  }
}