.banner {
    position: relative;
    width: 100%;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('images/evening-desert-safari-bg.jpg');
    min-height: 550px;
    height: 100%;
}

.banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(33, 33, 33, .7);
}

.morningSafariWrapper {
    position: absolute;
    z-index: 100;
    text-align: center;
    max-width: 1170px;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
}

h1 {
    font-size: 40px;
    text-align: center;
    font-weight: 700;
    line-height: 150%;
    color: #fff;
    max-width: 100%;
    width: 100%;
}

.detailWrapper {
    display: flex;
    padding-top: 60px;
    width: 100%;
    justify-content: space-between;
}

.detailsText {
    max-width: 750px;
    width: 100%;
}

ul.pagination {
    display: flex !important;
    list-style: none;
    max-width: max-content;
    margin: 10px auto 0;
    column-gap: 10px;
}

.pagination button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    opacity: 0.4;
    background-color: #869791;
    text-indent: -9999px;
}

.pagination li.slick-active button {
    background-color: #ff891e;
    opacity: 1;
}
.detailsContent {
    padding: 40px 0;
    border-bottom: 4px solid #ff891e;
}
.detailsContent h2 {
    margin: 20px 0;
    font-size: 24px;
    line-height: 150%;
    color: #333;
    text-align: left;
    font-weight: 700;
}

.detailsContent p {
    font-size: 15px;
    line-height: 150%;
    color: #333;
    font-weight: 400;
    text-align: left;
    padding-bottom: 15px;
}

.detailsContent ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
 }
.detailsContent ul li{
    list-style: none;
    font-size: 13px;
    line-height: 150%;
    font-weight: 400;
    color: #333;
    text-align: left;
    position: relative;
    padding-left: 30px;
}
.detailsContent ul li::before{
    position: absolute;
    content: '';
    width: 25px;
    height: 25px;
    background-image: url(images/check.svg);
    background-repeat: no-repeat;
    left: 0;
    top: -5px;
    background-size: cover;
}

.detailsContent.pdt-0{
padding-top: 0;
}
.detailsContent.r-flex ul{
flex-wrap: wrap;
flex-direction: row;
justify-content: space-between;
width: 100%;
}
.detailsContent.r-flex li{
max-width: 30%;
width: 100%;
}
.mb-40{
    margin-bottom: 40px;
}

.tableWrapper{
    overflow-x: auto;
}
.tableWrapper table{
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}
.tableWrapper table tr th{
text-align: center;
font-size: 14px;
padding: 5px;

}
.tableWrapper table tr td{
text-align: center;
font-size: 13px;
padding: 5px;

}
@media(max-width:575px){
    .detailWrapper{
        flex-wrap: wrap;
    }
    .detailsText,.sideBarWrapper{
        max-width: 100%;
    }
    .detailsContent {
        padding: 20px 0;
    }
    .detailsContent h2 {
        margin: 15px 0;
        font-size: 22px;
    }
    .detailsContent p {
        font-size: 13px;
    }
    .detailsContent.r-flex li {
        max-width: 100%;
    }
    .tableWrapper table tr th,    .tableWrapper table tr td {
        font-size: 12px;
    }
}