body{
    margin: 0;
    padding: 0;
    background-image: url(img&vid/b-background.jpg);
    background-attachment:fixed ;
   background-repeat: no-repeat;
   background-size: cover;
   overflow-x: hidden;
}

div#company-label{
    height: 100px;
}
a#company-label{
    width: 100px;
    height: 100px;
}

a#company-label img{
    width: 100%;
    height: 100%;
    
}

a.nav-link{
    font-size: 14px;
    color: black;
}

li.navbar-items-color:hover{
    background: linear-gradient(90deg, rgb(71, 24, 224) , rgb(96, 95, 95),rgb(10, 195, 10));
    border-radius: 40px;
    transition: 1s;
    transition-property: background , color;

}

a.nav-link:hover{
    color: white;
}

section.nav-clock{
    margin-bottom: 20px;
}

.digital-clock{
    position:relative;
    top: 0;
    left: 0;
    transform: scale(0.8);  
    color: #fff;
    background: #2d2f41;
    width: 300px;
    height: 140px;
    padding: 20px 45px;
    box-shadow: 0 5px 25px rgba(14, 21, 37, 0.8);
    border-radius: 10px;
    /* display: flex;
    justify-content:flex-end; */
    align-items: center;
    /* flex-direction: column; */
    
   
}

.time{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hours, .dots, .minutes{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    padding: 0 10px;
    line-height: 100px;
}

.hours, .minutes{
    font-size: 2.5em;
    width: 45px;
    font-weight: 700;

}

.dots{
    font-size: 1.2em;
    color: #929292;
}

.hours{

    background: -webkit-linear-gradient(90deg, #634dff, #5fd4ff);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;

}

.minutes{
    background: -webkit-linear-gradient(90deg, #ff5e9a, #ffb960);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;

}

.right-side{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 10px;
}

.period, .seconds{
    font-size: 1em;
    font-weight: 500;

}

.period{
    transform: translateY(-20px);
    background: -webkit-linear-gradient(90deg, #f7b63f, #faf879);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.seconds{
    transform: translateY(16px);
    background: -webkit-linear-gradient(90deg, #24ff6d, #2f93f1);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;

}

.calendar{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 10px;
    font-size: 1em;
    font-weight: 400;
    background: -webkit-linear-gradient(90deg, #ae4af6, #ff98d1);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;

}

.calendar span:nth-child(1), .calendar span:nth-child(4){
   padding-right: 35px;
}

.calendar span:nth-child(2){
    padding-left: 30px;
 }



.packlord-vid{
    width: 100%;
    border-radius: 20%;
    transition: all ease 1s;
   border: 2px solid red;
}
video{
  
    object-fit: cover;
    
    
}
.packlord-vid:hover{
    border-radius: 0;
}



  .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    border-radius: 10px;

  }

  .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.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
  }