/* Do NOT edit this css file. This is for general css attributes -M*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* transition: transform 0.1s ease; */
}

html {
  scroll-behavior: smooth;
}

::selection {
  background-color: rgba(243, 106, 43, 0.75);
  color: var(--color-white);
}

/* a,
button {
  transition: 0.s ease !important;
} */

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0 !important;
}

:root {
  --color-black: #000000;
  --color-charcoal-gray: #2e2e2e;
  --color-dark-gray: #2c2c2c;
  --color-dark-red: #860f19;
  --color-deep-red: #a51f23;
  --color-dull-red: #dd1818;
  --color-gray: #747575;
  --color-light-gray: #8f8f8f;
  --color-light-pink: #fc9797;
  --color-light-yellow: #e39818;
  --color-medium-blue: #0b24e8;
  --color-mid-blue: #120fff;
  --color-neutral-gray: #4c4c4f;
  --color-orange: #ffa238;
  --color-red-orange: #e05b1d;
  --color-hover-orange: #c95000;
  --color-red-orange-50: rgba(255, 102, 0, 0.4);
  --color-sky-blue: #65a1ef;
  --color-strong-yellow: #fffb00;
  --color-vivid-red: #ff0302;
  --color-white: #ffffff;
  --color-bright-green: #0b810d;
}

/* button - override */
.btn-primary {
  background-color: var(--color-red-orange) !important;
  border: 0;
  display: inline-block;
  background-color: #f36b2b;
  color: #ffffff;
  padding: 10px 80px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  /* font-size: 16px; */
  text-align: center;
  border: none;
  /* Removes any border */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Static subtle shadow */
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  /* background-color: var(--color-hover-orange) !important; */
  transition: 0.3s;
  background-color: var(--color-black) !important;
}

.btn-primary:active {
  transition: 0.3s;
  background-color: #c0501f;
}

/* scrolls */
/* Universal Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  /* Width of the scrollbar */
  height: 8px;
  /* Height of the scrollbar for horizontal scrolling */
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
  /* Track background */
  border-radius: 10px;
  /* Rounded corners for the track */
}

::-webkit-scrollbar-thumb {
  background: #c00a0a;
  /* Default color of the scrollbar thumb */
  border-radius: 10px;
  /* Rounded corners for the thumb */
  transition: background 0.3s;
  /* Smooth transition for hover effect */
}

::-webkit-scrollbar-thumb:hover {
  background: #c95000;
  /* Change color on hover */
}

/* For Firefox */
* {
  scrollbar-width: thin;
  /* Makes the scrollbar thin */
  scrollbar-color: #888 #f0f0f0;
  /* Thumb color and track color */
}

*::-webkit-scrollbar-corner {
  background-color: transparent;
  /* For the bottom-right corner where scrollbars meet */
}

.text-justify {
  text-align: justify;
}

.text-orange {
  color: var(--color-red-orange);
}

.bg-orange {
  background-color: var(--color-red-orange);
}

.text-bg-orange {
  background-color: var(--color-red-orange) !important;
  color: var(--color-white);
}

.glass-effect {
  background: rgba(255, 255, 255, 0);
  /* background: rgb(199, 33, 33); */
  border-radius: 1rem;
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(3.1px);
}

.badge-new {
  text-transform: uppercase;
  line-height: normal;
  padding: 0.2rem 0.5rem 0.25rem 0.5rem;
  border-radius: 999px;
  background-color: #dc3545;
  color: #fff;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15) !important;
  font-size: 0.65rem;
  display: inline-block;
  font-weight: bold;
  margin-left: 0.5rem;
  margin-bottom: 1.5px;
  
  /* <span class="badge-new">new</span> */
}

.border-new {
  border: 1px solid #dc3545;
  border-radius: 999px;
  /* <div 0.</div> */
}

.indicator-new {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dc3545;
  display: inline-block;
  margin-right: 0.5rem;
  position: absolute;
  top: auto;
  margin-left: 5px;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15) !important;
}


.w-90 {
  width: 90% !important;
  height: auto;
}

/* slider hero */

.carousel {
  /* width: 100vw; */
  height: 90vh;
  margin-top: -50px;
  overflow: hidden;
  position: relative;
}

.carousel .list .item {
  width: 180px;
  height: 250px;
  position: absolute;
  top: 80%;
  transform: translateY(-70%);
  left: 70%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  background-position: 50% 50%;
  background-size: cover;
  z-index: 100;
  transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.carousel .list .item:nth-child(3) {
  left: 67%;
}

.carousel .list .item:nth-child(4) {
  left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5) {
  left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6) {
  left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n + 7) {
  left: calc(67% + 800px);
  opacity: 0;
}

.list .item .content {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  width: 400px;
  text-align: left;
  color: #fff;
  display: none;
}

.list .item:nth-child(2) .content {
  display: block;
}

.content .title {
  font-size: 100px;
  text-transform: uppercase;
  color: var(--color-red-orange);
  font-weight: bold;
  line-height: 1;

  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name {
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
  text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);

  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 18px;
  margin-left: 5px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn {
  margin-left: 5px;
  border-radius: 5rem;
  opacity: 0;
  animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border: 2px solid #fff;
  border-radius: 5rem;
}

.content .btn button:nth-child(1) {
  margin-right: 15px;
}

.content .btn button:nth-child(2) {
  background: transparent;
  color: var(--color-red-orange);
  border: 2px solid #fff;
  transition: 0.3s;
}

.content .btn button:nth-child(2):hover {
  background-color: var(--color-red-orange);
  color: #fff;
  border-color: var(--color-red-orange);
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }

  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}

/* Carousel */

/* next prev arrows */

.arrows {
  position: absolute;
  top: 80%;
  right: 45%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}

.arrows button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-red-orange);
  color: #fff;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: monospace;
  font-weight: bold;
  transition: 0.5s;
  cursor: pointer;
}

.arrows button:hover {
  background: #fff;
  color: #000;
}

/* time running */
.carousel .timeRunning {
  position: absolute;
  z-index: 1000;
  width: 0%;
  height: 4px;
  background-color: var(--color-red-orange);
  /* background-color: #0b24e8; */
  left: 0;
  top: 0;
  animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Responsive Design */

@media screen and (max-width: 999px) {
  header {
    padding-left: 50px;
  }

  .list .item .content {
    left: 50px;
  }

  .content .title,
  .content .name {
    font-size: 70px;
  }

  .content .des {
    font-size: 16px;
  }
}

@media screen and (max-width: 690px) {
  .list .item:nth-child(2) .content {
    display: block;
    position: relative;
    margin-top: 10%;
    max-width: 70%;
    max-height: 90dvh;
  }

  .list .item .content {
    top: 40%;
  }

  .content .title,
  .content .name {
    font-size: 45px;
  }

  .content .btn button {
    padding: 10px 15px;
    font-size: 14px;
  }
}

/* slider hero */

/* Animation on scroll */
.fadeInUp {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.fadeInUp:nth-child(1) { animation-delay: 0.1s; }
.fadeInUp:nth-child(2) { animation-delay: 0.2s; }
.fadeInUp:nth-child(3) { animation-delay: 0.3s; }
.fadeInUp:nth-child(4) { animation-delay: 0.4s; }

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