.transfers-list-banner-area {
    background-size: cover;  
    padding: 130px 0 50px;  
}
.transfers-list-banner-area::before {
    content: '';
    height: 100%;
    width: 100%;
    background-color: hsla(0, 0%, 0%, 0.86);
    position: absolute;
    top: 0;
    left: 0;
}

/* transfers-listing-search-list */
.transfers-listing-search-list {
    border: 1px solid #6C6C6C;
    display: grid;
    grid-template-columns: 23% 23% 15% 23% 16%;
    background-color: var(--white-color);
}
.transfers-listing-search-item {
    padding: 10px;
    border-right: 1px solid #6C6C6C;
}
.transfers-listing-search-item:nth-last-child(2) {    
    border-right: none;
}
.transfers-listing-search-list .search-input,
.travellers-text { 
    font-size: 20px; 
}
.transfers-listing-search-list .class-selection { 
    top: 88px; 
}

/* transfers-listing */
.transfers-listing-item-content-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.transfers-listing-item{
    padding: 15px;
    border: 1px solid var(--color-extra-three);
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 23% 50% 20%;
    gap: 30px;
    margin-bottom: 30px;
}
.transfers-listing-item-image img{
    border-radius: 15px;
}
.transfers-listing-content-title h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.transfers-button-wapper .book-now-button {
    background-color: var(--black-color);
    padding: 10px 20px;
    display: inline-block;
    border-radius: 10px;
    font-weight: 600;
    color: var(--white-color);
}
.transfers-listing-item-bottom {
    text-align: end;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-left: 2px dashed rgb(203 203 203 / 26%);
}
.transfers-listing-item-content-meta ul {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.transfers-listing-item-content-meta ul li span{
    font-size: 14px;
    font-weight: 500;
}



.transfers-trip-information{
    padding: 15px;
    border: 1px solid var(--color-extra-three);
    border-radius: 15px;
}
.transfers-trip-other {
    display: flex;
    gap: 100px;
}

.transfers-trip-details::after {
    content: '';
    position: absolute;
    height: 80px;
    width: 1px;
    border-radius: 50px;
    left: 6px;
    top: 12px;
    border: 1px dashed var(--color-extra-three);
    z-index: -1;
}
.transfers-trip-from{
    margin-bottom: 30px;
    padding-left: 30px;
}
.transfers-trip-from::after{
    content: '';
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50px;
    left: 0;
    background-color: red;
    top: 5px;
}
.transfers-trip-to{
    padding-left: 30px;
}
.transfers-trip-to::after{
    content: '';
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50px;
    left: 0;
    background-color: green;
    top: 5px;
}

.transfers-flight-information{
    padding: 15px;
    border: 1px solid var(--color-extra-three);
    border-radius: 15px;
}