div.stats-container {
    position: relative;
    height: auto;
    aspect-ratio: 2.3/1;
    background-color: rgba(233, 76, 59, 0.1);
    border-radius: 27px;
    margin-bottom: 100px;
}
div.stats-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    border-radius: 27px;

}
div.stats-container div.texts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 27px;
}
div.stats-container div.texts h2 {
    text-align: center;
    font-size: 55px;
    color: #fff;
}
div.stats-container div.inside div {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
div.stats-container a:hover {
    opacity: 0.7;
}

a.view-packages {
    background-color: rgb(233 76 59);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

a.book-now svg {
    display: flex;
    height: 16px;
    width: 16px;
    overflow: visible;
}

a.book-now {
    background-color: #fff;
    padding: 12px 0;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    margin-left: 10px;
}

div.stats {
    position: absolute;
    z-index: 2;
    height: 120px;
    width: 80%;
    bottom: -60px;
    left: 10%;
    border-radius: 27px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    display: flex;
    align-items: center;
}
div.stats div.stat {
    flex-grow: 1;
    padding: 0 30px;
    border-right: 1px solid #d3d3d3;
}
div.stats div.stat p.title {
    font-size: 36px;
    font-weight: 600;
}
div.stats div.stat p {
    font-size: 18px;
    color: #353535;
    margin-top: 5px;
}

@media only screen and (max-width: calc(1140px)) {
    div.stats-container div.texts h2 {
        font-size: 45px;
    }
    div.stats-container div.stats {
        height: 100px;
        bottom: -50px;
        width: 90%;
        left: 5%;
    }
    div.stats-container div.stats div.stat {
        padding: 0 25px;
    }
    div.stats div.stat p.title {
        font-size: 28px;
    }
}
@media only screen and (max-width: 940px) {
    div.stats-container div.texts h2 {
        font-size: 40px;
    }
    div.stats div.stat p.title {
        font-size: 24px !important;
    }
    div.stats div.stat p {
        font-size: 16px;
        margin-top: 2px;
    }
    div.stats-container div.stats div.stat {
        padding: 0 20px;
    }
    /*div.stats-container div.stats {*/
    /*    height: 100px;*/
    /*    bottom: -50px;*/
    /*    width: 90%;*/
    /*    left: 5%;*/
    /*}*/
    /*div.stats-container div.stats div.stat {*/
    /*    padding: 0 25px;*/
    /*}*/
}