/* ==========================================================================
   BRAVO THEME - Base Styles (Reset + Typography + Utilities)
   ========================================================================== */

/* ------------------------------------------------------------------
   1. CSS RESET / NORMALIZE
   ------------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--bravo-font-body);
  font-size: var(--bravo-fs-base);
  font-weight: var(--bravo-fw-regular);
  line-height: var(--bravo-lh-normal);
  /* color: var(--bravo-text); */
  background-color: var(--bravo-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.white-content * {
    color: var(--bravo-text-light);
}
.white-content .brand-header > img {
	filter: invert(1);
}

#main-content {
	background-image: url(https://bravogroup.vn/wp-content/uploads/2026/06/Bg_Trang_EX-53x300.png);
    background-repeat: repeat-y;
    background-attachment: scroll;
    background-size: cover;
    background-position: top left;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--bravo-transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Remove default focus outline, add custom */
:focus-visible {
  outline: 2px solid var(--bravo-primary);
  outline-offset: 2px;
}


/* ------------------------------------------------------------------
   2. TYPOGRAPHY
   ------------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--bravo-font-heading);
  font-weight: var(--bravo-fw-bold);
  line-height: var(--bravo-lh-tight);
  letter-spacing: var(--bravo-ls-tight);
  /* color: var(--bravo-text); */
}

h1 {
  font-size: var(--bravo-fs-4xl);
  font-weight: var(--bravo-fw-extrabold);
}

h2 {
  font-size: var(--bravo-fs-3xl);
  font-weight: var(--bravo-fw-bold);
}

h3 {
  font-size: var(--bravo-fs-2xl);
  line-height: var(--bravo-lh-snug);
}

h4 {
  font-size: var(--bravo-fs-xl);
  line-height: var(--bravo-lh-snug);
}

h5 {
  font-size: var(--bravo-fs-lg);
  line-height: var(--bravo-lh-snug);
}

h6 {
  font-size: var(--bravo-fs-md);
  line-height: var(--bravo-lh-snug);
  font-weight: var(--bravo-fw-semibold);
}

p {
  margin-bottom: var(--bravo-space-4);
  line-height: var(--bravo-lh-normal);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: var(--bravo-fs-md);
  line-height: var(--bravo-lh-relaxed);
  color: var(--bravo-text-muted);
}

strong, b {
  font-weight: var(--bravo-fw-semibold);
}

small {
  font-size: var(--bravo-fs-sm);
}


/* ------------------------------------------------------------------
   3. LAYOUT UTILITIES
   ------------------------------------------------------------------ */
.bravo-container {
  width: 100%;
  max-width: var(--bravo-container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bravo-container-padding);
  padding-right: var(--bravo-container-padding);
}

.bravo-container--narrow {
  max-width: var(--bravo-container-lg);
}

.bravo-container--wide {
  max-width: var(--bravo-container-2xl);
}

.bravo-section {
  padding-top: var(--bravo-space-20);
  padding-bottom: var(--bravo-space-20);
}

.bravo-section--sm {
  padding-top: var(--bravo-space-12);
  padding-bottom: var(--bravo-space-12);
}

.bravo-section--lg {
  padding-top: var(--bravo-space-24);
  padding-bottom: var(--bravo-space-24);
}


/* ------------------------------------------------------------------
   4. TEXT UTILITIES
   ------------------------------------------------------------------ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-primary { color: var(--bravo-primary); }
.text-secondary { color: var(--bravo-secondary); }
.text-muted { color: var(--bravo-text-muted); }
.text-light { color: var(--bravo-text-light); }
.text-dark  { color: var(--bravo-text); }

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: var(--bravo-ls-wide);
}


/* ------------------------------------------------------------------
   5. DISPLAY UTILITIES
   ------------------------------------------------------------------ */
.d-none    { display: none; }
.d-block   { display: block; }
.d-flex    { display: flex; }
.d-grid    { display: grid; }
.d-inline  { display: inline; }
.d-inline-block { display: inline-block; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.gap-1 { gap: var(--bravo-space-1); }
.gap-2 { gap: var(--bravo-space-2); }
.gap-3 { gap: var(--bravo-space-3); }
.gap-4 { gap: var(--bravo-space-4); }
.gap-6 { gap: var(--bravo-space-6); }
.gap-8 { gap: var(--bravo-space-8); }


/* ------------------------------------------------------------------
   6. SPACING UTILITIES
   ------------------------------------------------------------------ */
.mb-0  { margin-bottom: 0; }
.mb-2  { margin-bottom: var(--bravo-space-2); }
.mb-4  { margin-bottom: var(--bravo-space-4); }
.mb-6  { margin-bottom: var(--bravo-space-6); }
.mb-8  { margin-bottom: var(--bravo-space-8); }
.mb-12 { margin-bottom: var(--bravo-space-12); }

.mt-0  { margin-top: 0; }
.mt-4  { margin-top: var(--bravo-space-4); }
.mt-8  { margin-top: var(--bravo-space-8); }


/* ------------------------------------------------------------------
   7. ANIMATION KEYFRAMES
   ------------------------------------------------------------------ */
@keyframes bravoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes bravoFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bravoFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bravoSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bravoSlideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bravoScaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bravoPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.7; }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Scroll-triggered animation classes */
.bravo-animate {
  opacity: 0;
  transition: opacity var(--bravo-transition-slow),
              transform var(--bravo-transition-slow);
}

.bravo-animate--fade-up {
  transform: translateY(30px);
}

.bravo-animate--fade-left {
  transform: translateX(-40px);
}

.bravo-animate--fade-right {
  transform: translateX(40px);
}

.bravo-animate--scale {
  transform: scale(0.9);
}

.bravo-animate.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}


