:root {
  --brand-color: #E39E38;
}


section {
  padding: 100px 0px;
}

.btn.btn-primary {
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 600;
  background-color: var(--brand-color);
  border-color: var(--brand-color);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
  background-color: transparent;
  color: #000;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 55px;
  /* background: #2f2f2f; */
  z-index: 997;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.021);
  border-bottom: 1px solid #e6e6e6;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  /* color: #E39E38; */
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}





#heroCarousel ol {
  list-style-type: none !important;

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #dfdfdf;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--brand-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--brand-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(31, 53, 72, 0.9);
  transition: 0.3s;
  z-index: 998;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--brand-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--brand-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--brand-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}



/* hero section css start here */
/* .hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
  background: #000;
} */

.hero-tabs {
  height: fit-content;
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  z-index: 10;
}

.tab-btn {
  background: transparent;
  border: none;
  color: #aaa;
  margin: 0 10px;
  font-size: 16px;
  cursor: pointer;
  padding-bottom: 5px;
}

.tab-btn.active {
  color: var(--brand-color);
  border-bottom: 2px solid var(--brand-color);
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: none;
}

.hero-slide.active {
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-slide .content {
  position: relative;
  z-index: 2;
  padding-left: 80px;
  color: #fff;
  max-width: 600px;
}

.hero-slide h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-slide p {
  font-size: 1.2rem;
  margin: 15px 0;
}

/* start */
.nvidia-hero {
  position: relative;
  height: 90vh;
  background: #1e1e1e;
  overflow: hidden;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.slide.active {
  opacity: 1;
}

.hero-tabs {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 40px;
  z-index: 10;
}

.tab {
  width: 220px;
  color: #aaa;
  cursor: pointer;
  position: relative;
}


.tab::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #4a4a4a;
}


.tab .progress {
  position: absolute;
  top: -8px;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--brand-color);
  z-index: 2;
}

.tab.active .progress {
  animation: progress 5s linear forwards;
}


.tab span {
  font-size: 14px;
  font-weight: 600;
  display: block;
  color: #9e9e9e;
}

.tab p {
  font-size: 15px;
  color: #fff;
  margin-top: 6px;
}

.tab .progress {
  position: absolute;
  top: -8px;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--brand-color);
}

.tab.active span {
  color: var(--brand-color);
}

.tab.active .progress {
  animation: progress 5s linear forwards;
}

@keyframes progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}




/* another section css start here */
.scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.info-card {
  min-width: 250px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
}

.info-card img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.4s ease;
}

.info-card .overlay small {
  letter-spacing: 1px;
  opacity: 0.9;
}

.info-card .overlay i {
  font-size: 26px;
  align-self: flex-end;
}

/* another section css end here */


/* .content-scroll {
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
} */

.content-scroll::-webkit-scrollbar {
  height: 6px;
}

.content-scroll::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 10px;
}

.content-card {
  /* min-width: 280px;
  max-width: 280px; */
  /* scroll-snap-align: start; */
}

.content-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
}

.content-card .card-body {
  padding: 15px 5px;
}

.content-card h6 {
  font-weight: 500;
  margin-bottom: 8px;
}

.content-card a {
  text-decoration: none;
  font-size: 14px;
  color: var(--brand-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.scroll-line {
  height: 3px;
  background: #eee;
  position: relative;
}

.scroll-line span.active {
  position: absolute;
  left: 0;
  width: 25%;
  height: 100%;
  background: var(--brand-color);
}




/* slider section css start  here */
section.slider-section {}

section.slider-section .wrapper {
  color: #000;
}

section.slider-section .wrapper .item {
  display: block;
  text-decoration: none;
  color: #000;
  border: 1px solid #ccc;
  /* border-radius: 14px; */
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
}

section.slider-section .wrapper .item:hover {
  border-color: transparent;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}


section.slider-section .wrapper .item .img-container {}

section.slider-section .wrapper .item .img-container img {}

section.slider-section h2 {
  margin-bottom: 2rem;
}

section.slider-section .wrapper .item .content {
  padding: 0.8rem;
}

section.slider-section .wrapper .item .content .tags {
  margin-bottom: 1rem;
}

section.slider-section .wrapper .item .content .tags span {
  font-size: 14px;
  display: inline-block;
  position: relative;
  padding-right: 12px;
  margin-right: 12px;
  font-weight: 600;
}

section.slider-section .wrapper .item .content .tags span::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background-color: #ccc;
}


section.slider-section .wrapper .item .content .tags span:last-child {
  padding-right: 0;
  margin-right: 0;
}

section.slider-section .wrapper .item .content .tags span:last-child::after {
  display: none;
}

section.slider-section .wrapper .item .content h3 {
  font-size: 16px;
  font-weight: 600;

}

section.slider-section .wrapper .item .content p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 24px;
}

