@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
}

header{
    width: 80%;
    margin: auto;
}

header.home-header{
    height: 95vh;
}

header nav{
    width: 95%;
    height: 80px;
    /* border: 1px solid #000; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav ul{
    list-style: none;
    display: flex;
}

header nav ul li{
    padding: 3px 15px;
}

header nav ul li:nth-last-child(1){
    background: #000;
    border-radius: 20px;
    padding: 5px 20px;   
}

header nav ul li:nth-last-child(1) a{
    color: #fff;
}

header nav ul li a{
    text-decoration: none;
    color: #121213;
    font-size: 13px;
    font-weight: 500;
    transition: .3s linear;
}

header nav ul li a:hover,
header nav ul li a.active{
    color: gray;
}

header nav .bi-three-dots{
    display: none;
}

header .content{
    position: relative;
    width: 100%;
    height: 93%;
    /* border: 1px solid #000; */
}

header .content::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 80%;
    /* border: 1px solid #000; */
    background: url('../images/bg.png')no-repeat center center/cover;
    border-radius: 10px;
    z-index: -1;
}

header .content .cont_bx{
    width: 500px;
    height: auto;
    color: #fff;
    padding: 30px;
}

header .content .cont_bx h1{
    line-height: 40px;
    font-weight: 800;
    /* border: 1px solid #000; */
}

header .content .cont_bx p{
    font-size: 14px;
    font-weight: 400;
    color: rgb(241, 241, 241);
}

header .content .cont_bx button{
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid #000;
    background: #000;
    color: #fff;
    outline: none;
    cursor: pointer;
    transition: .3s linear;
}

header .content .cont_bx button:hover{
    background: rgb(113, 113, 113);
    border: 2px solid rgb(113, 113, 113 );
}

header .trip_bx{
    position: relative;
    width: 95%;
    height: auto;
    margin: auto;
    /* border: 1px solid #000; */
}

header .trip_bx .search_bx{
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: auto;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
    padding: 15px 30px;
    left: 50%;
    transform: translateX(-50%);
}

header .trip_bx .search_bx .card{
    flex: 1;
    height: 100%;
    padding: 0 10px;
}

header .trip_bx .search_bx .card h4{
    font-size: 14px;
    margin: 0;
    font-weight: 700;
    color: #121213;
    display: flex;
    align-items: center;
}

header .trip_bx .search_bx .card h4 .bi{
    position: absolute;
    font-size: 13px;
    margin: 2px 0px 0px 5px;
    transition: .3s linear;
}

header .trip_bx .search_bx .card input{
    margin-top: 5px;
    padding: 5px 0px;
    border: none;
    outline: none;
    font-size: 13px;
    width: 100%;
    background: transparent;
    color: #555;
}

header .trip_bx .search_bx input[type="button"]{
    background: #000;
    color: #fff;
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 20px;
    transition: .3s linear;
    cursor: pointer;
}

header .trip_bx .search_bx input[type="button"]:hover{
    background: gray;
} 

header .trip_bx .travel_bx{
    position: relative;
    width: 100%;
    height: auto;
    margin: auto;
    top: 30px;
    /* background: #000; */
    /* border: 1px solid #000; */
    border-radius: 10px;
    padding-bottom: 20px;
    box-shadow: 0px 20px 25px -10px rgb(165, 165, 165);
}

header .trip_bx .travel_bx::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgb(241, 241, 241, .7);
    backdrop-filter: blur(5px);
    z-index: -1;
}

header .trip_bx .travel_bx h4{
    margin: 0;
    padding: 60px 0px 15px 2.5%;
}

header .trip_bx .travel_bx .cards{
    width: 96%;
    height: auto;
    margin: 0 auto;
    /* border: 1px solid #000; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .trip_bx .travel_bx .cards .card{
    width: 220px;
    height: 180px;
    /* border: 1px solid #000; */
}

header .trip_bx .travel_bx .cards .card h3{
    margin: 0px 0px 10px 0px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}