/* ------------------------------------------------------------------
   8. SCREEN READER ONLY
   ------------------------------------------------------------------ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ------------------------------------------------------------------
   9. WORDPRESS SPECIFIC
   ------------------------------------------------------------------ */
.alignwide {
  max-width: var(--bravo-container-xl);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.wp-block-image img {
  border-radius: var(--bravo-radius-md);
}

/* WordPress alignment */
.alignleft {
  float: left;
  margin-right: var(--bravo-space-6);
  margin-bottom: var(--bravo-space-4);
}

.alignright {
  float: right;
  margin-left: var(--bravo-space-6);
  margin-bottom: var(--bravo-space-4);
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Home page */
div#hero-video, #video-first, #video-second {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
}

#video-second, #hero-video.playing > #video-first, #hero-video.playing .video-cursor {
    display: none;
}

#hero-video.playing > #video-second {
    display: block !important;
}

div#top-100vh {
    margin-top: 100vh;
}
.video-cursor {
    position: fixed;
    left: 50%;
    top: -50%;
    z-index: 9999;

    pointer-events: none;

    display: flex;
    flex-direction: column;
    align-items: center;

    transform: translate(-50%, -50%);
}
.video-cursor-circle {
    width: 90px;
    height: 90px;

    border-radius: 50%;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.video-cursor-circle img {
    width: 40px;
    height: auto;
}
.video-cursor-text {
    margin-top: 12px;

    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;

    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.brand-section{
    width:min(1300px,90%);
    margin:auto;
    padding:100px 0;
}
.brand-header {
    display: grid;
    grid-template-columns: 1fr 250px;
}
.brand-header h2 {
    font-size: 6.5rem;
    font-weight: 300;
    line-height: 1.2;
}
.brand-header > img {
    justify-self: end;
    align-self: end;
    margin-bottom: 1.25rem;
}
.brand-header p{
    max-width:700px;
    margin-top:25px;
    color:#3f4b61;
	grid-column: span 2;
}

.brand-slider{
    position:relative;
    height:540px;
    margin-top:80px;
}
.brand-card{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:60px;
    border-radius:25px 120px 25px 25px;
    background:#020202;
    border:1px solid rgba(255,255,255,.25);
	border-left-color: #e5e7eb;
    overflow:hidden;
    transition:.7s cubic-bezier(.22,.61,.36,1);
}
.brand-card::before {
    content: "";
    position: absolute;
    width: 1000px;
    height: 1000px;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(ellipse, rgba(40, 160, 255, .9), rgba(155, 80, 255, .8), transparent 70%);
    filter: blur(80px);
    z-index: 0;
}
.brand-left{
    position:relative;
    z-index:2;
}

.number {
    font-size: 10rem;
    font-weight: 600;
    color: #f7c90e;
}

.subtitle{
	font-size: 30px;
    margin-top: -30px;
    color: white;
}

.btn-detail{
    margin-top:50px;
    display:inline-block;
    background:#fffde8;
    color:#111;
    padding:18px 45px;
    border-radius:50px;
    text-decoration:none;
	font-weight: 600;
}
.btn-detail > i {
    color:#111;
}
.btn-detail:hover {
    background: #ffb9bb;
    color: #111;
}
.btn-detail:hover > i {
    transform: rotate(-45deg);
}
.brand-right{
    display:flex;
    gap:25px;

    position:relative;
    z-index:2;
}

.image-pill{
    overflow:hidden;
    border-radius:35px;
    border:4px solid rgba(255,255,255,.8);
	width: 160px;
    height: 340px;
}
.brand-right.custom-more .image-pill {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-gap: 2%;
}
.image-pill:nth-child(2){
	margin-top: -35px;
}

.image-pill img{
    width:100%;
    height:100% !important;
    object-fit:cover;
}
.active{
    z-index:40;
    transform:translateX(30px);
}
.stack-1{
    z-index:30;
    transform:translateX(20px);
	margin: 3px 0px;
}
.stack-2{
    z-index:20;
    transform:translateX(10px);
	margin: 6px 0px;
}
.stack-3{
    z-index:10;
    transform:translateX(0);
	margin: 9px 0px;
}
.hidden{
    opacity:0;
    pointer-events:none;
}
.slider-nav{
    margin-top: -65px;
    z-index: 99;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    position: relative;
}

.slider-nav button{
	width: 60px;
    height: 60px;
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
}

.service-card{
    display:flex;
    gap:60px;
    align-items:stretch; /* Quan trọng */
	background: #ffffff;
    padding: 35px;
    margin-top: 3%;
    border-radius: 35px;
    border: 1px solid #f3f4f6;
}
.service-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.service-image{
    flex:1;
    display:flex;
}
.service-image img {
    width: 100%;
    height: 420px !important;
    object-fit: cover;
    border-radius: 30px !important;
}
.service-content h2{
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    color:#000;
    margin-bottom:25px;
}
.service-content p{
    font-size:18px;
    line-height:1.6;
    color:#2f2f2f;
    margin-bottom:40px;
}

/* BUTTON */
.service-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    background: #ece8d2;
    color: #000;
    border-radius: 999px;
    font-weight: 600;
    transition: .3s;
}
.service-btn:hover{
    transform:translateY(-3px);
    background:#e5dfbf;
}
.service-btn span{
    font-size:28px;
}

.hst-image {
    margin-top: 5%;
}

.service-list {
  margin: 80px auto;
  position: relative;
}

.service-item {
  display: grid;
  grid-template-columns: 1.5fr 400px 1fr;
  padding: 40px 0;
  border-bottom: 2px solid #6b7280;
  cursor: pointer;
  min-height: 400px;
  align-items: center;
  gap: 2%;
}

.col.title {
  	font-size: 3rem;
    font-weight: 700;
    opacity: 0.4;
    transition: 0.3s;
}
span.list-number {
    display: block;
}
.col.desc {
  	font-size: 1.2rem;
    opacity: 0.7;
	margin-left: 10px;
}

.col.arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 4rem;
	opacity: 0.4;
	height: 100%;
	width: 100%;
    overflow: hidden; 
}

