*{
    margin: 0;
    box-sizing: border-box;
    font-family: poppins;
}
.box-container{
    max-width: 1170px;
    width: 95%;
    margin: 0 auto;
}
.frstbx{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 10px;
    flex-wrap: wrap;
    gap: 10px;
}
.pgtitl{
    font-size: 25px;
    font-weight: bold;
}
.srchbx{
    border: 1px solid rgb(192, 192, 192);
    border-radius: 50px;
    display: flex;
    padding: 7px 10px;
    width: 300px;
}
.srchbx input{
width: 100%;
border: 0;
outline: 0;
padding: 3px;
font-size: 15px;
}
.airlst{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
	 margin-bottom: 30px;
}
.airprt{
border: 1px solid rgb(192, 192, 192);
border-radius: 7px;
background: #f5f5f599;
display: flex;
align-items: center;
justify-content: space-between;
min-width: 300px;
max-width: 32%;
flex: 1;
padding: 10px 20px;
text-decoration: none;
color: inherit;
}
.airprt:hover {
    background: #f1fafd;
    border: 1px solid #cbddeb;
}
.aircity{
    font-size: 16px;
    font-weight: 500;
}
.aircode{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.airprt:last-child{
    margin-right: auto;
}
.hidden {
    display: none;
  }
  @media screen and (max-width:991px) {
    .airprt{
        max-width: 49%;
    }
  }
  @media screen and (max-width:650px) {
    .airprt{
        max-width: 100%;
    }
    .srchbx{
        width: 100%;
    }
  }