/*@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&display=swap');*/

@import url('https://fonts.cdnfonts.com/css/verdana');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*font-family: 'DIN Pro', sans-serif;*/
  font-family: 'Verdana', sans-serif;
}
/*
@font-face {
  font-family: 'DIN Pro Regular';
  src: url('../fonts/D-DIN-PRO-400-Regular.otf') format('opentype');
  font-weight: normal;
}

@font-face {
  font-family: 'DIN Pro Medium';
  src: url('../fonts/D-DIN-PRO-500-Medium.otf') format('opentype');
  font-weight: normal;
}

@font-face {
  font-family: 'DIN Pro SemiBold';
  src: url('../fonts/D-DIN-PRO-600-SemiBold.otf') format('opentype');
  font-weight: normal;
}

@font-face {
  font-family: 'DIN Pro Bold';
  src: url('../fonts/D-DIN-PRO-700-Bold.otf') format('opentype');
  font-weight: normal;
}

@font-face {
  font-family: 'DIN Pro ExtraBold';
  src: url('../fonts/D-DIN-PRO-800-ExtraBold.otf') format('opentype');
  font-weight: normal;
}*/
.text-white {
  --bs-text-opacity: 1;
  color: white !important;
}
/* .search-box{
  position: relative;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: 5px 5px 30px rgba(0,0,0,.2);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.search-box.active{
  width: 350px;
}
.search-box input{
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 50px;
  background: #fff;
  outline: none;
  padding: 0 60px 0 20px;
  font-size: 18px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.search-box input.active{
  opacity: 1;
}
.search-box input::placeholder{
  color: #a6a6a6;
}
.search-box .search-icon{
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  width: 60px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 22px;
  color: #664AFF;
  cursor: pointer;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.search-box .search-icon.active{
  right: 5px;
  height: 50px;
  line-height: 50px;
  width: 50px;
  font-size: 20px;
  background: #664AFF;
  color: #fff;
  transform: translateY(-50%) rotate(360deg);
}
.search-box .cancel-icon{
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.search-box .cancel-icon.active{
  right: -40px;
  transform: translateY(-50%) rotate(360deg);
}
.search-box .search-data{
  text-align: center;
  padding-top: 7px;
  color: #fff;
  font-size: 18px;
  word-wrap: break-word;
}
.search-box .search-data.active{
  display: none;
}
ul {
  margin: 0px;
  padding: 0px;
} */