/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap'); */
@import 'material-symbols';

@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700; /* Range for the weight axis */
  src: url('/fonts/MaterialSymbolsOutlined-VariableFont_FILL,GRAD,opsz,wght.ttf') format('truetype-variations');
}


* {
    /* font-family: 'Poppins', sans-serif; */
    font-family: "Barlow Condensed", sans-serif;
    padding: 0px;
    margin: 0px;
}


.custom-select {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23ccc" d="M12 15.7l-5.5-5.5 1.4-1.4L12 12.9l4.1-4.1 1.4 1.4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.custom-select:focus {
    outline: none;
    border-color: #153d39;
}

.custom-select option {
    padding: 10px;
}
.custom-select option {
    background-color: #f0f0f0  !important; 
    color: #333;
}

.lines::before{
    content: "";
    top: -2px;
 width: 10px;
 height: 10px;
 background: #153d39;
 position: absolute;
 border-radius: 50%;
 animation: moves 3s linear infinite;
 
}

@keyframes moves {
    to{
        transform:  translateX(99px);
    }
}


.animating {
    animation: move 5s linear infinite;
  }

  @keyframes move {
    0% {
      transform: translateY(-40px);
    }

    50% {
      transform: translateY(0px);
    }

    100% {
      transform: translateY(-40px);
    }
  }

.custom:hover .name{
   color: white;
}


