/* Fonts */
@font-face {
    font-family: 'Reey-Regular';
    src: url('../fonts/reey/Reey-Regular.ttf.woff') format('woff'),
        url('../fonts/reey/Reey-Regular.ttf.svg#Reey-Regular') format('svg'),
        url('../fonts/reey/Reey-Regular.ttf.eot'),
        url('../fonts/reey/Reey-Regular.ttf.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

.font-reey {
    font-family: 'Reey-Regular' !important;
}

/* General */
.fw-800 {
    font-weight: 800;
}

.fw-700 {
    font-weight: 700;
}

.bg-primary-500 {
    background-color: #FFEFE8;
}

.bg-gray-sm {
    background-color: #f7f7f7;
}

.text-gray-400 {
    color: #818181 !important;
}

.text-gray-500 {
    color: #ababab !important;
}

.text-gray-600 {
    color: var(--bs-gray-600) !important;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px !important;
}

.ls-1 {
    letter-spacing: 0.5px;
}

.ls-2 {
    letter-spacing: 1px;
}

/* General */


/* Navbar */
.navbar-nav .nav-link {
    color: #565656;
    font-weight: 600;
    font-size: 0.8rem;
    margin: 0 0.5rem;
    transition: 0.3s;
    border-radius: 10px;
    padding-right: 0.7rem !important;
    padding-left: 0.7rem !important;
}

/* hover rounded in .nav-link */
.navbar-nav .nav-item .nav-link:hover {
    border-radius: 10px;
    background-color: #e6d8d2;
}

.navbar-nav .nav-link.active::after {
    content: "";
    display: block;
    width: 20px;
    height: 4px;
    background-color: var(--bs-primary);
    margin: 0 auto;
    margin-top: 0px;
    margin-left: 0px;
    border-radius: 20px;
}

.title-header {
    margin: 200px 0px 200px 0px;
}

.title-header h1 {
    font-size: 3.5rem;
}

.title-header p {
    font-size: 1.3rem;
}


/* Cards */
.card-company {
    border: none;
    border-radius: 20px;
    background-color: #F9F9F9;
}


/* Card Destination */

.has-bg-img {}

.card-destination-2 {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    width: auto;
    height: 400px;

    border-radius: 4px;
    /* Styling */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    /* transition: box-shadow 0.56s ease-in-out; */
    /* Animation */
    /* background-color: rgba(0,0,0,.2); /* for debugging */
    border-radius: 20px !important;

    transition: all 0.8s ease;
}

.card-body-destination {
    align-self: flex-end;
    padding: 2rem;
    color: rgba(255, 255, 255, .90);
    line-height: 1;

    content: '';
    width: 100%;
    /* opacity: 0.50; */
    background: rgba(0, 0, 0, 0.30);
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.0));
    background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.0));
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.0));
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
    border-radius: 20px !important;
}

.card-destination-2:hover {
    opacity: 0.95;
    transform: scale(1.05);
    box-shadow: 0px 11px 31px 0px rgba(0, 0, 0, 0.3);
}

.card-destination-2 .card-body-destination h4 {
    transition: color 0.3s ease;
}

.card-destination-2:hover .card-body-destination h4 {
    color: var(--bs-primary-2);
}


.card-destination-2 h4 {
    font-size: 19px !important;
}

.card-destination-2 p {
    font-size: 14px !important;
}

.card-destination-2 span {
    font-size: 10px;
    letter-spacing: 1.4px !important;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .title-header {
        margin: 80px 0px 10px 0px;
    }

    .title-header h1 {
        font-size: 34px !important;
    }

    .title-header p {
        font-size: 15px;
    }

    .card-destination-2 {
        height: 300px !important;
    }

    .card-destination-2 h4 {
        font-size: 12px;
    }

    .card-destination-2 p {
        font-size: 12px;
    }

    .card-body-destination {
        padding: 1rem;
    }


    .fs-sm-20 {
        font-size: 20px !important;
    }
}

@media (max-width: 991px) {
    .title-header h1 {
        font-size: 2.0rem;
    }
}