/* icon layer */
.arrow i {
  position: relative;
  z-index: 2;
}

/* image full cover */
.hover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.col.arrow > .hover-img, .col.arrow:hover > i {
    display: none;
}
.col.arrow:hover > .hover-img, .col.arrow > i {
    display: block;
}

.ecosystem{
    position:relative;
    width:1200px;
    height:900px;
    margin:auto;
}

/* ORBITS */

.orbit{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

.orbit img{
    width:100%;
    display:block;
}

.orbit-1{
    width:760px;
    z-index:1;
}

.orbit-2{
    width:560px;
    z-index:2;
}

.orbit-3{
    width:400px;
    z-index:3;
}

/* CENTER */

.center-circle{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:220px;
    height:220px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        #ff4d61,
        #760814
    );

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:10;
}

.center-circle::after{

    content:"";

    position:absolute;

    inset:-4px;

    border:2px solid #d91f36;

    border-radius:50%;
}

.center-circle span{
    font-size:34px;
    font-weight:700;
}

/* NOTE */

.orbit-note{

    position:absolute;

    width:12px;
    height:12px;

    border-radius:50%;

    background:#d91f36;

    z-index:5;
}

.orbit-item h3 > svg {
	display: none;
}
.orbit-wrapper .orbit-item:nth-child(2) > h3 > svg, .orbit-wrapper .orbit-item:nth-child(8) > h3 > svg {
    background-color: #006d38;
}
.orbit-wrapper .orbit-item:nth-child(3) > h3 > svg, .orbit-wrapper .orbit-item:nth-child(5) > h3 > svg, .orbit-wrapper .orbit-item:nth-child(7) > h3 > svg, .orbit-wrapper .orbit-item:nth-child(9) > h3 > svg, .orbit-wrapper .orbit-item:nth-child(11) > h3 > svg {
    background-color: #f06500;
}
.orbit-wrapper .orbit-item:nth-child(4) > h3 > svg, .orbit-wrapper .orbit-item:nth-child(10) > h3 > svg {
    background-color: #1063ff;
}
.orbit-wrapper .orbit-item:nth-child(6) > h3 > svg {
    background-color: #91161d;
}


