*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body {
    scroll-behavior: smooth;
  }

.hide{
    display: none;
}
.underline-heading{
    position: relative;
}
.navbar .navbar-brand .logo .underline{
  background-color: white;
  width: 100%;
  height: 6px;
}
.navbar .navbar-brand .logo{
  background-color: rgb(247 17 45);
  border-radius: 24px;
  padding: 12px 16px;
  font-family: serif;
}
.navbar .navbar-brand p{
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.navbar .navbar-brand h3{
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  margin-bottom: 2px;
  font-weight: 800;
  color: white;
}

.underline-heading::before{
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 4px;
    width: 70px;
    border-radius: 4px;
    background-color: blue;
}

.dashboard .left-dashboard ul li a{
    text-decoration: none;
    color: rgb(0, 0, 47);
    font-weight: 600;
    cursor: pointer;
}

.password-form{
    width: 400px;
}
.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper .swiper-slide {
    background-position: center;
    background-size: cover;
  }
  .swiper .swiper-slide img{
    transform: scale(1.5);
    transition: all 2s;
  }
  .swiper .swiper-slide-visible img{
    transform: scale(1);
    transition: all 2s;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
  }

  .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
  }

.banner h1{
    font-size: 48px;
}

.verify-certificate .certificate-details{
    max-width: 600px;
    margin: auto;
}

.verify-certificate .certificate-details .title{
    min-width: 150px;
    text-wrap: wrap;
    font-weight: bold;
}

.contact{
    background-image: url("/assets/contactbg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (max-width:400px){
    .password-form{
        width: 400px;
    }
    .banner h1{
        font-size: 32px;
    }
    
}
