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

:root {
    --main-color: #22b3c1;
    --heading-color: #2a2a2a;
    --paragraph-color: #afafaf;
    --grey-light: #eeeeee;
}

.deals-hero-section {
    background-image: url(assets/banner-01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 90vh;
}

.cta-btn {
    background: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
}

.cta-btn:hover {
    background-color: #fff !important;
    color: var(--main-color) !important;
}

.search-form-container {
    background-color: var(--main-color);
    padding: 30px 50px;
    border-radius: 0 0 25px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 50px 150px 50px;
}

.search-form-container>form {
    width: 100%;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-form-container>form>h3 {
    color: #fff !important;
}

.destination-form-select {
    border: none;
    border-bottom: 1px solid #fff;
    width: 300px;
    padding: 8px 12px;
    color: #fff;
    letter-spacing: 0.6px;
    font-weight: 300;
    background-color: transparent;
    cursor: pointer;
}

.destination-form select:focus,
.price-form select:focus {
    border-bottom: 1px solid #fff;
    outline: none !important;
}

.deals-offers-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.deals-swiper {
    width: 100%;
    height: calc(830px + 100px);
    margin-bottom: 100px;
}

.deals-swiper-slide {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
}

.deals-swiper-card {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px !important;
}

.deals-header {
    width: 60%;
    margin-bottom: 30px;
    text-align: center;
}

.deals-swiper-card-img {
    position: unset !important;
    width: 50% !important;
    height: 390px !important;
}

.deals-swiper-card-img img {
    border-radius: 25px 0 0 25px !important;
    height: 390px !important;
}

.deals-card-info {
    position: unset !important;
    top: 0;
    left: 0;
    width: 50% !important;
    height: 390px !important;
    border-radius: 0 25px 25px 0 !important;
    box-shadow: none !important;
    background-color: #f9f9f9;
}

.deals-card-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}

.deals-card-include {
    width: 100%;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--grey-light);
    border-bottom: 1px solid var(--grey-light);
}

.deals-swiper-card-p {
    font-size: 15px;
    margin-bottom: 15px;
}

@media screen and (max-width: 992px) {

    .deals-offers-container {
        padding: 0 20px !important;
    }

    .search-form-container>form {
        flex-direction: column !important;
        gap: 30px;
    }

    .destination-form,
    .price-form,
    .destination-form-select,
    .deals-form-btn {
        width: 100% !important;
    }

    .deals-swiper-card {
        flex-direction: column !important;
        height: 700px !important;
    }

    .deals-swiper-card-img {
        width: 100% !important;
        height: 400px !important;
    }

    .deals-swiper-card-img img {
        height: 400px !important;
        border-radius: 25px 25px 0 0 !important;
    }

    .deals-card-info {
        width: 100% !important;
        height: 300px !important;
        border-radius: 0 0 25px 25px !important;
    }

    .deals-swiper {
        height: 1550px;
    }
}

@media screen and (max-width: 768px) {

    .deals-swiper-card-img {
        height: 320px !important;
    }

    .deals-swiper-card-img img {
        height: 320px !important;
    }

    .deals-card-info {
        height: 380px !important;
    }

}

@media screen and (max-width: 768px) {
    .deals-swiper {
        height: 3400px;
    }

    .deals-swiper-card {
        width: 100%;
        height: 830px;
    }

    .deals-card-header {
        flex-direction: column !important;
    }

    .deals-swiper-card-img {
        height: 450px !important;
    }

    .deals-swiper-card-img img {
        height: 450px !important;
    }

    .deals-card-info {
        height: 380px !important;
    }
}


@media screen and (max-width: 576px) {
    .container {
        width: 370px;
        padding: 0 20px;
    }

    .header h1 {
        text-align: center;
    }

    .search-form-container {
        margin: 0 25px 50px 25px;
        padding: 20px;
    }

}