/* SERVICE */

.service{

    position:absolute;

    display:flex;
    align-items:center;

    gap:14px;

    z-index:20;
}

.service.left{

    flex-direction:row-reverse;
}

.service.right{

    flex-direction:row;
}

.service-content{

    display:flex;
    flex-direction:column;
}

.service.left .service-content{

    align-items:flex-end;
    text-align:right;
}

.service.right .service-content{

    align-items:flex-start;
    text-align:left;
}

.service-title{

    font-size:18px;
    font-weight:600;
	white-space: nowrap;
}

.service-desc{

    font-size:13px;

    line-height:1.5;

    opacity:0;

    transition:.3s;
	white-space: nowrap;
}

.service:hover .service-desc{

    opacity:1;
}

/* ICON */

.service-icon{

    width:58px;
    height:58px;

    border-radius:50%;

    background:#d91f36;

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;
}

.service-icon i{

    color:#fff;
    font-size:22px;
}

#logo-custom figure.swiper-slide-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    justify-content: center;
    align-items: center;
}
footer#site-footer {
    background-image: url(https://bravogroup.vn/wp-content/uploads/2026/06/Bg_Footer.png);
    background-repeat: repeat, repeat-y;
    background-attachment: scroll;
    background-size: auto auto, cover;
    background-position: 0% 0%, top right;
}
.custom-services {
	width: min(1300px, 90%) !important;
	margin: auto !important;
}
.custom-services .sv-title {
    font-size: 4.5rem;
}
.custom-services .sv-description {
    font-size: 1.875rem;
}
.custom-services .btn-detail {
    margin-top: 10px;
}
div#serviceList > .btn-detail {
    display: block;
    width: fit-content;
    margin: 3% auto 0px auto;
}

.custom-services .detail-item-service {
  opacity: 0;
  height: 0;
  transform: translateY(15px);
  transition: all 0.5s ease;
}

