@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kumbh+Sans:wght@100..900&family=Outfit:wght@100..900&display=swap');
*{
    margin: 0;
    padding: 0;
}
body{
    background-image: url(assets/crew/background-crew-desktop.jpg);
    color: #ffff;
  font-family: "Roboto Condensed", sans-serif;
}
header{
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: center;
    align-items: center;
}
hr{
    width: 600px;
    height: 0px;
    z-index: 200;
}
header img{
    width: 40px;
    height: 40px;
}
nav{
    display: flex;
    align-items: center;
    padding: 20px 40px;
    background-color:( 0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(30px);
    width: 1000px;
    height: 40px;
    text-align: center;
    justify-content: end;
    gap: 60px;
    margin-top: 20px;
    align-items: center;
}
nav a{
    color: white;
    text-decoration: none;
}
nav a:hover{
    color: white;
}
nav a:after{
    content:'';
    bottom: 0;
    left: 30%;
    position: absolute;
    width:0;
    height: 2px;
    background: white;
    transition: width 1s;    
}
nav a:hover::after{
    width: 8%;
}
.des::after{
    content:'';
    bottom: 0;
    left: 48%;
    position: absolute;
    width:0;
    height: 2px;
    background: white;
    transition: width 1s;  
}
.des :hover:after{
    width: 120px;
}
.crew::after{
    content:'';
    bottom: 0;
    left: 67%;
    position: absolute;
    width:0;
    height: 2px;
    background: white;
    transition: width 1s;  
}
.crew:hover::after{
    width: 55px;
}
.tech::after{
    content:'';
    bottom: 0;
    left: 83%;
    position: absolute;
    width:0;
    height: 2px;
    background: white;
    transition: width 1s;  
}
.tech:hover::after{
    width: 100px;
}
.all{
    display: flex;
}
.all span{
    color: #9b9797;
}
.all img{
    width: 450px;
    height: 450px;
    margin-top: 170px;
    margin-left: 190px;
}
.flight{
    font-family: "Roboto Condensed", sans-serif;
    display: flex;
    width: 500px;
    height: 100px;
    flex-direction: column;
    gap: 50px;
    margin-left: 200px;
    margin-top: 100px;
}
.flight h4{
    margin-bottom: 100px;
    display: flex;
    gap: 20px;
}
.flight h3{
    font-family: serif;
    font-size: 25px;
}
.flight h1{
    font-family: serif;
    font-size: 50px;
}
.btn{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-right: 400px;
    color: #9b9797;
}
.btn a button{
    background-color: #9b979752;;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    border: none;
}
.btn a button:active{
    background-color: #ffff;
}