
@font-face {
    font-family: 'Systopie';
    src: url('./fonts/Systopie.ttf'),
         url('./fonts/Systopie.woff'), 
         url('./fonts/Systopie.woff2');
             
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('./fonts/HelveticaNeue.ttc'),
         url('./fonts/HelveticaNeue.ttf'), 
         url('./fonts/helveticaneue.woff'),
         url('./fonts/helveticaneue.woff2');
             
}


.footer{
  flex-direction: column;
  /* height: 363px; */
  background: #102D4A;
  justify-content: space-around;
  padding-top: 4vw;
  padding-bottom: 3vw;
  gap: 2vw;

}

.footer__firstline{
    justify-content: space-around;

}

.footer__secondline{
    justify-content: space-between;
}
.footer__line{
    width: 100%;
    height: 1px;
    background: #FFF;
}




.number__policy{
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.linkitem {
    position: relative;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    padding-bottom: 3px;
  }
  
  .linkitem::before,
  .linkitem::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px; 
    background-color: #FFF; 
    transition: width 0.5s ease, left 0.5s ease; 
  }
  
  .linkitem::before {
    transform: translateX(-50%);
  }
  
  .linkitem::after {
    transform: translateX(50%);
  }
  
  .linkitem:hover::before,
  .linkitem:hover::after {
    width: 100%; 
    left: 0;
  }

  .time{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.right{
    display: flex;
    justify-content: right;
}

.num{
  gap: 0.5vw;
  align-items: center;
}
.numimg{
  width: 1vw;
  object-fit: cover;
}

.numimg img{
  width: 100%;
  height: 100%;
}