.custom-services.show-items .detail-item-service {
  opacity: 1;
  height: fit-content;
  transform: translateY(0);
}

.detail-service {
    border: 1px solid #69727d;
    border-radius: 35px 35px 15px 15px !important;
    padding: 15px 0px 0px 0px !important;
	height: fit-content !important;
}

.detail-service h4.elementor-icon-box-title {
    font-weight: 300;
    font-size: 1.4rem;
}
.detail-service > img {
    border-radius: 15px !important;
	aspect-ratio: 16 / 9;
    object-fit: cover;
}

.info-item-detail {
	display: none;
}
.info-item-detail p.info-item {
	padding: 0 5%;
}

.detail-service:hover .info-item-detail {
	display: block;
    position: absolute !important;
    top: 0;
    left: 0;
    background: #0d121cc9;
    width: 100%;
    height: 100%;
	border-radius: 35px 35px 15px 15px;
}
.detail-service:hover .info-item-detail .elementor-widget-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
ul.note-item > li {
    border: 1px solid lightgrey;
    width: fit-content;
    padding: 3px 15px;
    border-radius: 20px;
    display: inline-block;
    margin: 0px 10px;
}

.border-custom {
    border: 1px solid #d6d7d882;
    background: #ffffff;
    border-radius: 2rem !important;
}

.stack-slider{
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
}
.stack-slider .e-con-inner{
  position: relative;
  width: 100%;
  height: 100%;
}
.stack-slider .stack-card{
  position: absolute;
  inset: 0; /* 👈 quan trọng nhất: full width + height */

  width: 100%;
  height: max(450px, 100%);

  transition: transform 0.5s ease, opacity 0.5s ease;
  will-change: transform;

  opacity: 0;
  border-radius: 15px;
}
.stack-slider .stack-card.is-active{
    opacity: 1;
    z-index: 10;
    transform: translateX(30px) scale(1);
}
.stack-slider .stack-card.is-1{
    opacity: 0.9;
    z-index: 9;
    transform: translateX(13px) scale(0.97);
}
.stack-slider .stack-card.is-2{
    opacity: 0.9;
    z-index: 8;
    transform: translateX(-5px) scale(0.94);
}
.stack-slider .stack-card.is-3{
    opacity: 0.9;
    z-index: 7;
	transform: translateX(-21px) scale(0.91);
}
.stack-card .elementor-widget-container {
    margin: 4%;
}
.stack-card img.dg-logo {
    width: 15%;
    height: auto;
    border-radius: 50%;
}
.stack-card p.dg-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.5rem;
	color: var(--1100, #0D121C);
}
.stack-card p.dg-desc {
    margin: -5px 0;
    text-align: justify;
	color: #6E6E6E;
}
.stack-card .btn-detail {
    position: absolute;
    bottom: 5%;
    padding: 2% 5%;
}
.stack-card .btn-detail:hover {
    border: 1px solid gray;
}
.stack-card .btn-detail:hover > i {
     transform: rotate(-45deg);
}
.stack-card .btn-next {
    position: absolute;
    right: 5%;
    bottom: 4%;
    font-size: 2rem;
}
.bg-dg-1, .bg-dg-2, .bg-dg-3, .bg-dg-4 {
	border-top-right-radius: 10rem !important;
}
.bg-dg-1 {
	background: #F8CECF;
}
.bg-dg-2 {
	background: #c7e3ca;
}
.bg-dg-3 {
	background: #ffe148;
}
.bg-dg-4 {
	background: #d2e3f3;
}
.section-header {
    display: grid;
    grid-template-columns: 1fr auto;
	align-items: anchor-center;
}
.section-header > img {
    filter: invert(1);
    width: 5rem;
}
.section-header > h3 {
    font-size: 3rem;
}
.custom-grid > div {
	grid-template-rows: auto 1fr !important;
}

.orbit-wrapper {
    --size:min(800px,90vw,90vh);
    position:relative;
    width:var(--size);
    height:var(--size);
    margin:auto;
}

/* CENTER */
.center-image {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
}

