.adventure-choices {
    padding-top: 100px;
    position: relative;
    background-image: url(../images/top-border-shape.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    overflow: hidden;
    z-index: 2;
}

.adventure-choices .content-block {
    max-width: 628px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    text-align: center;
}

.adventure-choices-wrepr .column-row {
    flex-wrap: nowrap;
    margin: 0 -15px;
}

.adventure-choices-wrepr .column-row>div {
    width: 100%;
    padding: 0 15px;
}
.adventure-choices-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.adventure-choices-box .btn-div {
    justify-content: center;
    border-top: 1px solid #000000;
    padding: 10px 0;
    border-bottom: 1px solid #000000;
    flex-grow: 1;
}
.adventure-choices-box .btn-div .btn {
    width: 100%;
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 25px;
    font-size: 18px;
    letter-spacing: 0.369px;
}

.adventure-choices-box .image-wraper {
    position: relative;
    min-height: 442px;
    width: 290px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 160px;
    margin-bottom: 160px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.adventure-choices-box .image-wraper img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    transition: transform 0.2s ease-in-out;
}

.adventure-choices-box .image-wraper img:hover {
    animation: wiggle 0.4s ease-in-out;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(3deg);
    }
    50% {
        transform: rotate(-3deg);
    }
    75% {
        transform: rotate(2deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.adventure-choices-wrepr {
    position: relative;
}

.adventure-choices-wrepr:before {
    content: "";
    display: block;
    background: #000000;
    height: 100%;
    width: 1px;
    position: absolute;
    right: 50%;
    top: 0;
}

@media only screen and (max-width:1199px) {
    .adventure-choices-box .image-wraper {
        margin-top: 100px;
        margin-bottom: 100px;
    }

}

@media only screen and (max-width: 991px) {
    .adventure-choices-box .image-wraper {
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .adventure-choices-box .image-wraper {
        width: 230px;
        min-height: 352px;
    }
    .adventure-choices {
        padding-top: 60px;
    }
    .adventure-choices .content-block {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width:767px) {
    .adventure-choices-box .image-wraper {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .adventure-choices-wrepr .column-row {
        display: block;
    }
    .adventure-choices-wrepr:before {
        display: none;
    }
    /* .adventure-choices-box .image-wraper {
        width: 190px;
        height: 290px;
        padding-bottom: unset;
    } */
    .adventure-choices{
        background-image: url(../images/top-mob-border-shape.svg);
    }
}