* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'svn';
}

@font-face {
  font-family: "svn";
  src: url("../fonts/SVN-Avo.ttf");
}


@keyframes wave {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.13);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes lenxuong {
  0% {
    transform: translateX(0px);
  }

  25% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(15px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes hihi {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scaleZ(1);
  }

  10%,
  20% {
    -webkit-transform: rotate3d(0, 0, 1, -30deg);
    -ms-transform: rotate3d(0, 0, 1, -30deg);
    transform: rotate3d(0, 0, 1, -30deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: rotate3d(0, 0, 1, 20deg);
    -ms-transform: rotate3d(0, 0, 1, 20deg);
    transform: rotate3d(0, 0, 1, 20deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scaleZ(1);
  }
}

@keyframes tada {
  0% {
    transform: scaleZ(1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  20%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    transform: scaleZ(1);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scaleZ(1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scaleZ(1);
  }
}

@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-shake {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-7deg);
  }

  50% {
    transform: rotate(7deg);
  }

  75% {
    transform: rotate(-4deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes flip {
  0% {
    transform: rotateX(0);
  }

  50% {
    transform: rotateX(90deg);
    opacity: 0.5;
  }

  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}

@keyframes strong-sway {
  0% {
    transform: rotate(-4deg);
  }

  100% {
    transform: rotate(4deg);
  }
}

/* HEADER START */
.header {
  z-index: 2;
  position: absolute;
  top: unset;
  left: 0;
  right: 0;
}

.header .header_desk {
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgb(0 0 0 / 65%);
}

.header .header_desk ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.header .header_desk ul li {
  list-style: none;
  padding: 20px 0px 15px 0px;
}

.header .header_desk ul li a {
  margin-top: -8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
}

.header .header_desk ul li a:hover {
  text-decoration: none;
}

.header .header_desk ul li a svg {
  /* margin: 0px 10px; */
  margin-right: 10px;
  width: 1.5vw;
  color: #FFF;
}

.header .header_mobile {
  display: none;
}

@media(max-width:767px) {
  .header {
    z-index: 4;
  }

  .header .header_mobile {
    display: block;
  }

  .header .header_desk {
    display: none;
  }

  .header .header_mobile .menu_set {
    background-color: rgb(0 0 0 / 80%);
    padding: 10px 0px;
  }

  .header_mobile .menu_set .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px !important;
  }

  .header .header_mobile .container .link_download {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header .header_mobile .container .link_download a img {
    width: 28vw;
    margin: 0 5px;
  }

  .header .header_mobile .container .link_download a img.android {
    width: 25vw;
    margin: 0 5px;
  }

  .header_mobile .container .logo {
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header .header_mobile .logo .img_logo img {
    width: 11vw;
    border-radius: 13px
  }

  .header .header_mobile .logo .name_game p {
    font-weight: 700;
    color: #FFC971;
    font-family: 'exo';
    font-size: 3.5vw;
    margin-left: 7px;
    margin-bottom: 0;
  }

  .header .header_mobile .btn_menu_mobile .item_menu {
    background-color: white;
    width: 35px;
    height: 5px;
    margin: 5px 0px;
    border-radius: 15px;
  }

  .header .header_mobile .btn_menu_mobile {
    margin-right: 10px;
  }

  .header .header_mobile .btn_menu_mobile.active {
    position: relative;
    top: 10px;
    width: 35px;
    height: 35px;
  }

  .header .header_mobile .btn_menu_mobile.active .top {
    position: absolute;
    transform: rotate(45deg);
    transition: 0.5s ease-in-out;
  }

  .header .header_mobile .btn_menu_mobile.active .center {
    display: none;
  }

  .header .header_mobile .btn_menu_mobile.active .bottom {
    position: absolute;
    transform: rotate(134deg);
    transition: 0.5s ease-in-out;
  }

  .header .header_mobile .menu_move {
    background-color: black;
    padding: 10px;
    width: 35vw;
    height: 30vw;
    position: fixed;
    right: 0;
    z-index: 999;
    opacity: 0;
    border: 1px solid white;
    transform: translateX(130px);
    transition: 0.5s ease-in-out;
    border-radius: 10px;
  }

  .header .header_mobile .menu_move.active {
    transform: translateX(0);
    opacity: 1;
    transition: 0.5s ease-in-out;
  }

  .header .header_mobile .menu_move ul li {
    list-style: none;
  }

  .header .header_mobile .menu_move ul li a {
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    color: white;
  }

  .header .header_mobile .menu_move ul li a svg {
    margin: 0px 5px;
    width: 15px;
  }

  .header .header_mobile .menu_move hr {
    background-color: white;
    margin: 1vw 0px;
  }
}

/* HEADER END */

/* Footer start */

.footer {
  position: relative;
  text-align: center;
  background-color: #000;
  color: white;
  padding: 15px 0px;
}

.footer p,
.footer a {
  font-family: "exo";
  margin: 0;
  font-size: 0.8vw;
}

.footer a:hover {
  color: white;
  text-decoration: none;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0px;
  flex-wrap: wrap;
}

.footer .logo {
  width: 10vw;
}

.footer a {
  text-decoration: none;
  color: white;
}

.footer .warring_desk {
  width: 3.5vw;
}

.footer .warring_mobile {
  display: none;
}

@media (max-width: 767px) {

  .footer p,
  .footer a {
    font-size: 2.3vw;
  }

  .footer .warring_mobile {
    display: block;
    margin-left: 10px;
  }

  .footer .logo {
    margin: 15px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer .logo {
    width: 100%;
  }

  .footer .warring_desk {
    display: none;
  }
}

/* FOOTER END */

/* LOADING  */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d21e21;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading .spinner {
  position: relative;
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-top: 8px solid #fff;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  animation: spin 1s linear infinite;
}

.loading .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

#content {
  visibility: hidden;
}

/* LOADING END  */

/* GENERAL SETTINGS */
body.active {
  overflow: hidden !important;
}

.landing {
  background-image: url("../images/bg-landing-v2.webp");
  background-position: top;
  background-size: 100%;
  background-repeat: no-repeat;
  object-fit: contain;
  position: relative;
}

@media (max-width: 767px) {
  .landing {
    background-image: url("../images/bg-landing-mobi.webp");
    background-position: top;
    margin-top: -2vw;
  }
}


::-webkit-scrollbar {
  display: none;
}

video.desk {
  display: block;
}

video.mob {
  display: none;
}

@media (max-width: 767px) {
  video.desk {
    display: none;
  }

  video.mob {
    display: block;
  }
}

img.desk {
  display: block;
}

img.mob {
  display: none;
}

@media (max-width: 767px) {
  img.desk {
    display: none;
  }

  img.mob {
    display: block;
  }
}

.desk {
  display: block;
}

.mob {
  display: none;
}

@media (max-width: 767px) {
  .desk {
    display: none;
  }

  .mob {
    display: block;
  }
}

.title {
  margin: auto;
}

/* END GENERAL SETTINGS */

/* TAB 1  */
.tab1 {
  position: relative;
}

.tab1 .logo {
  width: 6%;
  position: absolute;
  top: 0%;
  left: 5%;
  z-index: 2;
}

.tab1 .btn-play {
  width: 4.5%;
  position: absolute;
  top: 29%;
  left: 62%;
  animation: zoom 1s infinite linear;
  cursor: pointer;
}

.tab1 .warning-tab1 {
  width: 8%;
  position: fixed;
  top: 20%;
  left: 0;
  z-index: 99;
}

.tab1 .slogan {
  width: 38%;
  position: absolute;
  top: 27%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 3;
}

.tab1 .logo-game {
  width: 12%;
  position: absolute;
  top: 4.5%;
  right: 2.5%;
}

.tab1 .list-btn-tab1 {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  width: 31%;
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 6;
}

.tab1 .list-btn-tab1 .list-btn-top {
  display: flex;
  gap: 1vw;
}

.tab1 .list-btn-tab1 .list-btn-top .item-btn-top {
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

.tab1 .list-btn-tab1 .list-btn-top .item-btn-top:hover {
  transform: scale(1.1);
}

.tab1 .list-btn-tab1 .list-btn-bottom {
  display: flex;
  gap: 0.5vw;
}

.tab1 .list-btn-tab1 .list-btn-bottom .item-btn-bottom {
  position: relative;
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

.tab1 .list-btn-tab1 .list-btn-bottom .item-btn-bottom .text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFF;
  font-weight: bold;
  font-size: 1.5vw;
  width: 100%;
  transition: 0.35s ease-in-out;
}

.tab1 .list-btn-tab1 .list-btn-bottom .item-btn-bottom img {
  transition: 0.35s ease-in-out;
}

.tab1 .list-btn-tab1 .list-btn-bottom .item-btn-bottom:hover .text {
  font-size: 1.2vw;
}

.tab1 .list-btn-tab1 .list-btn-bottom .item-btn-bottom:hover img {
  transform: scale(1.05);
}

.tab1 .art-left-1 {
  position: absolute;
  width: 28%;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.tab1 .art-left-2 {
  position: absolute;
  width: 41%;
  left: -1.5%;
  bottom: 5%;
  z-index: 1;
}

.tab1 .art-right-1 {
  position: absolute;
  width: 50%;
  right: 0;
  bottom: 3%;
  z-index: 1;
}

.tab1 .cloud {
  width: 100%;
  position: absolute;
  bottom: -20%;
  z-index: 5;
}

@media (max-width: 767px) {
  .tab1 {
    overflow-x: clip;
    margin-top: 0vw;
  }

  .tab1 .logo-game {
    width: 30%;
    top: 9%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .tab1 .cloud {
    bottom: -12%;
  }

  .tab1 .slogan {
    width: 80%;
    top: 22%;
  }

  .tab1 .btn-play {
    width: 15%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 43%;
  }

  .tab1 .list-btn-tab1 {
    width: 75%;
    top: 80%;
  }

  .tab1 .list-btn-tab1 .list-btn-bottom .item-btn-bottom .text {
    font-size: 3.75vw;
  }

  .tab1 .art-left-1 {
    width: 52%;
    left: -5%;
  }

  .tab1 .art-left-2 {
    width: 70%;
    left: -8%;
  }

  .tab1 .art-right-1 {
    width: 92%;
    right: -20%;
    bottom: 4%;
  }
}

/* TAB 1 END  */

/* TAB 2  */
.tab2 {
  position: relative;
  overflow: hidden;
  padding-top: 3vw;
}

.tab2 .title {
  z-index: 6;
}

.tab2 .content-tab2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin: 0 auto;
  margin-top: 3vw;
  z-index: 9;
  gap: 3vw;
}

.tab2 .content-tab2 .tab2-left {
  width: 45%;
  position: relative;
  /* height: 40vw; */
}

.tab2 .content-tab2 .tab2-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5%;
  position: relative;
}

.tab2 .swiper {
  width: 100%;
  height: 100%;
}

.tab2 .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab2 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab2 .swiper-slide img:nth-child(2) {
  display: none;
}

.tab2 .swiper-slide:hover>img:nth-child(2) {
  display: block;
}


.tab2 .content-tab2 .item-tab2 {
  position: relative;
  cursor: pointer;
  width: 45%;
  transition: all 0.3s ease;
}

.tab2 .content-tab2 .item-tab2:nth-child(3),
.tab2 .content-tab2 .item-tab2:nth-child(4) {
  margin-top: 1vw;
}

.tab2 .content-tab2 .item-tab2:hover {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .tab2 {
    overflow: hidden;
    margin-bottom: 10vw;
  }

  .tab2 .content-tab2 {
    flex-wrap: wrap;
    width: 100%;
  }

  .tab2 .content-tab2 .tab2-left {
    width: 90%;
    padding: 5px;
    margin-right: 0;
  }

  .tab2 .content-tab2 .tab2-right {
    margin-top: 5%;
    width: 90%;
  }

  .tab2 .swiper {
    width: 75%;
  }

  .tab2 .content-tab2 .swiper-pagination {
    left: -25%;
  }

  .tab2 .swiper-pagination-bullet {
    width: 1vw;
    height: 1vw;
    margin: 0 5px;
  }

  .tab2 .swiper-pagination-bullet-active {
    background: url(../images/pagi-active.png);
    width: 2vw;
    height: 2vw;
    background-size: cover;
  }

  .tab2 .content-tab2 .swiper-button-next,
  .tab2 .content-tab2 .swiper-button-prev {
    width: 6vw;
    bottom: 50% !important;
  }

  .tab2 .content-tab2 .swiper-button-prev {
    left: 20%;
  }

  .tab2 .content-tab2 .swiper-button-next {
    right: 20%;
  }

  .tab2 .content-tab2 .swiper-pagination-bullet {
    width: 3.5vw;
    height: 3.5vw;
  }

  .tab2 .content-tab2 .item-tab2 .text .title {
    top: 45%;
    font-size: 3.1vw;
  }

  .tab2 .content-tab2 .item-tab2:nth-child(3),
  .tab2 .content-tab2 .item-tab2:nth-child(4) {
    margin-top: 3vw;
  }
}

/* TAB 3  */
.tab3 {
  position: relative;
  overflow: hidden;
  margin-top: 4vw;
  margin-bottom: 4vw;
}

.tab3 .title {
  position: relative;
  z-index: 3;
}

.tab3 .content-tab3 {
  width: 45%;
  margin: 0 auto;
  margin-top: 2vw;
  margin-bottom: 5vw;
  position: relative;
}

.tab3 .content-tab3 .bg {
  animation: rotateAnimation 30s infinite linear;
}

.tab3 .content-tab3 .art {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

.tab3 .content-tab3 .art.art-2 {
  width: 140%;
  top: 40%;
}

.tab3 .content-tab3 .art.art-3 {
  top: 45%;
  width: 200%;
}

.tab3 .content-tab3 .art.art-4 {
  top: 38%;
  width: 185%;
}

.tab3 .content-tab3 .art.art-5 {
  top: 40%;
  width: 225%;
}

.tab3 .content-tab3 .art.art-6 {
  top: 40%;
  width: 190%;
}

.tab3 .list-dotted {
  position: absolute;
  top: 13%;
  left: -30%;
  width: 10%;
  z-index: 2;
}

.tab3 .list-dotted .item-dotted {
  cursor: pointer;
  margin: 1vw 0;
  filter: grayscale(1);
}

/* ========== ACTIVE DOT ========== */
.tab3 .list-dotted .item-dotted.active {
  filter: none;
  background: linear-gradient(135deg, rgba(255, 158, 66, 0.2), rgba(255, 158, 66, 0.4));
  border: 2px solid #ff9e42;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 158, 66, 0.6);
  animation: dotPulse 0.75s infinite;
  position: relative;
}

/* Floating Gradient Ring */
.tab3 .list-dotted .item-dotted.active::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff9e42, #ff6b6b, #ff9e42);
  background-size: 300% 300%;
  animation: borderFlow 0.75s linear infinite;
  z-index: -1;
}

/* ========== ANIMATIONS ========== */
@keyframes dotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 158, 66, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 158, 66, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 158, 66, 0);
  }
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.item-dotted:nth-child(1) {
  transform: translateX(10vw);
}

.item-dotted:nth-child(2) {
  transform: translateX(6vw);
}

.item-dotted:nth-child(3) {
  transform: translateX(4vw);
}

.item-dotted:nth-child(4) {
  transform: translateX(4vw);
}

.item-dotted:nth-child(5) {
  transform: translateX(6vw);
}

.item-dotted:nth-child(6) {
  transform: translateX(10vw);
}

.tab3 .info-art {
  width: 20%;
  position: absolute;
  top: 40%;
  right: 10%;
  z-index: 2;
  filter: brightness(1);
}

.tab3 .info-art .name-art {
  width: 60%;
  margin-bottom: 1.5vw;
}

.tab3 .info-art .desc {
  position: relative;
}

.tab3 .info-art .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  width: 90%;
  font-size: 0.8vw;
}

/* Character Gallery Transitions */
.tab3 .info-art .text strong,
.tab3 .info-art .text span {
  transition: opacity 0.3s ease-in-out;
}

.tab3 .art img {
  transition: opacity 0.3s ease-in-out;
}

.tab3 .info-art .name-art img {
  transition: opacity 0.3s ease-in-out;
}

/* Modern Animation Classes */
.animate-out-left {
  animation: slideOutLeft 0.4s ease-in-out forwards;
}

.animate-out-right {
  animation: slideOutRight 0.4s ease-in-out forwards;
}

.animate-in-left {
  animation: slideInLeft 0.5s ease-out forwards;
}

.animate-in-right {
  animation: slideInRight 0.5s ease-out forwards;
}

.pulse-effect {
  animation: pulseScale 0.6s ease-in-out;
}

/* Modern Slide Animations */
@keyframes slideOutLeft {
  0% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50px) scale(0.8);
    opacity: 0;
  }
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(50px) scale(0.8);
    opacity: 0;
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-50px) scale(0.8);
    opacity: 0;
  }

  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(50px) scale(0.8);
    opacity: 0;
  }

  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes pulseScale {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    filter: brightness(1.1);
  }
}