.center-image img {
    grid-area: 1 / 1;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.center-image img:nth-child(1) {
    width: 90%;
	margin-top: -2%;
}

.center-image img:nth-child(2) {
    width: 50%;
	animation: spin-hst 30s linear infinite;
    /* animation: rotate-cw 20s linear infinite;
    transform-origin: center center; */
}

.center-image img:nth-child(3) {
    width: 40%;
	animation: spin-hst 20s linear infinite reverse;
    /* animation: rotate-ccw 15s linear infinite;
    transform-origin: center center; */
}

.service-list.bg-black {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 3%;
}
.service-list.bg-black > a {
    background: black;
    color: white;
    justify-content: center;
}

@keyframes spin-hst {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ITEM */
.orbit-item{
    position:absolute;
    z-index:10;
    display:flex;
    align-items:center;
    gap:20px;
	width: 500px;
}
.orbit-item.left{
    flex-direction:row-reverse;
    text-align:right;
	right: 50%;
	top: 46%;
	transform: rotate(var(--angle)) translateX(calc(var(--size) * 0.9 / 2)) rotate(calc(var(--angle) * -1));
}
.orbit-item.right{
    flex-direction:row;
    text-align:left;
	left: 50%;
	top: 46%;
	transform: rotate(var(--angle)) translateX(calc(var(--size) * 0.9 / 2)) rotate(calc(var(--angle) * -1));
}

/*
.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:
        rotate(var(--angle))
        translateX(var(--radius))
        rotate(calc(-1 * var(--angle)));
    transform-origin: center center;
}
*/
.orbit-item h3 {
    margin: 0 0 10px;
    color: #081224;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.orbit-item p {
    margin: -10px 0px 0px;
    color: #666;
    font-size: 15px;
	display: none;
}
.orbit-item:hover p {
	display: block;
}
.left {
    text-align: right;
}

.right {
    text-align: left;
}

.timeline-section {
    position: relative;
}

.timeline-sticky {
    position: sticky;
    top: 0;

    height: 100vh;

    overflow: hidden;

    display: flex;
	flex-direction: column;
}
.timeline-sticky > .brand-header {
	width: 80%;
    margin: 5% auto 1% auto;
}
.timeline-track {
    display: flex;
    gap: 40px;

    padding: 0 10vw;

    will-change: transform;
}

.timeline-card {
    width: 70%;
    flex-shrink: 0;
    background: #fff;
    border-top-right-radius: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    display: grid;
    grid-template-columns: 150px 1fr;
    padding: 5%;
}
.timeline-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 50% !important;
    aspect-ratio: 1 / 1;
}
.timeline-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.timeline-card h3 {
    margin: 20px;
    font-size: 28px;
}

.timeline-card p {
    margin: 0 20px 20px;
}
div#logo-custom .elementor-image-carousel {
    animation: marquee 15s linear infinite;
}

.banner-hero {
	position: absolute !important;
    top: 0;
    left: 0;
}