.owl-nav {
  position: absolute;
  top: -55px;
  right: 0;
  display: flex;
  gap: 10px;
}

.owl-nav button {
  display: inline-block;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-color) !important;
}

.owl-nav button i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}




/* slider section css end here */










/* footer section css start here */
section.footer-section {
  background-color: #000;
}

section.footer-section ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 10px;
}

section.footer-section ul li a {
  display: inline-block;
  color: var(--brand-color);
  text-decoration: none;
  font-size: 14px;
  transition: all .3s ease-in-out;
}


section.footer-section ul li a:hover {
  color: var(--brand-color) !important;
}


section.footer-section ul.menu li a:hover {
  text-decoration: underline;
}

section.footer-section .heading-container {
  width: 100%;
  border-bottom: 0.3px solid #706f6f;
  margin-bottom: 1rem;
}

section.footer-section .heading {
  color: #fff;
  font-size: 22px;
  font-weight: 500;


}

section.copy-right-section ul.social-links {
  flex-direction: row;
  gap: 1rem;
  display: flex;
  list-style-type: none;
  margin-bottom: 0px;
}

section.copy-right-sectionul.social-links li a {
  transition: all .3s ease-in-out;
}

section.copy-right-section ul.social-links li a i {
  color: #000;
}

section.copy-right-section ul.social-links li a:hover i {
  color: var(--brand-color);
}

section.footer-section .social-links-container p {
  font-size: 14px;
  color: #ccc;
  font-weight: 500;
}

/* footer section css end here */







/* copy right section css start here */
.section.copy-right-section {}


.copy-right-section .logo {
  width: 100px;
}

.copy-right-section ul.copy-right-links {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.copy-right-section ul.copy-right-links li a {
  text-decoration: none;
  color: #4a4a4a;
  font-size: 14px;
  position: relative;
  padding-right: 12px;
  margin-right: 12px;
  display: inline-block;
}


.copy-right-section ul.copy-right-links li a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: #4a4a4a;
}

.copy-right-section ul.copy-right-links li a:hover {
  color: var(--brand-color);
}

.copy-right-section ul.copy-right-links li:last-child a::after {
  display: none;
}


.copy-right-section ul.copy-right-links {
  display: flex;
  align-items: center;
}

p.copy-right {
  color: #4a4a4a;
  font-size: 14px;
}

/* copy right section css end here */




/* about section css start here */
section.about-section {}

section.about-section h2 {
  /* margin-bottom: 1rem; */
  font-weight: 600;
}

section.about-section p {
  line-height: 24px;
}


section.about-section .img-item img {
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
}

section.about-section {}


.video-thumbnail {
  cursor: pointer;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
}

video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-thumbnail img {
  height: 100%;
  width: 100%;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  transition: 0.3s;
}

.play-icon {
  font-size: 70px;
  color: #fff;
}

.video-thumbnail:hover .video-overlay {
  background: rgba(0, 0, 0, 0.7);
}



.button-container .btn.btn-primary.second {
  background-color: transparent;
  color: #000;
}

.button-container .btn.btn-primary.second:hover {
  background-color: var(--brand-color);
  color: #fff;
}


/* about section css end here */