/* Skip Dot Animations - Preserving Arc Layout */
/* .item-dotted maintains existing translateX arc positioning */
@media (max-width: 767px) {
  .tab3 {
    overflow: unset;
    overflow-x: clip;
  }

  .tab3 .content-tab3 {
    width: 90%;
    margin-bottom: 20vw;
  }

  .tab3 .info-art {
    width: 55%;
    top: 62%;
    left: 3%;
    right: unset;
  }

  .tab3 .list-dotted {
    width: 90%;
    top: 93%;
    bottom: 8vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3vw;
    position: absolute;
    z-index: 5;
  }

  .item-dotted:nth-child(1),
  .item-dotted:nth-child(6) {
    transform: translateX(0) translateY(0);
  }

  .item-dotted:nth-child(2),
  .item-dotted:nth-child(5) {
    transform: translateX(0) translateY(10vw);
  }

  .item-dotted:nth-child(3),
  .item-dotted:nth-child(4) {
    transform: translateX(0) translateY(15vw);
  }

  .tab3 .info-art .text {
    font-size: 2.35vw;
  }

  .tab3 .content-tab3 .art {
    width: 110%;
  }

  .tab3 .content-tab3 .art.art-2 {
    width: 160%;
  }

  .tab3 .content-tab3 .art.art-3 {
    width: 210%;
  }

  .tab3 .content-tab3 .art.art-4 {
    width: 200%;
  }

  .tab3 .content-tab3 .art.art-6 {
    width: 220%;
  }
}

