*{
    font-family: Arial, Helvetica, sans-serif;
}

html{
    overflow-x: hidden;
}

.slideshow-container {
    pointer-events: none;
}

.first{
    margin-top: 120px;
}

.card-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* service card section */
.service-card {
    display: flex;
    margin-right: 20px;
    /* Adjust the margin value to control the space between service cards */
    margin: 15px;
    background-color: rgb(16,25,32);
    border-radius: 5px;
    padding: 2px;
    max-width: 60%;
    overflow: hidden;
}

.service-card:last-child {
    margin-right: 0;
    /* Remove the margin on the last service card in the row */
}

.service-card img {
    max-width: 280px;
    min-width: 280px;
    max-height: 200px;
    filter: brightness(1.2);
    /* Adjust brightness */
    filter: contrast(1.2);
    /* Adjust contrast */
    filter: saturate(1.2);
    /* Adjust saturation */
    border-radius: 5px;
    margin: 10px 15px 10px 5px;
    /* bottom right top left */
    justify-content: center;
    /* Center horizontally */
    pointer-events: none;

}

/* Setting the styles for the pricing box */
.pricing-box {
    display: flex;
    padding: 10px;
    right: 0;
    margin-left: auto;
}

.price-marker {
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    /* Red marker background color */
    color: rgb(16,25,32);
    /* White text color */
    width: 30px;
    /* Marker width */
    height: 30px;
    /* Marker height */
    display: flex;
    align-items: center;
    /* Align in height */
    justify-content: center;
    font-weight:bold;
    /* Align in width */
}


.seemorebtn {
    background-color: rgb(16,25,32);
    border-radius: 5px;
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 5px;
}

.seemorebtn:hover {
    font-size: 20px;
    transition: 0.3s;
}

@media(max-width: 1400px){
    .seemorebtn{
        margin-left: 0;
    }
    .partners{
        padding-right: 0;
    }
}

.service-details {
    color: white;
    font-size: 18px;
    margin-top: 20px;
}

.service-details p {
    font-size: 14px;
    margin-top: 10px;
    padding: 5px;
}

/* Big game Fishing section */
.about-us-services {
    background-color: rgb(16,25,32);
    border-radius: 5px;
    width: 70%;
    margin: 0 auto;
    color: white;
    padding: 10px;
    justify-content: space-evenly;
    display: flex;
    margin-top: 120px;
}

.about-us-services h1 {
    margin-right: 20px;
    margin-left: 20px;
}

.about-us-services a {
    color: rgb(255, 255, 255);
    font-size: 26px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    letter-spacing: 0.5px;

}

.about-us-services a:hover {
    font-size: 29px;
    display: inline-block;
    color: white;
}

.service-image {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

@media (max-width: 1344px) {
    .about-us-services {
        flex-direction: column;
        /* Stack elements vertically when viewport width is lower than 1344px */
        max-width: 50%;
    }

    .about-us-services h1 {
        margin-right: 0;
        padding: 10px;
        /* Reset the margin to remove horizontal spacing */
    }

    .service-card {
        display: block;
        padding: 10px;
    }

    .pricing-box {
        padding-left: 0px;
        width: fit-content;
    }
}

@media (max-width: 600px) {
    .about-us-services {
        flex-direction: column;
        /* Stack elements vertically when viewport width is lower than 1344px */
        max-width: 70%;
    }

    .about-us-services h1 {
        padding: 10px;
        margin-right: 0;
        /* Reset the margin to remove horizontal spacing */
    }
    .service-card{
        max-width: 90%;
    }
}

/*Some default settings*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    scroll-behavior: auto;
}

.wrap {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/*Some default settings*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    scroll-behavior: auto;
}

.wrap {
    overflow: hidden;
    display: flex;
    justify-content: center;
}


.seeprices{
    text-decoration: none;
}