.hero-section{
    position: relative;
}
.hero-section img{
    width: 95%;
    height: 90vh;
    object-fit: cover;
    margin: 30px auto 0px;
    display: block;
    border-radius: 20px;
    box-shadow: 2px 2px 10px lightslategray;
    filter: brightness(0.9);
}
.shadow-font{
    color: #FFFFFF;
    text-shadow: 2px 2px 0 #4074b5, 2px -2px 0 #4074b5, -2px 2px 0 #4074b5, -2px -2px 0 #4074b5, 2px 0px 0 #4074b5, 0px 2px 0 #4074b5, -2px 0px 0 #4074b5, 0px -2px 0 #4074b5;
    letter-spacing: 2px;
    font-size: 2em;
    font-weight: 900;
}
.hero-section .hero-desc{
    position: absolute;
    width: 80%;
    padding: 60px 10px;
    text-align: center;
    background-color: var(--primary-light);
    border-radius: 20px;
    backdrop-filter: blur(1px);
    text-transform: capitalize;
}
.group-tour p{
    text-transform: none;
    padding: 10px;
}
.tour-container{
    width: 90%;
    margin: 0px auto 20px;
}
.tour-card{
    position: relative;
    width: 30%;
    min-width: 350px;
    margin: 10px;
}
.tour-card img{
    width: 100%;
    border-radius: 5px;
    box-shadow: 1px 1px 5px lightslategray;
    transition: all 0.3s;
}
.tour-card img:hover{
    box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
}
.tour-card .desc{
    position: absolute;
    bottom: 5px;
    width: 100%;
    border-radius: 5px;
    color: #fff;
    background-color: rgba(0,0,0,0.4);
    padding: 10px;
}
.tour-card .desc .flex-box{
    justify-content: space-between;
    padding: 3px 10px;
}
.tour-card .desc h2{
    width: 80%;
}
.tour-card .desc span{
    color: black;
    background-color: var(--primary-color);
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
}
.tour-card .price h4{
    padding-left: 10px;
    color: darkgray;
    text-decoration: line-through;
}
.tour-card .btn{
    width: calc(100% - 20px);
    font-size: 15px;
}
@media (max-width: 770px){
    .hero-section .hero-desc{
        width: 90%;
        font-size: 1.5em;
        letter-spacing: 4px;
    }
}
@media (max-width: 430px){
    .tour-card{
        width: 100%;
        min-width: 300px;
    }
    .tour-card .desc h2{
        font-size: 18px;
    }
}