/* TAB 3 END  */

/* TAB 4  */
.tab4 {
  position: relative;
  padding-bottom: 3vw;
}

.tab4 .content-tab4 {
  width: 50%;
  position: relative;
  margin: 0 auto;
  margin-top: 2vw;
  padding-bottom: 2vw;
  z-index: 1;
}

.tab4 .content-tab4 .swiper-pagination {
  top: 100% !important;
  width: 100%;
}

.tab4 .content-tab4 .swiper-pagination-bullet {
  background: url(../images/pagi-def.png);
  width: 2vw;
  height: 2vw;
  background-size: cover;
  opacity: 1;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px) !important;
}

.tab4 .content-tab4 .swiper-pagination-bullet-active {
  background: url(../images/pagi-act.png);
  width: 2vw;
  height: 2vw;
  background-size: cover;
}

.tab4 .content-tab4 .swiper-button-prev,
.tab4 .content-tab4 .swiper-button-next {
  top: 45% !important;
}

.tab4 .content-tab4 .swiper-button-next {
  width: 2.2vw;
  margin-right: 0;
  right: -8%;

}

.tab4 .content-tab4 .swiper-button-prev {
  width: 2.2vw;
  left: -8%;
  margin-left: 0vw;

}

.tab4 .content-tab4 .swiper-button-next::after,
.tab4 .content-tab4 .swiper-button-prev::after {
  display: none;
}

