*{
    margin: 0;
    padding: 0;
}
.list{
    list-style-type: none;
}
.navbar{
    background-color: #fff;
}
.nav-item{
    padding: 0 40px;
    font-size: 2vw;
    text-decoration: none;
}
.items{
    background-color: #fff;
    border: none;
    font-style: italic;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    font-weight: 400;
}
.items:hover{
    transition: 0.5s ease-in-out;
    letter-spacing: 1.5px;
    color: #ff7300;
}
#search_input{
    margin-top: 3px;
    height: auto;
    width: 300px;
}
#search_input:focus{
    transition: 1s;
    color: white;
    background-color:#fff;
    box-shadow: 0 0 10px #000, 0 0 40px #000 inset;
}
nav .search_user{
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav .search_user input{
    padding: 3px 10px;
    border-radius: 50px;
    border: none;
    outline: none;
    background:rgb(255,255,255,.3);
    color:black;
    margin-right:10px;
    font-size: 20px;
}
nav .search_user .search{
    position:absolute ;
    width:380px ;
    height: 130px;
    top: 52px;
    z-index: 99999;   
    overflow-y:auto;
    overflow-x: hidden;
}
nav .search_user .search::-webkit-scrollbar{
   width: 8px;
   background: rgb(255,255,255,.3);
   border-radius: 5px;
   visibility: visible;
}
nav .search_user .search::-webkit-scrollbar-thumb{
    width: 8px;
    background:rgb(2, 110, 110);
    border-radius: 5px;
    visibility: visible;
}
nav .search_user .search .card{
    position: relative;
    width: 100%;
    height: 50px;
    background: rgb(255,255,255,.5);
    display: none;
    margin-bottom:7px;
    padding: 3px 0px;
    text-decoration: none;
}
nav .search_user .search .card::before{
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   background: rgb(255,255,255,0.1);
   backdrop-filter:blur(50px);
   border-radius: 5px;
   z-index: -1;
}
nav .search_user .search .card .cont{
    color: black;
}
nav .search_user .search .card .cont{
    font-size: 25px;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
    width: 550px;
}
.content h2{
    color: #fff;
    text-align: center;
    font-size: 10vw;
    background-color: #4d4d4d;
    box-shadow: 0 0 100px #fff inset;
}
.model-box {
  width: 300px;
  height: 200px;
  padding: 20px;
  margin: 20px;
  border: 5px solid #ccc;
  box-shadow: 0 0 10px #000,0 0 20px #000 inset;
}
.centered-button {
  text-align: center;
}
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 30%;
}
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 30%;
}
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
    color: #fff;
    font-size: 24px;
}
.text-overlay h1{
    font-size: 5em;
    font-weight: bold;
}
.text-overlay p{
    font-size: 6vw;
    font-style: italic;
    font-weight: lighter;
}
@media (max-width: 767px) {
  .model-box {
    width: 100%;
    height: auto;
    margin: 10px 0;
  }
}

@media (min-width: 768px) {
  .model-box {
    float: left;
    width: calc(50% - 40px);
    height: 300px;
    margin: 20px;
  }
}
.show {
  display: block;
}
.button{
    display: inline-block;
    border-radius: 4px;
    background-color:rgb(0,0,0,0.7);
    border: none;
    color: #fff;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 100%;
    transition: all 0.5s;
    cursor: pointer;
    margin-top: 90px;

}
.button:hover{
    box-shadow: 0 0 20px #ffc400, 0 0 40px #ffc400;
}
.button span{
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
.button span::after{
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
    
}
.button:hover span {
    padding-right: 25px;
}
.button:hover span:after {
    opacity: 1;
    right: 0;
}
.title{
    font-size: 3vw;
}
.text{
    font-weight: bold;
    font-size: 1.5vw;
}