/* Start Page giới thiệu */
.gt-header-3 {
    align-items: center;
    margin-top: 5%;
	margin-bottom: 20px;
}
img.gt-quay-180 {
    transform: rotate(90deg);
}
.gt-header-3 > h3 {
    font-size: 3.2rem;
}
.gt-header-3 > img {
    width: 25%;
    margin: 0;
}
.gt-ketnoi {
    margin-top: 20px;
    margin-bottom: 20px;
}
.gt-style-1 {
    gap: 5%;
}
.gt-style-1 h2.sv-title {
    margin-bottom: 5%;
    font-size: 2.5rem;
}
.gt-style-1 h4.gt-item-title {
    font-size: 2.5rem;
}
.gt-style-1 p.gt-item-desc, .gt-style-2 p {
    font-size: 1.5rem;
}
.info-gd {
    text-align: center;
	background: linear-gradient(8.98deg, #831218 17.24%, #A81D24 92.69%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.info-gd > h5 {
    font-size: 1.8rem;
    margin-top: 15px;
}
.img-full-width img {
	width: 100vw !important;
    max-width: none !important;
    height: auto !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
/* End Page giới thiệu */

/* Start Page câu chuyện */
.s-cauchuyen .border-custom {
    width: 100% !important;
}
.s-cauchuyen .custom-services .sv-title {
    font-size: 2.5rem;
}
.s-cauchuyen .custom-services .sv-description {
    font-size: 1.5rem;
}
.s-cauchuyen {
	gap: 30px;
}
.s-cauchuyen .custom-size-p p {
    font-size: 1.3rem;
}
/* End Page câu chuyện */

/* Start Post */
.entry-thumbnail {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}
.bg-related-image > img {
	width: 100%;
    border-radius: 10px !important;
}
.bg-related-posts {
	margin-left: 5%;
	gap: 5%;
    display: grid;
}
a.bg-related-card:hover {
	color: #a10a9bf0;
}
.entry-content .brand-header h2 {
    font-size: 3.5rem;
    font-weight: 400;
}
/* End Post */

/* Start Page Liên Hệ */
.lh-style-link {
    grid-template-rows: 1fr auto !important;
}
.lh-style-link > div {
    background-color: #fff;
    border-radius: 10px;
    height: fit-content;
    padding: 20px !important;
}
a.link-dv {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-gap: 10px;
    justify-content: center;
    align-items: center;
    background-color: #dfe3eb;
    border-radius: 10px;
    padding: 10px;
	font-size: 1.8rem;
    font-weight: 700;
}
a.link-dv:hover {
    color: #9a1955;
	text-decoration: underline;
}
a.link-dv > i {
    margin: auto;
	background: linear-gradient(180deg, #A91D24 -31.58%, #8B2026 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.link-sup-info {
    display: grid;
    font-size: 0.9rem;
    font-weight: 500;
}
.link-sup-info {
    display: grid;
    font-size: 0.9rem;
    font-weight: 400;
}
.lh-form-contact {
    background-color: #fff;
    border-radius: 10px !important;
    margin: 10px 0px !important;
	padding: 20px 25px !important;
}
.lh-form-contact > h2 {
    margin-bottom: 25px !important;
}
.mg-top-10 {
    margin-top: 10% !important;
}
.info-map {
    display: grid;
    grid-gap: 20px;
}
.item-map {
    border: 1px solid;
    padding: 10px;
    border-radius: 10px;
}
.item-map:hover {
    background-color: #f2bfc7;
	cursor: pointer;
}
.item-map.active-1 {
    background-color: #efcfd4;
}
.item-map > a:hover {
    color: #b542ce;
    font-weight: 600;
}
.item-map i {
    background: linear-gradient(180deg, #A91D24 -31.58%, #8B2026 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
/* End Page Liên Hệ */

/* Start Tin tức */
.bg-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
a.bg-post-card {
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(40px);
    border-radius: 15px;
}
.bg-posts-grid > a:hover {
    display: inline-block;
	opacity: 0.7;
}
/* End Tin tức */

/* Start Marketing Custom */
.marketing-custom-card {
	column-gap: 10%;
    border-radius: 25px;
    background-color: #fff;
    flex-direction: row;
	margin: 3% 0 !important;
	padding: 0px !important;
}
.marketing-custom-card button.marketing-btn {
    background-color: #fff;
    border: 1px solid;
}
.marketing-active .marketing-btn {
	display: none;
}
.marketing-active .more-detail {
	display: block;
}
.marketing-active .marketing-custom-img {
	height: 450px;
}
.marketing-custom-card > div {
	padding: 0px !important;
}
.marketing-custom-card.marketing-active .marketing-custom-img > div.elementor-widget-container > img {
    height: 70%;
}
.marketing-custom-card .marketing-custom-img > div.elementor-widget-container {
	align-items: center;
    display: flex;
    background-color: #F8CECF;
}
.marketing-custom-card.marketing-active .marketing-custom-img.custom-img-left > div.elementor-widget-container > img {
    transform: translateX(40%) scale(1.2);
}
.marketing-custom-card.marketing-active .marketing-custom-img.custom-img-rigth > div.elementor-widget-container > img {
    transform: translateX(-40%) scale(1.2);
}
.marketing-custom-card .marketing-custom-img.custom-img-left > div.elementor-widget-container {
    border-radius: 0 50px 50px 0;
}

.marketing-custom-card .marketing-custom-img.custom-img-rigth > div.elementor-widget-container {
    border-radius: 50px 0 0 50px;
}

.marketing-custom-card .marketing-custom-img > div.elementor-widget-container > img {
    height: 95%;
    width: auto;
    aspect-ratio: 1;
    object-fit: cover;
	position: relative;
}
.marketing-custom-card .marketing-custom-img.custom-img-left > div.elementor-widget-container > img {
    transform: translateX(25%) scale(1.2);
}
.marketing-custom-card .marketing-custom-img.custom-img-rigth > div.elementor-widget-container > img {
    transform: translateX(-25%) scale(1.2);
}

.more-detail {
	display: none;
}
.marketing-custom-detail {
    padding: 5%;
}
.more-detail > ul {
    padding: 5px 30px;
}

.more-detail > ul > li {
    list-style: disc;
    padding: 3px 5px;
}
.white-content.full-screen {
    min-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0 calc((100vw - min(100%, var(--width))) / 2) !important;
}
.white-content.full-screen .brand-header {
	grid-template-columns: 1fr auto;
}
.marketing-giaiphap {
    margin: 3% 0;
}
.marketing-giaiphap .gallery {
    text-align: center;
}
.section-khachhang {
    margin-bottom: -10% !important;
}
.section-khachhang div#gallery-2 {
    height: 200px;
    margin: 20px 0;
	text-align: center;
}
/* End Marketing Custom */

/* Start Event */
.event-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(40px);
    border-radius: 20px !important;
}
.event-item h3.event-title {
    display: grid;
    grid-template-columns: 1fr auto;
}
.event-item h3.event-title > i {
    transform: rotate(-45deg);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: linear-gradient(180deg, #5F32BA 0%, #EA65EF 100%);
}

/* End Event */

/* Start Travel */
.travel-info {
    position: absolute !important;
    aspect-ratio: 6 / 4;
}
.travel-item img {
    aspect-ratio: 7 / 5;
	border-radius: 15px !important;
}
span.travel-tag {
    background-color: #fff;
    color: black;
    padding: 3px 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
}
.travel-tags {
    display: flex;
    justify-content: space-between;
	align-items: center;
}
.travel-info > div {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px 25px 0px 15px;
    padding-bottom: 25px;
}
p.travel-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #fff;
    color: black;
    font-weight: 600;
    position: relative;
    left: -15px;
    bottom: -26px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 10px;
}
i.travel-icon {
    background-color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
}
/* End Travel */

/* Start Hospitality */
.h-custom-info {
    position: absolute !important;
    height: 100%;
}
.h-custom-info > div.elementor-widget-container {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}
.h-custom-info.h-custom-info-right {
    right: 5%;
}
.h-custom-info.h-custom-info-right > div.elementor-widget-container {
    align-items: end;
}
.h-custom-info.h-custom-info-left {
    left: 5%;
}
.h-custom-info.h-custom-info-left > div.elementor-widget-container img.hkh-logo {
    margin: -15%;
}
.page-mgb-10 {
    margin-bottom: -10% !important;
}
/* End Hospitality */

/* responsive */

@media (max-width: 1400px) {

    .orbit-wrapper {
        transform: scale(.8);
        transform-origin: center top;
        height: 1100px;
    }
}

@media (max-width: 992px) {

    .orbit-wrapper {
        width: 100%;
        height: auto;
        transform: none;
    }

    .center-image {
        position: relative;
    }

    .center-image img {
        width: 100%;
        max-width: 600px;
        margin: auto;
    }

    .orbit-item {
        position: static;
        transform: none;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
}