@media (max-width: 767px) {
  .tab4 {
    overflow: hidden;
  }

  .tab4 .content-tab4 {
    margin-top: 5vw;
    padding-bottom: 25vw;
    width: 85%;
  }

  .tab4 .content-tab4 .swiper-button-next {
    width: 5vw;
    right: 5%;
  }

  .tab4 .content-tab4 .swiper-button-prev {
    width: 5vw;
    left: 5%;
  }

  .tab4 .content-tab4 .swiper-button-prev,
  .tab4 .content-tab4 .swiper-button-next {
    top: 84% !important;
  }

  .tab4 .content-tab4 .swiper-pagination {
    top: 80% !important;
  }

  .tab4 .content-tab4 .swiper-pagination-bullet {
    width: 6vw;
    height: 6vw;
  }

  .tab4 .content-tab4 .swiper-pagination-bullet-active {
    width: 6vw;
    height: 6vw;
  }
}

/* TAB 4 END  */


/* NAV RIGHT  */
.nav-right {
  position: fixed;
  top: 25%;
  right: 0%;
  width: 10%;
  transition: 0.35s ease-in-out;
  z-index: 99;
}

.nav-right .list-item {
  width: 85%;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.nav-right .list-item a {
  position: relative;
  margin-bottom: 0.5vw;
  cursor: pointer;
  display: inline-block;
}

.nav-right .list-item a .bg {
  display: block;
}

.nav-right .list-item a .texts {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1vw;
  color: #FFF;
  transition: transform 0.3s ease;
  width: 100%;
  font-weight: bold;
}

.nav-right .list-item a:hover .texts {
  animation: bounceText 0.6s ease;
}

@keyframes bounceText {
  0% {
    transform: translate(-50%, -50%);
  }

  30% {
    transform: translate(-50%, -70%);
  }

  60% {
    transform: translate(-50%, -45%);
  }

  100% {
    transform: translate(-50%, -50%);
  }
}


.nav-right.active {
  transform: translateX(92%);
  transition: 0.35s ease-in-out;
}

.nav-right.active .btn-nav img {
  transition: 0.35s ease-in-out;
}

.nav-right .content-nav-right .btn-nap:hover {
  filter: brightness(110%);
  transform: scale(1.05);
}

.nav-right .content-nav-right .btn-nav {
  width: 25%;
  position: absolute;
  top: 25%;
  left: -12%;
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

/* NAV RIGHT END  */