header .trip_bx .travel_bx .cards .card h3 img{
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

header .trip_bx .travel_bx .cards .card img{
    width: 100%;
    height: 50%;
}

header .trip_bx .travel_bx .cards .card .btn_city{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid #000; */
}

header .trip_bx .travel_bx .cards .card .btn_city a{
    text-decoration: none;
    background: #000;
    color: #fff;
    border-radius: 20px;
    padding: 6px 20px;
    font-size: 11px;
    transition: .3s linear;
}

header .trip_bx .travel_bx .cards .card .btn_city a:hover{
    background: gray;
}

header .trip_bx .travel_bx .cards .card .btn_city h5{
    font-size: 11px;
    font-weight: 500;
    margin: 0;
    margin-top: 5px;
    line-height: 15px;
}

header .trip_bx .travel_bx .cards .card .btn_city h5 span{
    font-size: 13px;
    font-weight: 700;
}

.offers{
    width: 80%;
    height: auto;
    /* border: 1px solid #000; */
    margin: auto;
    margin-top: 80px;
    transition: .5s linear;
}

.offers h1{
    font-weight: 700;
    text-align: center;
    margin: 0;
    font-size: 2.2rem;
    color: #121213;
}

.offers p{
    font-weight: 400;
    text-align: center;
    margin: 10px 0 30px;
    color: #555;
}

.offers .cards{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    /* border: 1px solid #000; */
    flex-wrap: wrap;
}

.offers .cards .card{
    position: relative;
    width: 250px;
    height: auto;
    min-height: 400px;
    /* border: 1px solid #000; */
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    padding: 15px;
    transition: 0.3s;
}

.offers .cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.offers .cards .card h3{
    width: 140px;
    padding: 6px 0px;
    background: rgb(165, 243, 165);
    border-radius: 20px;
    font-size: 12px;
    display: grid;
    place-items: center;
    margin: auto;
}

.offers .cards .card .img_text{
    position: relative;
    width: 100%;
    height: 250px;
    margin-top: 5px;
}

.offers .cards .card .img_text img{
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0px 0px;
}

.offers .cards .card .img_text h4{
   position: absolute;
   font-size: 9px;
   padding: 10px 15px;
   bottom: 0;
   margin: 0;
   color: #fff;
   z-index: 2;
}

.offers .cards .card .img_text h4::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255, .1);
    backdrop-filter: blur(5px);
    z-index: -1;
    bottom: 0;
    left: 0;
 }

 .offers .cards .card .cont_bx{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid #000; */
    padding: 5px 0px;
    border-radius: 0px 0px 5px 5px;
 }

 .offers .cards .card .cont_bx .price  .days{
    margin: 0px 8px;
 }

 .offers .cards .card .cont_bx .price .heart-chat{
    display: flex;
    align-items: center;
 }

 .offers .cards .card .cont_bx .price .heart-chat i:nth-child(1){
    color: red;
    font-size: 13px;
    margin-right: 10px;
 }

 .offers .cards .card .cont_bx .price .heart-chat i span{
    color: #000;
    font-size: 12px;
    margin-left: 3px;
    font-style: normal;
 }

 .offers .cards .card .cont_bx .price .heart-chat i:nth-child(2){
    color: rgb(112, 196, 229);
    font-size: 13px;
    margin-right: 10px;
    
 }

 .offers .cards .card .cont_bx .price .info_price{
    display: flex;
    align-items: center;
    margin-top: 3px;
 }

 .offers .cards .card .cont_bx .price .info_price a{
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 11px;
    transition: .3s linear;
    margin-right: 13px;
 }

 .offers .cards .card .cont_bx .price .info_price a:hover{
    color: gray;
 }

 .offers .cards .card .cont_bx .price .info_price h4{
    margin: 0;
    font-size: 13px;
 }

 .offers .cards .card .cont_bx .days{
    color: #fff;
    background: #000;
    font-size: 8px;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: .3s linear;
 }

 .offers .cards .card .cont_bx .days:hover{
    transform: rotate(360deg);
 }

 footer{
    width: 100%;
    height: auto;
    background: #f8f9fa;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
 }

 footer h2{
    text-align: center;
    margin: 0;
    line-height: 1.2;
    font-weight: 800;
    font-size: 1.8rem;
    color: #121213;
    letter-spacing: -0.5px;
 }

 footer p{
    text-align: center;
    width: 100%;
    max-width: 450px;
    font-size: 14px;
    color: #666;
    margin: 15px 0 30px;
 }

 footer .input{
    display: flex;
    background: #fff;
    padding: 6px;
    border-radius: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(0,0,0,0.05);
 }

 footer .input input{
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 13px;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}

footer .input button{
    padding: 12px 25px;
    border: none;
    outline: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 35px;
    background: #000;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

footer .input button:hover{
    background: #333;
    transform: scale(1.05);
}

footer ul{
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
    max-width: 900px;
    gap: 30px;
    flex-wrap: wrap;
}

footer ul li{
    text-align: center;
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer ul li i {
    font-size: 20px;
    color: #000;
    margin-bottom: 12px;
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0,0,0,0.04);
}

footer ul li .stat-num {
    font-size: 22px;
    font-weight: 800;
    color: #121213;
    margin-bottom: 3px;
}

footer ul li h6{
    font-size: 11px;
    font-weight: 500;
    color: #666;
    margin: 0;
    line-height: 1.3;
    max-width: 120px;
}