/*Banner*/

.page-banner {
    position: relative;
}

    .page-banner, .page-banner .page-banner-image, .page-banner .page-banner-image img {
        height: 400px;
        object-fit: cover;
    }

.page-banner-image {
    position: relative;
}

    .page-banner-image::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #00000033;
    }

.page-banner-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins;
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    text-align: left;
    color: #fff;
    padding-top: 137px;
}

/*Banner*/

/*Page Layout*/

.page-padding
{
    padding-top: 102px;
    padding-bottom: 102px;
}

/*Page Layout*/


.page-content-area {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: Poppins;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    text-align: left;
    color: #1F1F1F;
}

.tour-card-link
{
    text-decoration: none;
}

.tour-card {
    box-shadow: 0px 4px 51.5px 0px #0000000D;
}

.tour-card-image, .tour-card-image img {
    aspect-ratio: 1/.8;
    object-fit: cover;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.tour-card-image
{
    position: relative;
}

.tour-card-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFFFFFCC;
    padding: 8px 18.5px;
    border-radius: 50px;
    backdrop-filter: blur(2px);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #000000;
}

.tour-card-text {
    padding: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    background: #fff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.tour-card-title {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #000000;
}

.tour-card-location-and-days {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.tour-card-location {
    display: flex;
    align-items: center;
    column-gap: 6px;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #9A9899;
}

.tour-card-location i {
    color: #034694;
    font-size: 15px;
}

.tour-card-days {
    display: flex;
    align-items: center;
    column-gap: 6px;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #9A9899;
}

.tour-card-days i {
    color: #034694;
    font-size: 15px;
}

.see-more-button {
    width: max-content;
    margin: auto;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
    box-shadow: 0px 4px 11.4px 0px #0000004D;
    background: #C49F5F;
    border-radius: 50px;
    padding: 15px 30px;
    border: 1px solid #C49F5F;
}

@media only screen and (max-width: 1199px)
{
    .page-title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media only screen and (max-width: 425px)
{
    .page-title {
        font-size: 21px;
        line-height: 29px;
    }
}