/*** Header ***/

.header-text p {
  margin-left: 0.75rem;
  margin-bottom: 0;
  font-size: 0.775rem;
}

#header-nav.sticky, #timerContainer.sticky {
  position: fixed;
  z-index: 9;
}

#header-nav.sticky {
  top: 0;
  width: 100%;
}

#header-nav {
  background-color: var(--cnvs-themecolor);
}
#header-nav #dropdownHover {
  background-color: var(--cnvs-themecolor);
}
#header-nav #dropdownHover li {
  color: #fff;
  font-size: 1rem;
}

.menu-offset {
  margin-top: 56px;
}

/*** Exam Timer ***/
#timerContainer.sticky {
  top: 5.85%;
}

#timerContainer.timer {
  font-size: 4.5rem;
  border-bottom: 1px solid var(--cnvs-themecolor);
  background-color: #fff;
  width: 100%;
  text-align: center;
}

#hello-react.exam-offset {
  margin-top: 195px;
}

/*** Video Iframe ***/
iframe {
  height: 650px;
}

/*** Certificate ***/
.verified-seal {
  width: 150px;
  position: absolute;
  right: 15%;
  transform: rotate(15deg);
}

/*** Gradient Separator ***/
.bg-gradient {
  background: linear-gradient(to bottom, transparent 0%, rgba(var(--bs-primary-rgb), 0.15) 100%);
}

/*** PDF Embed ***/
.content-wrap .container embed {
  height: 980px;
}

/*** Certificate ***/
#certificate {
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#certificate #certificate * {
  user-select: none;
}

/*** Share Socials ***/
#social-links {
  width: 20%;
}
#social-links ul {
  display: flex;
  justify-content: space-between;
}

/*** Responsive ***/
@media (min-width: 1400px){
  #log{
    display: none;
  }
}
@media (min-width: 1400px) and (max-width: 1440px) {
  .content-wrap .container embed {
    height: 800px;
  }
  #log{
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1360px) {
  .content-wrap .container embed {
    height: 720px;
  }
  #log{
    display: none;
  }

}

@media (min-width: 545px) and (max-width: 992px){
  .header-row{
    display: none !important;
  }
}

@media (max-width: 545px) {
  /*** Header ***/
  #header-wrap #logo img {
    width: auto;
    height: auto;
    padding: 0;
  }
  .header-misc img {
    width: 100%;
  }
  .menu-item {
    margin-left: 1rem;
    margin-right: 0;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  #header-nav {
    display: flex;
  }
  #header-nav #dropdownHover {
    width: 100%;
    z-index: 200;
  }
  .badge {
    font-size: 1.1rem;
  }
  .card-svg {
    width: 60%;
    bottom: -52px !important;
  }
  /*** Exam Timer ***/
  #timerContainer.sticky {
    top: 0;
  }
  #timerContainer.timer {
    font-size: 3.5rem;
  }
  #hello-react.exam-offset {
    margin-top: 110px;
  }
  /*** Video Iframe ***/
  iframe {
    height: 250px;
  }
  /*** Exam Form ***/
  #hello-react ul li {
    display: flex;
  }
  /*** PDF Embed ***/
  .content-wrap .container embed {
    height: 425px;
  }
  /*** Share Socials ***/
  #social-links {
    width: 30%;
  }
  .header-row{
    display: none !important;
  }
}
@media (max-width: 375px) {
  .header-text p {
    font-size: 0.65rem;
  }
  /*** Exam Timer ***/
  #timerContainer.sticky {
    top: 8%;
  }
  .header-row{
    display: none !important;
  }
}

#slides {
  width: 100%;
  height: 100%;
  white-space: nowrap;
  font-size: 0;
  transform: translateX(0);
}

.slide {
  width: 100%;
  height: 100%;
  display: inline-block;
  background-size: cover;
  background-position: center;
  background-color: #cccccc;
}

.animate {
  transition: all .5s ease-out;
}

.splide__slide img {
  width: 100%;
  height: 600px;
}
/* Container styles */
#scrolling-text-container {
  background-color: #eff5ff;
  border-radius: 4px;
  overflow: hidden;
}

/* Inner container styles */
.scrolling-text-inner {
  display: flex;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 0;
}

/* Text styles */
.scrolling-text {
  display: flex;
}

.scrolling-text-item {
  padding: 0 30px;
}

/* Apply the animation to the text items */
.scrolling-text-inner>div {
  animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
#scrolling-text-container:hover .scrolling-text-inner>div {
  animation-play-state: paused;
}

/* Setting the Animation using Keyframes */
@keyframes scroll-left {
  0% {
      transform: translateX(0%);
  }

  100% {
      transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
      transform: translateX(-100%);
  }

  100% {
      transform: translateX(0%);
  }
}
.stickyi{
  position: fixed;
  z-index: 1;
  top: 7%;
  width: 100%;
}

.nope{
  display: none;
}