.btn-primary {
    background: linear-gradient(180deg,
            rgba(255, 159, 79, 1) 0%,
            rgba(240, 109, 0, 1) 100%);
    border-radius: 10px;
}

.btn-primary:active {
    background: linear-gradient(180deg,
            rgba(255, 159, 79, 1) 0%,
            rgb(194, 88, 2) 100%);
}

.btn-primary:hover {
    box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.badge-1 {
    color: #53C51D;
    background-color: #E3FFD6;
}

.badge-2 {
    color: #FD4D4D;
    background-color: #FFD9D9;
}

.badge-3 {
    color: #1DA6C5;
    background-color: #D3F7FF;
}

.card-package {
    border: none;
    border-radius: 25px;
    box-shadow: 0px 5.18px 29.77px 0px rgba(0, 0, 0, 0.11);
    transition: all 0.4s ease;
    cursor: pointer;
}

.card-package img {
    border-radius: 20px;
}

.card-package .city {
    border-radius: 10px;
    box-shadow: 0px 5.18px 46.59px 0px rgba(0, 0, 0, 0.1);
}

.card-panel-1 {
    box-shadow: 0px 5.18px 46.59px 0px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.card-package:hover {
    background-color: #fff2e8;
}

.accordion-button {
    /* background-color: #fbf4ef; */
    margin-bottom: 10px;
    background: linear-gradient(180deg,
            rgb(250, 238, 229) 0%,
            rgb(250, 204, 169) 100%) !important;
    transition: background-color 0.9s ease !important;
}

.accordion-button:hover {
    /* background: linear-gradient(180deg,
            rgba(255, 204, 153, 1) 0%,
            rgba(255, 153, 51, 1) 100%) !important; */
    background: linear-gradient(180deg,
            rgba(249, 227, 211, 1) 0%,
            rgba(255, 183, 132, 1) 100%) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    /* background-color: var(--bs-accordion-active-bg); */
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    /* background: linear-gradient(180deg,
            rgba(249, 227, 211, 1) 0%,
            rgba(255, 183, 132, 1) 100%) !important; */
}

.text-primary-bold {
    color: #934200;
}

.bg-success-soft {
    background-color: #eef9e9;
}

.card-type {
    border-radius: 20px;
    box-shadow: 0px 5.18px 46.59px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.8s ease;
    cursor: pointer;
    /* border: none; */
    border: 1px solid #e1e1e1;
}

.card-type.open-trip {
    background-color: #F6FFF2;
    color: #3f9e12;
}

.card-type.private-trip {
    background-color: #FFF0DA;
    color: #DA8B14;
}

.card-type.mice-trip {
    background-color: #F1FDFF;
    color: #1DA6C5;
}


.card-type:hover {
    background-color: #ffffff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.list-short-menu {
    list-style: none;
    padding-left: 0;
}

.list-short-menu li {
    margin-bottom: 10px;
}

.btn-social:hover {
    background-color: rgba(255, 255, 255, 0.151) !important;
}

.card-testimoni {
    border: none;
    border-radius: 22px 22px 62px 22px;
    box-shadow: 0px 4px 59px 0px rgba(0, 0, 0, 0.09);
}

.card-rent {
    border: none;
    border-radius: 25px;
    box-shadow: 0px 5.18px 29.77px 0px rgba(0, 0, 0, 0.11);
    transition: all 0.8s ease;
}

.card-rent img {
    border-radius: 20px;
}

.card-rent .city {
    border-radius: 10px;
    box-shadow: 0px 5.18px 46.59px 0px rgba(0, 0, 0, 0.1);
}

.article-content p {
    font-size: 20px;
    color: black;
    letter-spacing: 0.4px;
}
.article-content p img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    /* width: 50%; */
}

.article-content .content div {
    font-size: 20px;
    color: black;
    letter-spacing: 0.1px;
    margin-bottom: 2%;
}

.article-content .content ol {
    font-size: 20px;
    color: black;
    letter-spacing: 0.1px;
    margin-bottom: 2%;
}