/* Global styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}



html,
body {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Merriweather", serif;
    user-select: none;
    font-size: 14px;
    color: #311D3F;
}


ul,
ol {
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
}

/* Navbar styles */
.nav-menu {
    display: flex;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    padding: 10px 100px;
    box-sizing: border-box;
    transition: .5s;
    z-index: 600;
    background: linear-gradient(#311D3F, transparent);
    color: white;



    /*language dropdown*/
    .select-menu {
        width: 105px!important;
    }

    .select-menu .select-btn {
        height: 40px!important;
        background: transparent!important;
        padding: 0 0 0 10px!important;
        border: none!important;
    }

    .select-menu .options {
        width: 105px!important;
        padding: 10px 0!important;
        background: linear-gradient(transparent, rgba(49, 29, 63, 0.46))!important;
        box-shadow: none!important;
    }

    .select-menu .options .option {
        height: 40px!important;
        background: transparent!important;
    }

    .select-menu .options .option:hover {
        background: rgba(226, 62, 87, 0.56) !important;
        .option-text {
            color: white!important;
        }
    }

    .select-menu .options .option .option-text {
        color: white!important;
    }

    .select-btn {
        .down_black {
            display: block;
        }
        .down_white {
            display: none;
        }
        i {
            font-size: 25px;
            transition: 0.3s;
        }
        .sBtn-text {
            color: white;
        }
    }

}

nav li a {
    color: white;
}

nav.black {
    background: white;
    height: 80px;
    box-shadow: 0 2px 100px 0 rgba(0, 0, 0, 0.05);

    .select-btn {
        .sBtn-text {
            color: #311D3F;
        }
        .down_black {
            display: none;
        }
        .down_white {
            display: block;
        }
    }
    .select-menu {
        .options .option .option-text {
            color: #311D3F!important;
        }
        .options {
            background: white!important;
        }
        .option:hover {
            .option-text {
                color: white!important;
            }
        }

    }

}

.dark {
    display: none;
}

nav.black .default {
    display: none;
}

nav.black .dark {
    display: block;
}

nav.black li a {
    color: black;
}

nav .logo {
    float: left;
}

nav .logo img {
    height: 80px;
    transition: .5s;
}

nav.black .logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    border-radius: 12px;
}

.nav-links li {
    list-style: none;
    margin: 0 12px;
}

.nav-links li a {
    position: relative;
    font-size: 16px;
    padding: 6px 0;
    text-decoration: none;
    color: white;
}

.nav-links li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(109.6deg, #E23E57 30%, #88304E 100%);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.nav-links li a:hover:before {
    width: 100%;
}

.nav-links li.center a:before {
    left: 50%;
    transform: translateX(-50%);
}

.nav-links li.upward a:before {
    width: 100%;
    bottom: -5px;
    opacity: 0;
}

.nav-links li.upward a:hover:before {
    bottom: 0;
    opacity: 1;
}

.nav-links li.forward a:before {
    width: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.nav-links li.forward a:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links li a.active:before {
    width: 100%; /* Ensure the underline covers the whole link */
    background: #E23E57; /* Set a specific color for the active underline */
}


/*nav only white*/
nav.black_blog {
    background: white;
    height: 80px;
    padding: 10px 50px;
    box-shadow: 0 2px 100px 0 rgba(0, 0, 0, 0.05);
}
.dark {
    display: none;
}

nav.black_blog .default {
    display: none;
}

nav.black_blog .dark {
    display: block;
}

nav.black_blog li a {
    color: black;
}


nav.black_blog .logo img {
    height: 60px;
}


/* Responsive Styles */
@media (min-width: 1100px) and (max-width: 1300px) {
    nav {
        padding: 0 50px!important;
    }
}
@media (min-width: 1000px) and (max-width: 1100px) {
    nav {
        padding: 0 10px!important;
    }
}

@media (min-width: 1001px) {
    label[for="ham-menu"] {
        display: none;
    }
    .empty_div {
        display: none;
    }
}

@media (max-width: 1000px) {
    nav {
        .nav-links {
            display: none;
        }
        .empty_div {
            display: block;
        }
        label[for="ham-menu"] {
            display: block;
        }
    }
    nav.black {
        background: #311D3F;

        .select-btn {
            .sBtn-text {
                color: white;
            }
            .down_black {
                display: block;
            }
            .down_white {
                display: none;
            }
        }
        .select-menu {
            .options .option .option-text {
                color: white!important;
            }
            .options {
                background: #311D3F!important;
            }
            .option:hover {
                background: white!important;
                .option-text {
                    color: #311D3F!important;
                }
            }

        }

    }
    nav.black .default {
        display: block;
    }

    nav.black .dark {
        display: none;
    }
    nav .logo img {
        height: 60px;
    }
    nav.black .logo img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px !important;
    }
    nav .logo img {
        height: 60px;
    }
    nav.black .logo img {
        height: 60px;
    }
    nav.black_blog {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    nav {
        height: 70px;
        padding: 0 10px;
    }
    nav.black {
        height: 70px;
    }
    .planning_btn {
        width: auto!important;
        height: 30px!important;
        padding: 5px 10px!important;
        font-size: 12px!important;
    }
    .language_planning {
        height: 30px!important;
    }
}

/* Menu toggle button for smaller screens */
.menu-toggle {
    display: none;
    font-size: 30px;
}



/* Hamburger menu styles */
#ham-menu {
    display: none;
}
label[for="ham-menu"] {
    position: fixed;
    top: 30px;
    left: 100px;
    z-index: 999;
    height: 40px;
    border: none;
    transition: left 0.9s;
    cursor: pointer;
}
.ham-menu {
    gap: 32px;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    visibility: hidden;
    transform: translate(-110%);
    z-index: 998;
    background-color: white;
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    .nav-links li {
        text-align: left;
        width: 90%;
        border-bottom: 1px solid #F7F7F7;
        margin: 0 20px 5px 10px;
    }


    /*language dropdown*/
    .select-menu {
        width: 105px!important;
    }

    .select-menu .select-btn {
        height: 40px!important;
        background: transparent!important;
        padding: 0 0 0 10px!important;
        border: none!important;
    }

    .select-menu .options {
        width: 105px!important;
        padding: 10px 0!important;
        background: transparent!important;
        box-shadow: 0 2px 100px 0 rgba(0, 0, 0, 0.05);
    }

    .select-menu .options .option {
        height: 40px!important;
        background: transparent!important;
    }

    .select-menu .options .option:hover {
        background: rgba(226, 62, 87, 0.56) !important;
        .option-text {
            color: white!important;
        }

    }

    .select-menu .options .option .option-text {
        color: #311D3F!important;
    }

    .select-btn {
        .down_black {
            display: none;
        }
        .down_white {
            display: block;
        }
        i {
            font-size: 25px;
            transition: 0.3s;
        }
        .sBtn-text {
            color: #311D3F;
        }
    }
}
.ham-menu > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ham-menu > ul > li {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 0.15em;
    cursor: pointer;
    color: rgb(97, 97, 97);
    a {
        color: black;
    }
}

#ham-menu:checked + label {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#ham-menu:checked + label {
    left: calc(100% - 80px);
    transition: 1.05s;
}

#ham-menu:checked ~ div.ham-menu {
    transform: translate(0px);
    visibility: visible;
}

.full-page-green {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: 500ms;
}

#ham-menu:checked ~ div.full-page-green {
    display: block;
    opacity: 1;
    visibility: visible;
}

[for="ham-menu"] > div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.menu-line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 6px 0 5px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    background-color: white;
    transition: 500ms;
    transform-origin: right center;
}

[for="ham-menu"] > div > span:nth-child(4),
[for="ham-menu"] > div > span:nth-child(5),
[for="ham-menu"] > div > span:nth-child(6) {
    border-radius: 0 2px 2px 0;
    transform-origin: left center;
}

#ham-menu:checked + label span {
    background-color: gray;
}

#ham-menu:checked + label span:nth-child(2),
#ham-menu:checked + label span:nth-child(5) {
    transform: scale(0);
}

#ham-menu:checked + label span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

#ham-menu:checked + label span:nth-child(4) {
    transform: translateY(10px) rotate(-45deg);
}

#ham-menu:checked + label span:nth-child(3) {
    transform: translateY(-17px) rotate(-45deg);
}

#ham-menu:checked + label span:nth-child(6) {
    transform: translateY(-17px) rotate(45deg);
}


@media (max-width: 1000px) {
    label[for="ham-menu"] {
        left: 50px;
        top: 25px;
    }
}

@media (max-width: 768px) {
    label[for="ham-menu"] {
        left: 50px;
    }
    .ham-menu > ul > li {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    #ham-menu:checked + label {
        left: calc(100% - 60px);
    }
}
@media (max-width: 480px) {
    label[for="ham-menu"] {
        left: 30px;
        top: 15px;
    }
    .ham-menu > ul > li {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    #ham-menu:checked + label {
        left: calc(100% - 50px);
    }

    #ham-menu:checked + label span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }
    #ham-menu:checked + label span:nth-child(4) {
        transform: translateY(5px) rotate(-45deg);
    }
    .menu-line {
        width: 15px;
        margin: 4px 0 5px;
    }
}




/* planning styles */

.roundborders {
    border-radius: 5px;
}

.large:hover {
    height: 165px;
}

.language_planning {
    height: 40px;
}

.planning_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: auto;
    background-color: #008069;
    color: white;
    padding: 20px 15px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
}
.planning_btn:hover {
    color: white;
    background-color: rgba(0, 128, 105, 0.9);
}


/*footer*/


.footer {
    background: linear-gradient(105deg ,#311D3F,#050009);
    padding-top: 80px;
    padding-bottom: 40px;
}
/*END FOOTER SOCIAL DESIGN*/
.single_footer{}
@media only screen and (max-width:768px) {
    .single_footer{margin-bottom:30px;}
}
.single_footer h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 14px;
}

.single_footer p{color:#fff;}
.single_footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.single_footer ul li{
    display: flex;
    gap: 10px;
}
.single_footer ul li a {
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 36px;
    font-size: 14px;
}
.single_footer ul li a:hover { color: #ff3666; }

.single_footer_address{}
.single_footer_address ul{}
.single_footer_address ul li{color:#fff;}
.single_footer_address ul li span {
    font-weight: 400;
    color: #fff;
    line-height: 28px;
}
.contact_social ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

/*START NEWSLETTER CSS*/
.subscribe {
    display: block;
    position: relative;
    margin-top: 15px;
    width: 100%;
}
.subscribe__input {
    background-color: #311D3F;
    border: none;
    border-radius: 35px;
    color: #B9B9B9;
    display: block;
    padding: 0 20px;
    height: 48px;
    width: 100%;
}
@media only screen and (max-width:768px) {
    .subscribe__input{padding: 0 50px 0 20px;}
}

.subscribe__btn {
    background-color: transparent;
    border-radius: 0 25px 25px 0;
    color: #01c7e9;
    cursor: pointer;
    display: block;
    font-size: 20px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
}
.subscribe__btn img{
    transition: all 0.3s ease 0s;
    background: #D43C55;
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50px;
    transform: rotate(180deg);
}
@media only screen and (max-width:768px) {
    .subscribe__btn{right:0;}
}

.subscribe__btn:hover img{
    color:#ff3666;
}
button {
    padding: 0;
    border: none;
    background-color: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
}
/*END NEWSLETTER CSS*/

/*START SOCIAL PROFILE CSS*/
.social_profile {margin-top:40px;}
.social_profile ul{
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.social_profile ul li{float:left;}
.social_profile ul li a {
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    margin: 0 5px;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
    width: 50px;
    height: 50px;
    line-height: 47px;
    display: block;
    border: 1px solid rgba(255,255,255,0.2);
}
@media only screen and (max-width:768px) {
    .social_profile ul li a{margin-right:10px;margin-bottom:10px;}
}
@media only screen and (max-width:480px) {
    .social_profile ul li a{
        width:40px;
        height:40px;
        line-height:40px;
    }
}
.social_profile ul li a:hover{
    background:#ff3666;
    border: 1px solid #ff3666;
    color:#fff;
}
/*END SOCIAL PROFILE CSS*/
.copyright {
    margin-top: 70px;
    padding-top: 40px;
    color:#fff;
    font-size: 10px;
    border-top: 1px solid white;
}
.copyright small {
    font-weight: 100;
}
.copyright p {
    text-align: center;
}
.copyright a{color:#ffffff;transition: all 0.2s ease 0s;}
.copyright a:hover{color:#ff3666;}




.select-menu {
    max-width: 330px;
}

.select-menu .select-btn {
    display: flex;
    height: 55px;
    background: #fff;
    padding: 20px;
    font-size: 18px;
    font-weight: 400;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    border-right: 1px solid #311D3F;
}

.select-menu .options {
    position: absolute;
    display: none;
    opacity: 0;
    width: 330px;
    overflow-y: auto;
    max-height: 295px;
    padding: 10px;
    margin-top: 10px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-duration: 0.35s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.35s;
    -webkit-animation-fill-mode: both;
}

.select-menu .options .option {
    display: flex;
    cursor: pointer;
    min-height: 55px;
    border-radius: 8px;
    align-items: center;
    background: #fff;
    padding: 0 16px;
}

.select-menu .options .option:hover {
    background: #f2f2f2;
}

.select-menu .options .option .option-text {
    font-size: 18px;
    color: #333;
}

.select-btn i {
    font-size: 25px;
    transition: 0.3s;
}

.select-menu.active .select-btn i {
    transform: rotate(-180deg);
}

.select-menu.active .options {
    display: block;
    opacity: 1;
    z-index: 10;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 30px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    to {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
}

.btn_search {
    width: 240px;
    height: 55px;
    background: linear-gradient(109.6deg, #E23E57 30%, #88304E 100%);
    border: none;
    border-radius: 0 8px 8px 0;
    color: white;
    transition: color 0.1s cubic-bezier(0.16, 0.08, 0.355, 1), background 0.1s cubic-bezier(0.16, 0.08, 0.355, 1);
    display: inline-block;
    cursor: pointer;
    outline: none;
    vertical-align: middle;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn_search:hover {
    background: linear-gradient(109.6deg, #e22b46 30%, #981944 100%);
    color: #fff;
}

.btn-border {
    background-color: transparent;
    color: #1d1d1d;
}

.btn-arrow {
    position: relative;
    transition: background-color 300ms ease-out;
}

.btn-arrow span {
    display: inline-block;
    position: relative;
    transition: all 300ms ease-out;
    will-change: transform;
}

.btn-arrow:hover span {
    transform: translate3d(-1rem, 0, 0);
}

.btn-arrow svg {
    position: absolute;
    width: 1.1em;
    right: 0;
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 300ms ease-out;
    will-change: right, opacity;
}

.btn-arrow svg * {
    stroke-width: 5;
}

.btn-arrow:hover svg {
    opacity: 1;
    right: -2rem;
}

.search_categories .search_item {
    width: 240px;
    height: 55px;
}

.search_item:first-child .select-btn {
    border-radius: 8px 0 0 8px;
}
/*popup*/
#popup1, #popup2 {
    z-index: 1000000000; /* Ensure the popups are on top */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

#popup1:target, #popup2:target {
    display: block;
}
.overlay {
    z-index: 1000000001;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}
.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    margin: auto;
    top: 50%;
    max-height: 85vh;
    transform: translate(0, -50%);
    background: #fff;
    border-radius: 10px;
    width: 550px;
    position: relative;
    transition: all .5s ease-in-out;
    overflow-y: scroll;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    .select-menu {
        max-width: 100%!important;
    }
}

.popup::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}


.popup h2 {
    margin-top: 0;
    color: white;
    font-size: 14px;
    background: #311D3F;
    border-radius: 10px 10px 0 0;
    padding: 10px 32px;
    height: 48px;
}
.popup .close {
    position: absolute;
    top: 0;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    text-decoration: none;
    color: white;
}
.popup .close:hover {
    color: #ff3666;
}
.popup .content {
    padding: 16px 32px;
    color: black;
}

/*popup all page*/
.rotate-180 {
    transform: rotate(180deg);
}

.hide { display: none; }
.error { color: red; }
.valid { color: green; }

.popup {
    label {
        font-size: 12px;
        font-weight: 510;
        color: #0A1F3F;
    }
    .right_column {
        padding-top: 3px;
    }
    .error-msg {
        color: red;
        font-size: 12px;
        display: none;
    }
    .form-group {
        input {
            border: none;
            height: 40px;
            background: #F7F7F7;
            border-radius: 4px;
            padding: 0 10px;
        }
        input::placeholder {
            font-size: 12px;
            color: #B9B9B9;
        }
    }
    .custom_dropdown {
        margin-top: 16px;
        .select-btn {
            background: #F7F7F7;
            border-radius: 4px;
            height: 40px;
            border: none;
            padding: 0 0 0 10px;
            i {
                font-size: unset;
            }
            .sBtn-text {
                font-size: 12px;
                span {
                    color: #B9B9B9;
                }
            }
        }
        .select-custom-btn {
            background: #008069;
            padding-right: 10px;
            border-bottom-left-radius: 0;
            border-top-left-radius: 0;
        }

        .options {
            width: 42%;
            .option {
                height: 35px;
            }
            .option .option-text {
                font-size: 12px;
            }
        }
    }

    #datepicker_container, #datepicker_container2{
        margin-top: 16px;
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }


        .form-container {

            .datepicker_div {
                background-color: #fff;
                position: relative;

                &.open {
                    .calendar-popup {
                        opacity: 1;
                    }
                }


                input {
                    font-size: 12px;
                    width: 100%;
                    border: none;
                    height: 40px;
                    background: #F7F7F7;
                    border-radius: 4px;
                    padding: 0 10px;
                    cursor: pointer;
                }
                input::placeholder {
                    font-size: 12px;
                    color: #B9B9B9;
                }
                input:focus-visible {
                    outline: none;
                }

                .date_icon {
                    display: flex;
                    cursor: pointer;

                    background: #008069;
                    padding: 10px;
                    border-bottom-right-radius: 4px;
                    border-top-right-radius: 4px;
                    img {
                        width: 20px;
                    }
                }
            }

            .calendar-popup {
                z-index: 900;
                background-color: #F7F7F7;
                border-radius: 4px;
                /*opacity: 0;*/
                padding: 10px;
                position: absolute;
                top: calc(100% + 5px);
                transition: all .1s linear;
                width: 100%;

                .month-and-year {
                    align-items: center;
                    display: flex;
                    text-align: center;

                    h4 {
                        width: 100%;
                        font-size: 14px;
                        color: #008069;
                    }
                }

                .button {
                    background-color: transparent;
                    border: none;
                    font-weight: bold;
                    outline: none;
                    position: absolute;
                    top: 15px;
                    color: #008069;

                    &:hover {
                        cursor: pointer;
                    }

                    &.prev {
                        left: 10px;
                        top: 7px;
                    }

                    &.next {
                        right: 10px;
                        top: 7px;
                    }
                }

                table {
                    font-size: 12px;
                    width: 100%;

                    tr {
                        display: grid;
                        grid-template-columns: repeat(7, 1fr);
                        padding: 5px 0;

                        th,
                        td {
                            text-align: center;
                        }
                    }

                    .day {
                        &:hover {
                            cursor: pointer;
                        }
                    }
                }
            }
        }
    }

    /*increement*/
    .increase {
        margin-top: 16px;
        .qty-container{
            display: flex;
            align-items: center;
        }
        .qty-container .input-qty{
            text-align: center;
            width: 40px;
            height: 40px;
            max-width: 80px;
            margin-right: 1px;
            margin-left: 1px;
            border-radius: 0;
        }
        .input-qty:focus-visible {
            outline: none;
        }
        .qty-container .qty-btn-minus,
        .qty-container .qty-btn-plus{
            font-size: 20px;
            font-weight: 700;
            height: 40px;
            width: 40px;
            transition: 0.3s;
        }
        button:focus {
            box-shadow: none;
        }
        button:focus-visible {
            outline: none;
        }

    }

    /*star_rating*/
    #half-stars-example {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 16px;

        /* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
        .rating-group {
            display: inline-flex;
        }

        /* make hover effect work properly in IE */
        .rating__icon {
            pointer-events: none;
        }

        /* hide radio inputs */
        .rating__input {
            position: absolute !important;
            left: -9999px !important;
        }

        /* set icon padding and size */
        .rating__label {
            cursor: pointer;
            /* if you change the left/right padding, update the margin-right property of .rating__label--half as well. */
            padding: 0 0.1em;
            font-size: 30px;
        }

        /* add padding and positioning to half star labels */
        .rating__label--half {
            padding-right: 0;
            margin-right: -0.6em;
            z-index: 2;
        }

        /* set default star color */
        .rating__icon--star {
            color: #FFC147;
        }

        /* set color of none icon when unchecked */
        .rating__icon--none {
            color: #eee;
        }

        /* if none icon is checked, make it red */
        .rating__input--none:checked + .rating__label .rating__icon--none {
            color: red;
        }

        /* if any input is checked, make its following siblings grey */
        .rating__input:checked ~ .rating__label .rating__icon--star {
            color: #ddd;
        }

        /* make all stars orange on rating group hover */
        .rating-group:hover .rating__label .rating__icon--star,
        .rating-group:hover .rating__label--half .rating__icon--star {
            color: #FFC147;
        }

        /* make hovered input's following siblings grey on hover */
        .rating__input:hover ~ .rating__label .rating__icon--star,
        .rating__input:hover ~ .rating__label--half .rating__icon--star {
            color: #ddd;
        }

        /* make none icon grey on rating group hover */
        .rating-group:hover .rating__input--none:not(:hover) + .rating__label .rating__icon--none {
            color: #eee;
        }

        /* make none icon red on hover */
        .rating__input--none:hover + .rating__label .rating__icon--none {
            color: red;
        }
    }


    /*privacy*/
    .agree_section {
        margin-top: 16px;
        label {
            font-size: 10px;
            color: #0A1F3F;
            font-weight: 400;
        }
        .search_btn_popup {
            width: 100%;
            .btn_search {
                width: 100% !important;
                border-radius: 8px;
                height: 48px;
            }
            .btn-disabled {
                background: #cccccc !important;
                color: #666666 !important;
                cursor: not-allowed !important;
            }
            .btn-disabled:hover {
                span {
                    transform: none;
                }
                svg {
                    display: none;
                }
            }
        }
    }

    /*footer*/
    .footer_info {
        margin-top: 16px;
        h1 {
            font-size: 11px;
            font-weight: 510;
            color: #0A1F3F;
            margin-top: 10px;
        }
        p {
            font-size: 10px;
            color: #B9B9B9;
        }
    }

}

#popup2 {
    align-items: center;
    .popup {
        height: 450px;
        width: 400px;
        .content {
            height: 100%;
            padding: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-evenly;
            img {
                width: 185px;
            }

            h1 {
                font-size: 24px;
            }

            .search_btn_popup {
                width: 100%;
                .btn_search {
                    width: 100%;
                    border-radius: 8px;
                    height: 48px;
                }
                .btn-disabled {
                    background: #cccccc;
                    color: #666666;
                    cursor: not-allowed;
                }
                .btn-disabled:hover {
                    span {
                        transform: none;
                    }
                    svg {
                        display: none;
                    }
                }
            }

        }
        .close {
            color: #311D3F;
        }
    }
}

#popup3 {
    align-items: center;
    z-index: 999;
    .popup {
        height: 650px;
        width: 550px;
        overflow: hidden;
        h2 {
            margin: 0;
        }
        .content {
            height: 100%;
            padding: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: scroll;
            scrollbar-width: none;
            p {
                font-size: 12px;
                text-align: center;
            }
            img {
                width: 185px;
            }

            h1 {
                font-size: 24px;
            }

            .search_btn_popup {
                width: 100%;
                .btn_search {
                    width: 100%;
                    border-radius: 8px;
                    height: 48px;
    		    margin-bottom: 30px;
                }

            }
        }
        .close {
            color: white;
        }

        .form-group {
            input {
                border: none;
                height: 40px;
                background: #F7F7F7;
                border-radius: 4px;
                padding: 0 10px;
            }
            textarea {
                border: none;
                height: 150px;
                background: #F7F7F7;
                border-radius: 4px;
                padding: 10px 10px;
                resize: none;
            }
            input::placeholder {
                font-size: 12px;
                color: #B9B9B9;
            }
        }
    }
}


@media screen and (max-width: 700px){
    .box{
        width: auto;
    }
    .popup{
        width: 95%;
    }
}


/* ***********************************HOME PAGE*/
#home_page {
    :root {
        --home-bg-color: #f2f3ee;
        --menu-bg-color: #cbcbc2;
        --silde-btn-border: #808080;
        --slide-btn-bg: #ddf2db;
        --slide-btn-hoverbg: #f1fff1;
        --alpha-green: rgba(33, 96, 47, 0.51);
        --icon-hover-color: #344a39;
        --icon-hover-bg: #709680;
        --text-color: #616161;
        --border-color: #709680;
        --heading-color: #344a39;
        --box-shadow-color: #b5b5ac;
        --lightest-green: #86a58d;
        --light-green: #9ab09a;
        --dark-green: rgba(52, 74, 57, 0.86);
        --box-shadow: 0px 0px 3px 5px var(--box-shadow-color);
        --border-radius: 60px 5px;
        --fade-green: rgba(57, 87, 64, 0.55);
    }

    /* Swiper styles */
    .swiper {
        position: relative;
        width: 100%;
        height: 95%;
        border: 1px black;
        box-shadow: 0 2px 100px 0 rgba(0, 0, 0, 0.05);
        overflow-y: visible;
        overflow-x: clip;
    }

    .swiper-slide {
        object-fit: contain;
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-button-prev {
        left: 40%;
        top: 90%;
    }

    .swiper-button-next {
        right: 40%;
        top: 90%;
    }

    .swiper > img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        position: relative;
        display: block;
    }

    .swiper-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: white;
        font-size: 10px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: linear-gradient(109.6deg, #E23E57 30%, #88304E 100%);
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
    }

    /* Search categories styles */
    .search_categories {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 900;
        height: 175px;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
        border-radius: 8px;
        padding: 32px;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .search_categories .content p {
        font-size: 28px;
        color: white;
    }



    @media (max-width: 1050px) {
        .search_categories {
            .search_item {
                width: 170px;
            }
            .btn_search {
                width: 160px;
            }
            .select-menu .options {
                width: 200px;
            }
        }

    }
    @media (max-width: 768px) {
        .swiper {
            height: 80%;
            .swiper-button-next {
                right: 20%;
                top: 92%;
            }
            .swiper-button-prev {
                left: 20%;
                top: 92%;
            }
        }
        .search_categories {
            width: 100%;
            height: 310px;
            border-radius: 0;
            .select-menu {
                width: 100%;
                height: 40px;
                max-width: 100%;
                .select-btn {
                    border-radius: 0;
                    border: none;
                    height: 40px;
                }
                .search-select {
                    border: none;
                }
                .options {
                    width: 77%;
                }
            }
            .search_item {
                width: 100%;
                height: 40px;
                .btn_search {
                    width: 100%;
                    height: 40px;
                    border-radius: 0;
                }
            }
        }
        .accordion {
            height: 450px!important;
        }

        .btn-arrow-custom {
            span svg {
                opacity: 1!important;
                right: -2rem!important;
            }
            span {
                color: #E23E57!important;
            }
        }

    }


    @media (max-width: 480px) {
        .search_categories {
            .content p {
                font-size: 16px!important;
            }

            .select-menu {
                .select-btn {
                    font-size: 12px;
                }
                .options {
                    z-index: 999;
                    .option {
                        .option-text {
                            font-size: 12px;
                        }
                    }
                }
            }
        }
        .accordion {
            height: 300px!important;
        }
    }




    /*card*/
    .card {
        --blur: 16px;
        --size: clamp(300px, 50vmin, 600px);
        width: 100%;
        height: 280px;
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        color: white;
        z-index: 500;
    }
    .card:hover {
        color: white;
    }

    .card__img {
        width: 100%;
        height: 100%;
    }

    .card:hover .card__img {
        filter: saturate(50%);
        transition: filter 0.2s;
    }

    .card__footer {
        padding: 0 40px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: grid;
        gap: 0.5ch;
        background: linear-gradient(109.6deg, rgba(226, 62, 87, 0.3) 30%, rgba(136, 48, 78, 0.3) 100%);
        height: 60px;
        align-content: center;
    }
    .card__footer p {
        font-size: 19px;
        font-weight: bold;
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card__action {
        position: absolute;
        aspect-ratio: 1;
        width: calc(var(--size) * 0.15);
        bottom: -7px;
        right: 30px;
        opacity: 0;
        display: grid;
        place-items: center;
        border-radius: 0.5rem;
        transition: all 0.2s;
    }

    .card:hover .card__action {
        opacity: 1;
        transform: translate3d(1rem, 0, 0);

    }
    .card:hover .card__footer {
        background: linear-gradient(109.6deg, rgba(226, 62, 87, 0.7) 30%, rgba(136, 48, 78, 0.7) 100%);
    }

    .card__action svg {
        aspect-ratio: 1;
        width: 35%;
    }

    .card:is(:hover, :focus-visible) {
        --hover: 1;
    }
    #tours .all_tours {
        border-bottom: 1px solid ;
        border-image: linear-gradient(109.6deg, #E23E57 30%, #88304E 100%) 1;
    }

    /*journey_begin*/
    #journey_begin h1 {
        font-size: 28px;
    }
    #journey_begin p {
        font-size: 18px;
        text-align: center;
    }


    /*accordion_category*/
    .accordion {
        width: 100%;
        margin: auto;
        padding: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 40px;
    }


    .accordion__item {
        position: relative;
        flex-basis: 115px;
        margin-bottom: 1px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-repeat: no-repeat;
        background-size: cover;
        cursor: pointer;
        transition: all .3s linear
    }
    .accordion__item:hover p {
        text-decoration: underline;
    }
    .accordion__item p {
        font-size: 24px;
        color: white;
        z-index: 5;
        margin: 0;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
    }
    .accordion__item:first-child {
        border-radius: 8px 8px 0 0;
    }
    .accordion__item:last-child {
        border-radius: 0 0 8px 8px;
    }

    .accordion__item:nth-child(1) {
        background-image: url("../images/avatar1.png");
    }
    .accordion__item:nth-child(2) {
        background-image: url("../images/Property2.png");
    }
    .accordion__item:nth-child(3) {
        background-image: url("../images/Property3.png");
    }
    .accordion__item:nth-child(4) {
        background-image: url("../images/Property4.png");
    }

    .accordion__item:hover {
        flex-basis: 160px;
    }

    .accordion__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.2);
        z-index: 2;
        border-radius: 8px;
    }
    .p_header {
        font-size: 18px;
    }


    /*all custom btn*/
    .all_btn {
        display: flex;
        justify-content: flex-end;
    }
    .all_btn .btn_search{
        border-radius: 5px;
        background: transparent;
        color: #D43C55;
    }
    .all_btn .btn_search:hover {
        background: linear-gradient(109.6deg, #E23E57 30%, #88304E 100%);
        color: #fff;
    }


    /*our story*/
    #our_story .col6_underline {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid ;
        border-image: linear-gradient(109.6deg, #E23E57 30%, #88304E 100%) 1;
        gap: 30px;
        padding-bottom: 15px;
    }
    #our_story h1 {
        font-size: 28px;
    }
    #our_story p {
        font-size: 16px;
        text-align: justify;
    }
    #our_story a {
        font-size: 14px;
        color: #311D3F;
    }




    /*swiper2*/
    .swiper2 {
        width: 100%;
        padding-top: 3.125rem;
        position: relative;
    }


    .swiper2 .swiper-slide {
        width: 390px!important;
        height: 240px;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: self-start;
        margin: 20px;
        border-radius: 8px;
    }

    .swiper2 .swiper-slide-active {
        width: 450px!important;
        height: 280px;
    }


    .swiper2 .swiper-slide h2 {
        color: #fff;
        font-size: 18px;
        text-transform: uppercase;
        text-align: left;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .swiper2 .swiper-slide p {
        color: #dadada;
        font-size: 14px;
        text-align: left;
    }

    .swiper2 .swiper-slide a p {
        display: none;
        opacity: 0;
    }

    .swiper2 .swiper-slide-active a p {
        display: block;
        opacity: 1;
        max-height: 60px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .swiper2 .swiper-slide a {
        background: linear-gradient(109.6deg, rgba(226, 62, 87, 0.3) 30%, rgba(136, 48, 78, 0.3) 100%);
        width: 100%;
        padding: 10px 35px;
        max-height: 110px;
        border-radius: 0 0 8px 8px;
        z-index: 500;
    }

    .swiper2 .swiper-slide::before {
        border-radius: 8px;
    }

    .swiper2 .swiper-blog {
        background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), no-repeat 50% 50%/cover;
        z-index: 500;
    }

    .swiper2 .swiper-3d .swiper-slide-shadow-left,
    .swiper2 .swiper-3d .swiper-slide-shadow-right {
        background-image: none;
    }


    .swiper2 .swiper-button-next2,
    .swiper2 .swiper-button-prev2 {
        font-size: 10px;
        background: rgba(87, 87, 87, 0.3);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        position: absolute;
        z-index: 10;
    }

    .swiper2 .swiper-button-next2 img,
    .swiper2 .swiper-button-prev2 img {
        width: 40px;
    }

    .swiper2 .swiper-button-next2:hover,
    .swiper2 .swiper-button-prev2:hover {
        background: linear-gradient(109.6deg, #E23E57 30%, #88304E 100%);
    }

    .swiper2 .swiper-button-next2:after,
    .swiper2 .swiper-button-prev2:after {
        font-size: 20px;
    }
    .swiper-button-prev2 {
        left: 2%;
        top: 50%;
    }

    .swiper-button-next2 {
        right: 2%;
        top: 50%;
    }
    @media (max-width: 480px) {
        .swiper2 .swiper-slide-active {
            width: 110%!important;
        }
    }
}


/*  ******************************************ABOUT US PAGE*/
#about_us_page {
    #about_us {
        /*blog header*/
        .blog_header {
            padding-top: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
            h1 {
                font-size: 28px;
                color: #311D3F;
                text-align: center;
                max-width: 840px;
            }
            p {
                color: #6B6B6B;
                font-size: 16px;
                text-align: center;
            }
        }

        .avatars {
            margin-top: 100px;
            h1 {
                font-size: 28px;
                color: #311D3F;
                text-align: center;
                margin-bottom: 40px;
            }
            .avatar {
                h2 {
                    font-size: 18px;
                    font-weight: 600;
                    margin-top: 30px;
                }
                p {
                    color: #9A9A9A;
                }
            }
        }

        .features {
            margin-top: 100px;
            h1 {
                font-size: 28px;
                color: #311D3F;
                text-align: center;
                margin-bottom: 30px;
            }

            .feature {
                h2 {
                    font-size: 24px;
                    font-weight: bold;
                    margin-bottom: 30px;
                }
                h6 {
                    font-size: 14px;
                    margin-bottom: 30px;
                    font-weight: bold;
                }
                p {
                    color: #6B6B6B;
                }
            }
        }

        .footer_cover {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            height: 320px;
            width: 100%;
            background-repeat: no-repeat;
            background-size: cover;

            h1 {
                font-size: 28px;
                color: white;
                max-width: 1000px;
                margin-bottom: 30px;
            }
            p {
                font-size: 14px;
                color: white;
                max-width: 1000px;
                margin-bottom: 30px;
            }

            .overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.1);
            }


            /*buttonhover*/
            .click-btn {
                display: flex;
                width: 330px;
                height: 45px;
                justify-content: center;
                align-items: center;
                line-height: 35px;
                border: none;
                border-radius: 8px;
                text-align: center;
                font-size: 14px;
                color: white;
                text-decoration: none;
                transition: all 0.35s;
                box-sizing: border-box;
            }

            .buttons-wrapper {
                display: flex;
                flex-wrap: wrap;
                height: 50px;
            }

            .btn-style {
                position: relative;
                background-color: #311D3F;
                color: #fff;
                overflow: hidden;
            }
            .btn-style:hover {
                background-color: #E23E57;
            }
            .btn-style span {
                position: relative;
                left: 0;
                transition: all 0.25s;
            }

        }
    }
    @media (max-width: 768px) {
        #about_us {
            /*blog header*/
            .blog_header {
                h1 {
                    font-size: 16px!important;
                }
                p {
                    font-size: 12px!important;
                }
            }

            .avatars {
                margin-top: 50px!important;
                h1 {
                    font-size: 16px!important;
                    margin-bottom: 20px!important;
                }
                .avatar {
                    h2 {
                        font-size: 12px!important;
                        margin-top: 15px!important;
                    }
                    p {
                        font-size: 12px!important;
                    }
                }
                img {
                    width: 120px!important;
                }
            }

            .features {
                margin-top: 50px!important;
                h1 {
                    font-size: 16px!important;
                    margin-bottom: 20px!important;
                }

                .feature {
                    padding-top: 0!important;
                    h2 {
                        font-size: 14px!important;
                        margin-bottom: 15px!important;
                    }
                    h6 {
                        font-size: 12px!important;
                        margin-bottom: 20px!important;
                    }
                    p {
                        font-size: 12px!important;
                    }
                }
            }

            .footer_cover {
                height: 320px;
                width: 100%;


                h1 {
                    font-size: 16px!important;
                }
                p {
                    font-size: 12px!important;
                }

                .overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(0, 0, 0, 0.1);
                }


                /*buttonhover*/
                .click-btn {
                    display: flex;
                    width: 330px;
                    height: 45px;
                    justify-content: center;
                    align-items: center;
                    line-height: 35px;
                    border: none;
                    border-radius: 8px;
                    text-align: center;
                    font-size: 14px;
                    color: white;
                    text-decoration: none;
                    transition: all 0.35s;
                    box-sizing: border-box;
                }

                .buttons-wrapper {
                    display: flex;
                    flex-wrap: wrap;
                    height: 50px;
                }

                .btn-style {
                    position: relative;
                    background-color: #311D3F;
                    color: #fff;
                    overflow: hidden;
                }
                .btn-style:hover {
                    background-color: #E23E57;
                }
                .btn-style span {
                    position: relative;
                    left: 0;
                    transition: all 0.25s;
                }

            }
        }

    }
}


/* ****************************************ACTIVITY PAGE*/
#activity_page_main {

    #activity_page {
        /* galleryTop */
        .gallery_container {
            margin-top: 190px;
            margin-bottom: 90px!important;
            height: auto;
        }

        .gallery .swiper-slide {
            cursor: pointer;
        }
        .gallery img {
            width: 100%;
            height: auto;
        }


        .slider-one {
            border-radius: 10px;
            height: 600px;
            margin-bottom: 30px;
        }
        .swiper-zoom-container>canvas, .swiper-zoom-container>img, .swiper-zoom-container>svg {
            object-fit: fill;
        }

        /* thumbs */
        .gallery-thumbs .swiper-slide {
            width: auto;
            height: 90px;
            border-radius: 10px;
            opacity: 0.8;
            -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
            filter: grayscale(100%);
        }
        .gallery-thumbs .swiper-slide-active {
            opacity: 1;
            -webkit-filter: initial; /* Safari 6.0 - 9.0 */
            filter: initial;
            font-weight: bold;
            color: #231b93;
        }

        .gallery-thumbs img {
            cursor: pointer;
            width: auto;
            height: 90px;
            border-radius: 10px;
            object-fit: contain;
        }

        /* buttons */
        .swiper-button-prev-gallery:after{
            display: none;
        }
        .swiper-button-next-gallery:after{
            display: none;
        }
        .swiper-button-next-gallery {
            height: 35px;
            top: -70px;
            right: 20px;
            opacity: 0.2;
            -webkit-transition: opacity 0.6s; /* For Safari 3.1 to 6.0 */
            transition: opacity 0.6s;
            z-index: 100;
        }

        .swiper-button-prev-gallery {
            height: 35px;
            top: -70px;
            left: 20px;
            opacity: 0.2;
            -webkit-transition: opacity 0.6s; /* For Safari 3.1 to 6.0 */
            transition: opacity 0.6s;
            z-index: 100;
        }

        .swiper-button-prev-gallery:hover, .swiper-button-next-gallery:hover{
            opacity: 1;
        }

        .swiper-button-next-gallery:after, .swiper-container-rtl .swiper-button-next-gallery:after{
            margin-left: auto;
        }

        .swiper-button-prev-gallery:after, .swiper-container-rtl .swiper-button-next-gallery:after{
            margin-right: auto;
        }

        /*blogs_content*/
        .blogs_content {
            margin-bottom: 100px;
            h1 {
                color: #E23E57;
                font-size: 28px;
                margin-bottom: 30px;
            }
            p {
                color: #0A1F3F;
                font-size: 15px;
                line-height: 3;
            }

            h2 {
                color: #0A1F3F;
                font-size: 16px;
                font-weight: bold;
                margin-bottom: 30px;
            }
            .information {
                font-size: 15px;

                div {
                    margin-bottom: 30px;
                }
                img {
                    margin-right: 30px;
                }
            }
        }
        .blogs_content p:first-child::first-letter {
            font-size: 24px;
            font-weight: bold;
        }
    }
    @media (max-width: 992px) {
        #activity_page {
            .swiper-button-next-gallery {
                top: -40px;
                right: 0!important;
            }

            .swiper-button-prev-gallery {
                top: -40px;
                left: 0!important;
            }
        }
    }
    @media (max-width: 768px) {
        #activity_page {
            /* galleryTop */
            .gallery_container {
                margin-top: 80px!important;
                height: auto!important;
            }

            .slider-one {
                border-radius: 0;
                height: 300px!important;
            }

            /* thumbs */
            .gallery-thumbs .swiper-slide {
                display: none;
            }

            .swiper-button-next-gallery {
                top: 100%!important;
                right: 20px!important;
            }

            .swiper-button-prev-gallery {
                top: 100%!important;
                left: 20px!important;
            }
            .swiper-zoom-container {
                align-items: unset !important;
            }




            /*blogs_content*/
            .blogs_content {
                margin-bottom: 100px;
                h1 {
                    font-size: 16px!important;
                }
                p {
                    font-size: 12px!important;
                }
                p::first-letter {
                    font-size: 24px;
                    font-weight: bold;
                }

                h2 {
                    font-size: 14px!important;
                }
                .information {
                    font-size: 12px!important;

                    div {
                        margin-bottom: 30px;
                    }
                    img {
                        margin-right: 30px;
                    }
                }
            }
        }
    }
    @media (max-width: 480px) {
        #activity_page {
            /* galleryTop */

            .gallery_container {
                margin-top: 70px!important;
            }
        }
    }
}


/* *****************************BLOGS*/
#blogs_page {

    #blogs {
        /*tabs*/

        div.tab-frame input {
            display: none;
        }

        div.tab-frame label {
            display: block;
            float: left;
            padding: 10px 30px;
            border-radius: 8px;
            cursor: pointer;
            box-shadow: 0 4px 40px rgba(132, 132, 132, 0.15);
            background: white;
            color: #311D3F;
            margin-right: 30px;
            margin-bottom: 30px;
        }

        div.tab-frame input:checked + label {
            background: #E23E57;
            color: white;
            cursor: default
        }

        div.tab-frame div.tab {
            display: none;
            clear: left;
            margin-bottom: 30px;
        }


        input#tab1:checked ~ #content1,
        input#tab2:checked ~ #content2,
        input#tab3:checked ~ #content3 {
            display: block;
        }

        .tab {
            .blog_item {
                padding: 20px 30px;
                box-shadow: 0 4px 40px rgba(132, 132, 132, 0.15);
                border-radius: 8px;
                margin-bottom: 30px;

                .blog_item_row {
                    align-items: center;
                    justify-content: space-between;

                    .image {
                        overflow: hidden;
                        position: relative;
                        padding: 0;
                        border-radius: 8px;

                        img {
                            object-fit: cover;
                            width: 100%;
                            transition: .5s ease all;
                            height: 250px;
                        }
                    }

                    .image:hover {
                        img {
                            transform: scale(1.1);
                        }
                    }

                    .info {
                        padding-left: 32px;

                        .card_header {
                            color: #311D3F;
                            margin-bottom: 20px;
                            font-size: 16px;
                            font-weight: 600;
                        }

                        .card_p {
                            color: #6B6B6B;
                            font-size: 14px;
                            display: -webkit-box;
                            -webkit-line-clamp: 5;
                            -webkit-box-orient: vertical;
                            text-overflow: ellipsis;
                            overflow: hidden;
                        }
                    }


                    .button {
                        /*buttonhover*/

                        .click-btn {
                            display: flex;
                            width: 100%;
                            height: 45px;
                            justify-content: center;
                            align-items: center;
                            margin: 0.5rem;
                            line-height: 35px;
                            border: 1px solid;
                            border-radius: 8px;
                            text-align: center;
                            font-size: 14px;
                            color: white;
                            text-decoration: none;
                            transition: all 0.35s;
                            box-sizing: border-box;
                        }

                        .buttons-wrapper {
                            display: flex;
                            flex-wrap: wrap;
                            height: 50px;
                        }

                        .btn-style {
                            position: relative;
                            background-color: #311D3F;
                            color: #fff;
                            overflow: hidden;
                        }

                        .btn-style:hover {
                            background-color: #E23E57;
                        }

                        .btn-style span {
                            position: relative;
                            left: 0;
                            transition: all 0.25s;
                        }
                    }
                }
            }
        }


        /*blog header*/

        .blog_header {
            padding-top: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;

            h1 {
                font-size: 28px;
                color: #311D3F;
                text-align: center;
                max-width: 840px;
            }

            p {
                color: #6B6B6B;
                font-size: 16px;
                text-align: center;
                max-width: 840px;
            }
        }
    }
    @media (max-width: 1200px) {
        .tab {
            .blog_item {
                padding: 0 11px 10px 11px !important;

                .blog_item_row {
                    align-items: center;
                    justify-content: space-between;

                    .image {
                        border-radius: 8px 8px 0 0 !important;

                    }


                    .info {
                        padding: 12px 8px !important;

                        .card_header {
                            margin-bottom: 12px !important;
                            font-size: 12px !important;
                        }

                        .card_p {
                            font-size: 12px !important;
                            margin-bottom: 0 !important;
                        }
                    }


                    .button {
                        padding: 0 8px 5px 8px !important;
                        /*buttonhover*/

                        .click-btn {
                            font-size: 12px !important;
                        }

                        .buttons-wrapper {
                            height: 40px !important;
                        }

                        .btn-style {
                            margin: 0 !important;
                        }


                    }
                }
            }
        }
    }
    @media (max-width: 768px) {
        div.tab-frame label {
            padding: 5px 15px!important;
            font-size: 12px!important;
            margin-right: 10px!important;
            margin-bottom: 20px!important;
        }
    }
    @media (max-width: 480px) {
        .tab {
            .blog_item {

                .blog_item_row {


                    .info {
                        .card_p {
                            -webkit-line-clamp: 3!important;
                        }
                    }

                }
            }
        }


        .blog_header {

            h1 {
                font-size: 16px!important;
            }

            p {
                font-size: 14px!important;
            }
        }
    }
}


/* **********************CONTACT US PAGE*/
#contact_us_page {

    #contact_us {
        /*blog header*/

        .blog_header {
            padding-top: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;

            h1 {
                font-size: 28px;
                color: #311D3F;
                text-align: center;
                max-width: 840px;
            }

            p {
                color: #6B6B6B;
                font-size: 16px;
                text-align: center;
            }
        }


        .footer_cover {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            height: 270px;
            width: 100%;
            background-repeat: no-repeat;
            background-size: cover;

            .overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.3);
            }

            .contact_info {
                z-index: 10;

                .info {
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    li {
                        margin-bottom: 20px;
                    }

                    li:nth-last-child(1) {
                        margin-bottom: 0;
                    }

                    a {
                        color: white;
                    }

                    img {
                        padding: 7px;
                        border: 1px solid #B9B9B9;
                        border-radius: 4px;
                        margin-bottom: 30px;
                    }
                }
            }
        }

        .contact_form {
            margin-top: 30px;
            margin-bottom: 100px;

            .hide {
                display: none;
            }

            .error {
                color: red;
            }

            .valid {
                color: green;
            }

            .left {
                .form-group {
                    margin-bottom: 30px;

                    label {
                        color: #311D3F;
                        font-size: 14px;
                        margin-bottom: 4px;
                    }

                    input {
                        border: 1px solid rgba(154, 154, 154, 0.5);
                        border-radius: 4px;
                        padding: 20px 30px;
                        box-shadow: none;
                        height: 40px;
                    }

                    input::placeholder {
                        color: #D5D5D5;
                    }

                    input:focus-visible {
                        outline: none;
                    }
                }
            }

            .right {
                .form-group {
                    label {
                        color: #311D3F;
                        font-size: 14px;
                        margin-bottom: 4px;
                    }

                    textarea {
                        resize: none;
                        border: 1px solid rgba(154, 154, 154, 0.5);
                        border-radius: 4px;
                        padding: 20px 30px;
                        height: 100px;
                    }
                }


                /*buttonhover*/

                .click-btn {
                    display: flex;
                    width: 100%;
                    height: 45px;
                    margin-top: 30px;
                    justify-content: center;
                    align-items: center;
                    line-height: 35px;
                    border: none;
                    border-radius: 8px;
                    text-align: center;
                    font-size: 14px;
                    color: white;
                    text-decoration: none;
                    transition: all 0.35s;
                    box-sizing: border-box;
                }

                .buttons-wrapper {
                    display: flex;
                    flex-wrap: wrap;
                    height: 50px;
                }

                .btn-style {
                    position: relative;
                    background-color: #E23E57;
                    color: #fff;
                    overflow: hidden;
                }

                .btn-style:hover {
                    background-color: #311D3F;
                }

                .btn-style span {
                    position: relative;
                    left: 0;
                    transition: all 0.25s;
                }
            }
        }

    }

    @media (max-width: 992px) {
        #contact_us {
            /*blog header*/

            .blog_header {


                h1 {
                    font-size: 16px !important;
                }

                p {
                    font-size: 12px !important;
                }
            }


            .contact_form {
                .left {
                    .form-group {
                        label {
                            font-size: 12px !important;
                        }
                    }
                }

                .right {
                    .form-group {
                        label {
                            font-size: 12px !important;
                        }

                    }
                }
            }

            .footer_cover {
                .contact_info {
                    .info {
                        a {
                            font-size: 12px !important;
                        }
                    }
                }
            }


        }
    }
}


/* ***********************TOURS PAGE*/
#tours_page {
    .header_cover {
        height: 275px;
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;

        .search_item {
            width: 280px;
        }

        .select-btn {
            border-radius: 4px;
            border: none;
        }

        .btn_search {
            border-radius: 4px;
            width: 280px;
        }
    }

    /* Search categories styles */

    .search_categories {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 900;
        height: 75px;
        width: 930px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .sticky-search {
        position: fixed;
        top: 80px;
        width: 100%;
        z-index: 98;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: top 0.3s ease-in-out;
        border-radius: 0;
    }

    .original-search {
        top: 0;
        position: relative;
        width: 930px;
        transition: top 0.3s ease-in-out;
    }

    .search_categories .content p {
        font-size: 28px;
        color: white;
    }


    .search_item_container {
        gap: 25px
    }


    /*cards*/

    .product-card {
        height: 412px;
        position: relative;
        background: #fafafa;
        padding: 0;
        border: 1px solid rgba(185, 185, 185, 0.5);
        border-radius: 8px;
        box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
    }

    .badge {
        position: absolute;
        right: 20px;
        top: -10px;
        font-size: 13px;
        background: #008069;
        color: #fff;
        padding: 5px 10px;
    }

    .product-tumb {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 240px;
        background: #f0f0f0;
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
    }

    .product-tumb img {
        max-width: 100%;
        max-height: 100%;
    }

    .product-details {
        padding: 20px 40px;
        height: 170px;
        background: white;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }


    .product-details h4 {
        font-weight: bold;
        font-size: 18px;
        display: block;
        color: #311D3F;
        transition: 0.3s;
        height: 41px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-details h4 a:hover {
        color: #fbb72c;
    }

    .product-details p {
        font-size: 14px;
        color: #B9B9B9;
    }

    .product-bottom-details {

    }

    .product-bottom-details div {
        float: left;
    }

    .product-bottom-details div:first-child {
        width: 55%;
    }

    .product-price {
        font-size: 20px;
        color: #311D3F;
        font-weight: bold;

        .old-price {
            text-decoration: line-through;
            color: unset;
        }
    }

    .product-price span {
        font-size: 14px;
        color: #B9B9B9;
        font-weight: 400;
    }


    /*buttonhover*/

    .click-btn {
        display: flex;
        width: 145px;
        height: 40px;
        justify-content: center;
        align-items: center;
        margin: 0.5rem;
        line-height: 35px;
        border: 1px solid;
        border-radius: 8px;
        text-align: center;
        font-size: 14px;
        color: white;
        text-decoration: none;
        transition: all 0.35s;
        box-sizing: border-box;
    }

    .buttons-wrapper {
        display: flex;
        flex-wrap: wrap;
        height: 50px;
    }

    .updating {
        margin: 3em;
        text-align: center;
    }

    .btn-style904 {
        position: relative;
        background-color: #E23E57;
        color: #fff;
        overflow: hidden;
    }

    .btn-style904 span {
        position: relative;
        left: 0;
        transition: all 0.25s;
    }

    .btn-style904::before, .btn-style904::after {
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        background-color: #E23E57;
        transition: all 0.25s;
        color: #fff;
    }

    .btn-style904::before {
        width: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 10px;
        font-weight: bold;
        text-indent: 5px;
        border-radius: 50% 0 0 50%;
        z-index: 1;
    }

    .btn-style904::after {
        width: 100%;
        transform: translate(100%, 0) rotate(180deg);
        content: '';
        background-image: url('../icons/left.svg');
        background-repeat: no-repeat;
        background-position: center;
        text-align: left;
        text-indent: 8px;
    }

    .btn-style904:hover {
        border-color: #E23E57;
        color: white;
    }

    .btn-style904:hover span {
        left: -100%;
    }

    .btn-style904:hover::before {
        right: 70%;
    }

    .btn-style904:hover::after {
        right: 100%;
    }

    /*iconhover*/

    .icons {
        position: absolute;
        right: 20px;
        top: 90px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .btn {
        position: relative;
        height: 40px;
        font-size: 1.1em;
        background-color: white;
        color: black;
        border-radius: 20px;
        /*margin: 5px auto;*/
        margin-left: auto;
        margin-bottom: 5px;
    }

    .btn span {
        color: black;
        font-size: 0;
        line-height: 2.2;
        transition: all 0.3s ease;
    }

    .btn:hover {
        /*padding:20px 50px 20px 10px;*/

    }

    .btn:hover span {
        font-size: 13px;
        padding-right: 30px;
    }

    .btn:hover .ico {
        /*margin-left: 0;*/
    }

    .btn:hover .span {
        visibility: visible;
    }

    .ico {
        transition: all 0.5s ease;
        background-color: white;
        color: black;
        width: 40px;
        height: 40px;
        padding: 2px;
        border-radius: 50%;
        position: absolute;
        margin-left: -20px;
        margin-top: -6px;
        font-size: 1.5em;
    }

    .ico::before {
        transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn:hover .ico::before {
        transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);

    }

    @media (max-width: 1000px) {
        .header_cover {
            .search_item {
                width: 220px;
            }

            .btn_search {
                width: 220px;
            }
        }
    }

    @media (max-width: 992px) {
        /*cards*/
        .product-card {
            min-width: 175px;
            height: 290px;
        }

        .product-bottom-details div:first-child {
            width: 100%;
        }

        .badge {
            right: 10px;
            top: -10px;
            font-size: 10px;
            padding: 5px 10px;
        }

        .product-tumb {
            height: 135px;
        }

        .product-tumb img {
            max-width: 100%;
            max-height: 100%;
        }

        .product-details {
            padding: 8px;
            height: 125px;

            img {
                width: 8px;
            }
        }


        .product-details h4 {
            font-size: 12px;
        }

        .product-details p {
            font-size: 10px;
        }


        .product-bottom-details {
            display: flex;
            flex-direction: column;
        }

        .product-bottom-details div {
            width: 100%;
        }

        .product-price {
            font-size: 12px;

            .old-price {
                text-decoration: line-through;
                color: unset;
            }
        }

        .product-price span {
            font-size: 12px;
        }


        /*buttonhover*/
        .click-btn {
            margin: 5px 0 0 0;
            width: 100%;
        }

        /*iconhover*/
        .icons {
            right: 5px;
            top: 40px;
        }

        .btn {
            height: 24px;
            font-size: 1.1em;
            border-radius: 20px;
            margin-left: auto;
            margin-bottom: 5px;
        }

        .btn span {
            font-size: 0;
            line-height: 2.2;
        }

        .btn:hover span {
            font-size: 10px;
            padding-right: 30px;
            position: relative;
            top: -7px;
        }

        .ico {
            width: 24px;
            height: 24px;
            padding: 2px;
            border-radius: 50%;
            margin-left: -12px;
            margin-top: -6px;
            font-size: 1.5em;

            img {
                position: absolute;
                right: 4px;
                top: 5px;
                width: 15px;
            }
        }
    }

    @media (max-width: 768px) {
        .header_cover {
            height: 300px;
        }

        .search_categories {
            height: 190px;
            border-radius: 0;
            z-index: 400;

            .search_item_container {
                gap: 15px;
                width: 100%;

                .select-btn {
                    height: 40px;
                    font-size: 12px;
                }

                .search_item {
                    width: 100%;
                    max-width: 100%;
                    height: 40px;
                }

                .btn_search {
                    width: 100%;
                    height: 40px;
                    font-size: 12px;
                }
            }
        }

        .sticky-search {
            position: relative;
            top: 0;
        }


    }
}


/*Rent page*/
#rent_page {
    .search_categories .search_item {
        width: 100%;
    }
    .btn_search {
        border-radius: 4px;
        height: 50px!important;
        width: 100%!important;
    }

    /*header cover*/

    .header_cover {
        height: 550px;
        width: 100%;
        padding-top: 150px;
        background-repeat: no-repeat;
        background-size: cover;
        overflow: visible;

        h1 {
            color: white;
            font-size: 28px;
        }

        .rent_form {

            input {
                height: 50px;
                padding: 10px;
                border-radius: 4px;
                background: white;
                border: none;
            }

            input::placeholder {
                color: #6B6B6B;
            }
        }

        .header_card {
            height: 300px;
            padding: 0 32px 32px 32px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 4px 45px 0 rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(10px);
            margin-top: 50px;

            h3 {
                font-size: 18px;
                font-weight: bold;
                color: #311D3F;
            }

            p {
                color: #6B6B6B;
            }
        }

        .header_card:hover {
            background: white;
            box-shadow: 0 4px 45px 0 rgba(0, 0, 0, 0.5);
        }

    }

    /*cards*/

    #cards {
        margin-top: 110px;

        .product-card {
            height: 415px;
            position: relative;
            background: #fafafa;
            padding: 0;
            border-radius: 8px;
            box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.02);
        }

        .badge {
            position: absolute;
            right: 20px;
            top: -10px;
            font-size: 13px;
            background: #008069;
            color: #fff;
            padding: 5px 10px;
        }

        .product-tumb {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 202px;
            border: 1px solid #e5e5e5 !important;
            border-top-right-radius: 8px;
            border-top-left-radius: 8px;
            background: white !important;
            border-bottom: 0 !important;
        }

        .product-tumb img {
            height: 101%;
            width: 100%;
            border-top-right-radius: 8px;
            border-top-left-radius: 8px;
    	    object-fit: contain;
        }

        .product-details {
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            padding: 16px 32px;
            height: 208px;
            background: white;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
            border: 1px solid rgba(185, 185, 185, 0.5);
            border-width: 0 1px 1px 1px;
        }


        .product-details h4 {
            font-weight: bold;
            font-size: 12px;
            display: block;
            color: #311D3F;
            transition: 0.3s;
            height: 30px;
        }

        .product-details h4 a:hover {
            color: #fbb72c;
        }

        .product-details p {
            font-size: 12px;
            color: #311D3F;
        }

        .product-bottom-details {

        }

        .product-bottom-details div {
            float: left;
            width: 50%;
        }

        .product-price {
            font-size: 12px;
            color: #311D3F;
            font-weight: bold;
        }

        .product-price span {
            font-size: 12px;
            color: #B9B9B9;
            font-weight: 400;
        }

        /*buttonhover*/

        .click-btn {
            display: flex;
            width: 100%;
            height: 40px;
            justify-content: center;
            align-items: center;
            margin-top: 16px;
            line-height: 35px;
            border: 1px solid;
            border-radius: 8px;
            text-align: center;
            font-size: 14px;
            color: white;
            text-decoration: none;
            transition: all 0.35s;
            box-sizing: border-box;
        }

        .buttons-wrapper {
            display: flex;
            flex-wrap: wrap;
            height: 50px;
        }

        .updating {
            margin: 3em;
            text-align: center;
        }

        .btn-style904 {
            position: relative;
            background-color: #E23E57;
            color: #fff;
            overflow: hidden;
        }

        .btn-style904 span {
            position: relative;
            left: 0;
            transition: all 0.25s;
        }

        .btn-style904::before, .btn-style904::after {
            height: 100%;
            position: absolute;
            right: 0;
            top: 0;
            background-color: #E23E57;
            transition: all 0.25s;
            color: #fff;
        }

        .btn-style904::before {
            width: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 10px;
            font-weight: bold;
            text-indent: 5px;
            border-radius: 50% 0 0 50%;
            z-index: 1;
        }

        .btn-style904::after {
            width: 100%;
            transform: translate(100%, 0) rotate(180deg);
            content: '';
            background-image: url('../icons/left.svg');
            background-repeat: no-repeat;
            background-position: center;
            text-align: left;
            text-indent: 8px;
        }

        .btn-style904:hover {
            border-color: #E23E57;
            color: white;
        }

        .btn-style904:hover span {
            left: -100%;
        }

        .btn-style904:hover::before {
            right: 70%;
        }

        .btn-style904:hover::after {
            right: 100%;
        }
    }


    @media (max-width: 1400px) {
        /*header cover*/
        .header_cover {
            height: 850px;
            width: 100%;
            background-image: url('../images/rent_bg_mobil.png');

            .header_card {
                z-index: 100!important;
                height: 270px!important;

            }
        }

        /*cards*/
        #cards {
            margin-top: 100px!important;
        }
    }
    @media (max-width: 992px) {
        .header_cover {
            width: 100%;
            height: 700px;

            h1 {
                font-size: 20px;
            }

            .rent_form {

                input {
                    height: 40px;
                }
                .btn_search {
                    height: 40px!important;
                }
            }

            .header_card {
                z-index: 100!important;
                height: 170px!important;
                margin-top: 16px!important;
            }

        }

        /*cards*/

        #cards {
            margin-top: 150px!important;
        }

    }
    @media (max-width: 480px) {
        .header_cover {

            h1 {
                color: white;
                font-size: 16px;
            }


            .header_card {
                height: 155px!important;

                h3 {
                    font-size: 16px!important;
                }
                img {
                    width: 80px!important;
                }
            }

        }
    }


    }


/*transportation page*/
#transportation_page {
    .btn_search {
        width: 300px;
        height: 50px;
        background: linear-gradient(109.6deg, #E23E57 30%, #88304E 100%);
        border: none;
        border-radius: 4px;
        color: white;
        transition: color 0.1s cubic-bezier(0.16, 0.08, 0.355, 1), background 0.1s cubic-bezier(0.16, 0.08, 0.355, 1);
        display: inline-block;
        cursor: pointer;
        outline: none;
        vertical-align: middle;
        text-align: center;
        position: relative;
        overflow: hidden;
    }


    /*header cover*/

    .header_cover {
        height: 100vh;
        width: 100%;
        padding-top: 150px;
        background-image: url('../images/transportation_bg.png');
        background-repeat: no-repeat;
        background-size: cover;
        overflow: visible;

        h1 {
            color: white;
            font-size: 28px;
        }

        .rent_form {
            gap: 30px;

            input {
                width: 300px !important;
                height: 50px;
                padding: 10px;
                border-radius: 4px;
                background: white;
                border: none;
            }

            input::placeholder {
                color: #6B6B6B;
            }
        }

    }


    /*cards*/

    #cards {
        margin-top: 110px;

        .product-card {
            width: 300px;
            height: 415px;
            position: relative;
            background: #fafafa;
            padding: 0;
            border-radius: 8px;
            box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.02);
        }

        .badge {
            position: absolute;
            right: 20px;
            top: -10px;
            font-size: 13px;
            background: #008069;
            color: #fff;
            padding: 5px 10px;
        }

        .product-tumb {
   	    display: flex;
            align-items: center;
            justify-content: center;
            height: 202px;
            border: 1px solid #e5e5e5 !important;
            border-top-right-radius: 8px;
            border-top-left-radius: 8px;
            background: white !important;
            border-bottom: 0 !important;
        }

        .product-tumb img {
            height: 101%;
            width: 100%;
            border-top-right-radius: 8px;
            border-top-left-radius: 8px;
	    object-fit: contain !important;
        }

        .product-details {
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            padding: 16px 32px;
            height: 208px;
            background: white;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
            border: 1px solid rgba(185, 185, 185, 0.5);
            border-width: 0 1px 1px 1px;
        }


        .product-details h4 {
            font-weight: bold;
            font-size: 12px;
            display: block;
            color: #311D3F;
            transition: 0.3s;
        }

        .product-details h4 a:hover {
            color: #fbb72c;
        }

        .product-details p {
            font-size: 12px;
            color: #311D3F;
        }

        .product-bottom-details {

        }

        .product-bottom-details div {
            float: left;
            width: 50%;
        }

        .product-price {
            font-size: 12px;
            color: #311D3F;
            font-weight: bold;
        }

        .product-price span {
            font-size: 12px;
            color: #B9B9B9;
            font-weight: 400;
        }

        /*buttonhover*/

        .click-btn {
            display: flex;
            width: 100%;
            height: 40px;
            justify-content: center;
            align-items: center;
            margin-top: 16px;
            line-height: 35px;
            border: 1px solid;
            border-radius: 8px;
            text-align: center;
            font-size: 14px;
            color: white;
            text-decoration: none;
            transition: all 0.35s;
            box-sizing: border-box;
        }

        .buttons-wrapper {
            display: flex;
            flex-wrap: wrap;
            height: 50px;
        }

        .updating {
            margin: 3em;
            text-align: center;
        }

        .btn-style904 {
            position: relative;
            background-color: #E23E57;
            color: #fff;
            overflow: hidden;
        }

        .btn-style904 span {
            position: relative;
            left: 0;
            transition: all 0.25s;
        }

        .btn-style904::before, .btn-style904::after {
            height: 100%;
            position: absolute;
            right: 0;
            top: 0;
            background-color: #E23E57;
            transition: all 0.25s;
            color: #fff;
        }

        .btn-style904::before {
            width: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 10px;
            font-weight: bold;
            text-indent: 5px;
            border-radius: 50% 0 0 50%;
            z-index: 1;
        }

        .btn-style904::after {
            width: 100%;
            transform: translate(100%, 0) rotate(180deg);
            content: '';
            background-image: url('../icons/left.svg');
            background-repeat: no-repeat;
            background-position: center;
            text-align: left;
            text-indent: 8px;
        }

        .btn-style904:hover {
            border-color: #E23E57;
            color: white;
        }

        .btn-style904:hover span {
            left: -100%;
        }

        .btn-style904:hover::before {
            right: 70%;
        }

        .btn-style904:hover::after {
            right: 100%;
        }
    }
}

@media (max-width: 576px) {
    .card__action svg {
        width: 50% !important;
    }

    .card__action {
        bottom: 5px !important;
    }
}

.search-select {
    width: 100%;
    display: flex;
    height: 55px;
    background: #fff;
    font-size: 18px;
    font-weight: 400;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    outline: none;
    border: none;
    border-right: 1px solid #311D3F;
    padding-left: 7px;
}

select:disabled:hover {
    cursor: not-allowed;
}

#tour-select {
    border-right: 0;
}

.lang-btn {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 10px;
}

.page-item.active .page-link {
    background-color: #da3d56;
    border-color: #da3d56;
}

.page-link {
    color: black;
}

.page-item:not(:first-child) .page-link {
    outline: none;
    box-shadow: none;
}

.pagination {
    margin-bottom: 15px;
}

.name-formatter {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.button-disabled, .button-disabled:hover {
    background: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
}

@media screen and (max-width: 576px) {
    #popup3 .popup {
        width: 100%;
    }
}

/*transportation page*/
#transportation_page {


    /*header cover*/

    .header_cover {
        width: 100%;
        padding-top: 150px;
        padding-bottom: 50px;
        background-repeat: no-repeat;
        background-size: cover;
        overflow: visible;

        .header_container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            h2 {
                color: white;
                font-size: 28px;
                margin: 0;
                padding: 0;
            }
            p {
                color: white;
                margin: 0;
                padding: 0;
            }

            .btn_container {
                gap: 40px;
                .button {
                    width: 215px;
                    .click-btn {
                        display: flex;
                        width: 100%;
                        height: 100%;
                        justify-content: center;
                        align-items: center;
                        border-radius: 4px;
                        text-align: center;
                        font-size: 14px;
                        color: white;
                        text-decoration: none;
                        transition: all 0.35s;
                    }

                    .buttons-wrapper {
                        display: flex;
                        flex-wrap: wrap;
                        height: 50px;
                    }

                    .red {
                        position: relative;
                        background-color: #E23E57;
                        color: #fff;
                        overflow: hidden;
                    }

                    .white {
                        position: relative;
                        background-color: white;
                        color: #311D3F;
                        overflow: hidden;
                    }

                    .red:hover {
                        background-color: #D43C55;
                    }

                    .btn-style span {
                        position: relative;
                        left: 0;
                        transition: all 0.25s;
                    }


                }
            }
        }


        .header_container_right {
            .content {
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 30px;
                background-color: rgba(255, 255, 255, 0.4);
                box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border-radius: 10px;
                label {
                    font-size: 12px;
                    font-weight: 510;
                    color: #0A1F3F;
                }
                .right_column {
                    padding-top: 3px;
                }
                .error-msg {
                    color: red;
                    font-size: 12px;
                    display: none;
                }
                .form-group {
                    input {
                        border: none;
                        height: 40px;
                        background: #F7F7F7;
                        border-radius: 4px;
                        padding: 0 10px;
                    }
                    input::placeholder {
                        font-size: 12px;
                        color: #B9B9B9;
                    }
                }
                .custom_dropdown {
                    margin-top: 16px;
                    .select-btn {
                        background: #F7F7F7;
                        border-radius: 4px;
                        height: 40px;
                        border: none;
                        padding: 0 0 0 10px;
                        i {
                            font-size: unset;
                        }
                        .sBtn-text {
                            font-size: 12px;
                            span {
                                color: #B9B9B9;
                            }
                        }
                    }
                    .select-custom-btn {
                        background: #008069;
                        padding-right: 10px;
                        border-bottom-left-radius: 0;
                        border-top-left-radius: 0;
                    }

                    .options {
                        width: 100%;
                        .option {
                            height: 35px;
                        }
                        .option .option-text {
                            font-size: 12px;
                        }
                    }
                }

                #datepicker_container1, #datepicker_container3{
                    margin-top: 16px;
                    * {
                        box-sizing: border-box;
                        margin: 0;
                        padding: 0;
                    }


                    .form-container {

                        .datepicker_div {
                            background-color: #fff;
                            position: relative;
                            border-radius: 4px;

                            &.open {
                                .calendar-popup {
                                    opacity: 1;
                                }
                            }


                            input {
                                font-size: 12px;
                                width: 100%;
                                border: none;
                                height: 40px;
                                background: #F7F7F7;
                                border-radius: 4px;
                                padding: 0 10px;
                                cursor: pointer;
                            }
                            input::placeholder {
                                font-size: 12px;
                                color: #B9B9B9;
                            }
                            input:focus-visible {
                                outline: none;
                            }

                            .date_icon {
                                display: flex;
                                cursor: pointer;

                                background: #008069;
                                padding: 10px;
                                border-bottom-right-radius: 4px;
                                border-top-right-radius: 4px;
                                img {
                                    width: 20px;
                                }
                            }
                        }

                        .calendar-popup {
                            z-index: 900;
                            background-color: #F7F7F7;
                            border-radius: 4px;
                            /*opacity: 0;*/
                            padding: 10px;
                            position: absolute;
                            top: calc(100% + 5px);
                            transition: all .1s linear;
                            width: 100%;

                            .month-and-year {
                                align-items: center;
                                display: flex;
                                text-align: center;

                                h4 {
                                    width: 100%;
                                    font-size: 14px;
                                    color: #008069;
                                }
                            }

                            .button {
                                background-color: transparent;
                                border: none;
                                font-weight: bold;
                                outline: none;
                                position: absolute;
                                top: 15px;
                                color: #008069;

                                &:hover {
                                    cursor: pointer;
                                }

                                &.prev {
                                    left: 10px;
                                    top: 7px;
                                }

                                &.next {
                                    right: 10px;
                                    top: 7px;
                                }
                            }

                            table {
                                font-size: 12px;
                                width: 100%;

                                tr {
                                    display: grid;
                                    grid-template-columns: repeat(7, 1fr);
                                    padding: 5px 0;

                                    th,
                                    td {
                                        text-align: center;
                                    }
                                }

                                .day {
                                    &:hover {
                                        cursor: pointer;
                                    }
                                }
                            }
                        }
                    }
                }

                /*increement*/
                .increase {
                    margin-top: 16px;

                    /* Swiper için qty-container */
                    .qty-container-swiper {
                        display: flex;
                        align-items: center;
                    }

                    /* Swiper için input-qty */
                    .qty-container-swiper .swiper-input-qty {
                        text-align: center;
                        width: 40px;
                        height: 40px;
                        max-width: 80px;
                        margin-right: 1px;
                        margin-left: 1px;
                        border-radius: 0;
                    }

                    /* Input focus görünümü */
                    .swiper-input-qty:focus-visible {
                        outline: none;
                    }

                    /* Swiper için qty-btn-minus ve qty-btn-plus */
                    .qty-container-swiper .swiper-qty-btn-minus,
                    .qty-container-swiper .swiper-qty-btn-plus,
                    .qty-container-swiper .swiper-qty-btn-minus-kids,
                    .qty-container-swiper .swiper-qty-btn-plus-kids {
                        font-size: 20px;
                        font-weight: 700;
                        height: 40px;
                        width: 40px;
                        transition: 0.3s;
                    }
                    .swiper-qty-btn-minus, .swiper-qty-btn-minus-kids {
                        border-radius: 4px 0 0 4px;
                    }
                    .swiper-qty-btn-plus, .swiper-qty-btn-plus-kids {
                        border-radius: 0 4px 4px 0;
                    }

                    /* Button focus durumları */
                    button:focus {
                        box-shadow: none;
                    }

                    button:focus-visible {
                        outline: none;
                    }
                }

                /*car name, price*/
                #carName {
                    font-size: 16px;
                    font-weight: bold;
                    color: black;
                }
                #carPrice {
                    font-size: 16px;
                    font-weight: bold;
                    color: #0A1F3F;
                }


                .swiper-button-next, .swiper-button-prev {
                    color: #311D3F;
                }
                .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
                    font-size: 24px;
                    font-weight: bolder;
                }
                .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
                    font-size: 24px;
                    font-weight: bolder;

                }

                /*privacy*/
                .agree_section {
                    margin-top: 16px;
                    label {
                        font-size: 12px;
                        color: #0A1F3F;
                        font-weight: 400;
                    }
                    .search_btn_popup {
                        width: 100%;
                        .btn_search {
                            width: 100%;
                            border-radius: 8px;
                            height: 48px;
                        }
                        .btn-disabled {
                            background: #cccccc;
                            color: #666666;
                            cursor: not-allowed;
                        }
                        .btn-disabled:hover {
                            span {
                                transform: none;
                            }
                            svg {
                                display: none;
                            }
                        }
                    }
                }



                /*swiper*/
                /* Ensure the Swiper container has the correct dimensions */
                .swiper-container {
                    width: 100%;
                    height: auto;
                    padding-top: 20px;
                    padding-bottom: 50px;
                    overflow: hidden;
                    position: relative;
                }

                /* Flexbox setup for the wrapper and slides */
                .swiper-wrapper {
                    display: flex;
                    transition: transform 0.3s ease-in-out;
                }

                .swiper-slide {
                    flex-shrink: 0;
                    width: 100%;
                    height: auto;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                .swiper-slide img {
                    display: block;
                    max-width: 100%;
                    height: auto;
                }

                .select-menu {
                    max-width: 100%;
                    position: relative;
                    .options {
                        position: absolute;
                    }
                }
            }

        }

    }


    /*cards*/

    #cards {
        margin-top: 32px;
        .section_header {
            font-size: 28px;
        }

        .product-card {
            width: 100%;
            height: 415px;
            position: relative;
            background: #fafafa;
            padding: 0;
            border-radius: 8px;
            box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.02);
        }

        .badge {
            position: absolute;
            right: 20px;
            top: -10px;
            font-size: 13px;
            background: #008069;
            color: #fff;
            padding: 5px 10px;
        }

        .product-tumb {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 202px;
            border: none;
            border-top-right-radius: 8px;
            border-top-left-radius: 8px;
        }

        .product-tumb img {
            height: 101%;
            width: 100%;
            border-top-right-radius: 8px;
            border-top-left-radius: 8px;
        }

        .product-details {
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            padding: 16px 32px;
            height: 208px;
            background: white;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
            border: 1px solid rgba(185, 185, 185, 0.5);
            border-width: 0 1px 1px 1px;
        }


        .product-details h4 {
            font-weight: bold;
            font-size: 12px;
            display: block;
            color: #311D3F;
            transition: 0.3s;
        }

        .product-details h4 a:hover {
            color: #fbb72c;
        }

        .product-details p {
            font-size: 12px;
            color: #311D3F;
        }

        .product-bottom-details {

        }

        .product-bottom-details div {
            float: left;
            width: 50%;
        }

        .product-price {
            font-size: 12px;
            color: #311D3F;
            font-weight: bold;
        }

        .product-price span {
            font-size: 12px;
            color: #B9B9B9;
            font-weight: 400;
        }

        /*buttonhover*/

        .click-btn {
            display: flex;
            width: 100%;
            height: 40px;
            justify-content: center;
            align-items: center;
            margin-top: 16px;
            line-height: 35px;
            border: 1px solid;
            border-radius: 8px;
            text-align: center;
            font-size: 14px;
            color: white;
            text-decoration: none;
            transition: all 0.35s;
            box-sizing: border-box;
        }

        .buttons-wrapper {
            display: flex;
            flex-wrap: wrap;
            height: 50px;
        }

        .updating {
            margin: 3em;
            text-align: center;
        }

        .btn-style904 {
            position: relative;
            background-color: #E23E57;
            color: #fff;
            overflow: hidden;
        }

        .btn-style904 span {
            position: relative;
            left: 0;
            transition: all 0.25s;
        }

        .btn-style904::before, .btn-style904::after {
            height: 100%;
            position: absolute;
            right: 0;
            top: 0;
            background-color: #E23E57;
            transition: all 0.25s;
            color: #fff;
        }

        .btn-style904::before {
            width: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 10px;
            font-weight: bold;
            text-indent: 5px;
            border-radius: 50% 0 0 50%;
            z-index: 1;
        }

        .btn-style904::after {
            width: 100%;
            transform: translate(100%, 0) rotate(180deg);
            content: '';
            background-image: url('../icons/left.svg');
            background-repeat: no-repeat;
            background-position: center;
            text-align: left;
            text-indent: 8px;
        }

        .btn-style904:hover {
            border-color: #E23E57;
            color: white;
        }

        .btn-style904:hover span {
            left: -100%;
        }

        .btn-style904:hover::before {
            right: 70%;
        }

        .btn-style904:hover::after {
            right: 100%;
        }
    }


    @media (max-width: 1400px) {
        /*header cover*/
        .header_cover {
            height: 1000px;
            width: 100%;

            .header_card {
                z-index: 100!important;
                height: 270px!important;

            }
        }

        /*cards*/
        #cards {
            margin-top: 100px!important;
            .section_header {
                font-size: 24px;
            }

        }
    }
    @media (max-width: 992px) {
        .header_cover {
            width: 100%;
            height: 1250px;
            padding-top: 120px;

            h1 {
                font-size: 16px;
            }
            h2 {
                font-size: 16px!important;
            }
            p {
                font-size: 12px;
            }

            .rent_form {

                input {
                    height: 40px;
                }
                .btn_search {
                    height: 40px!important;
                }
            }

            .header_card {
                z-index: 100!important;
                height: 170px!important;
                margin-top: 16px!important;
            }

        }

        /*cards*/

        #cards {
            margin-top: 50px!important;
            .section_header {
                font-size: 22px;
            }

        }

    }

    @media (max-width: 768px) {
        .header_cover {
            height: 1500px;
            background-image: url('../images/transportation_bg_mobile.png');
        }
    }
    @media (max-width: 480px) {
        .header_cover {
            h1 {
                color: white;
                font-size: 16px;
            }


            .header_card {
                height: 155px!important;

                h3 {
                    font-size: 16px!important;
                }
                img {
                    width: 80px!important;
                }
            }

        }

        #cards {
            .section_header {
                font-size: 18px;
            }

        }
    }

}

#tours_page .select-menu .options {
    width: 280px;
}

/*into tours page*/
#tour_page {

    #activity_page {
        /* galleryTop */
        .gallery_container {
            margin-top: 190px;
            margin-bottom: 90px!important;
            height: auto;
        }

        .gallery .swiper-slide {
            cursor: pointer;
        }
        .gallery img {
            width: 100%;
            height: auto;
        }


        .slider-one {
            height: 400px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .swiper-zoom-container>canvas, .swiper-zoom-container>img, .swiper-zoom-container>svg {
            object-fit: fill;
        }

        /* thumbs */
        .gallery-thumbs .swiper-slide {
            width: auto;
            height: 90px;
            border-radius: 10px;
            opacity: 0.8;
            -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
            filter: grayscale(100%);
        }
        .gallery-thumbs .swiper-slide-active {
            opacity: 1;
            -webkit-filter: initial; /* Safari 6.0 - 9.0 */
            filter: initial;
            font-weight: bold;
            color: #231b93;
        }

        .gallery-thumbs img {
            cursor: pointer;
            width: auto;
            height: 90px;
            border-radius: 10px;
            object-fit: contain;
        }

        /* buttons */
        .swiper-button-prev-gallery:after{
            display: none;
        }
        .swiper-button-next-gallery:after{
            display: none;
        }
        .swiper-button-next-gallery {
            height: 35px;
            top: -70px;
            right: 20px;
            opacity: 0.2;
            -webkit-transition: opacity 0.6s; /* For Safari 3.1 to 6.0 */
            transition: opacity 0.6s;
            z-index: 100;
        }

        .swiper-button-prev-gallery {
            height: 35px;
            top: -70px;
            left: 20px;
            opacity: 0.2;
            -webkit-transition: opacity 0.6s; /* For Safari 3.1 to 6.0 */
            transition: opacity 0.6s;
            z-index: 100;
        }

        .swiper-button-prev-gallery:hover, .swiper-button-next-gallery:hover{
            opacity: 1;
        }

        .swiper-button-next-gallery:after, .swiper-container-rtl .swiper-button-next-gallery:after{
            margin-left: auto;
        }

        .swiper-button-prev-gallery:after, .swiper-container-rtl .swiper-button-next-gallery:after{
            margin-right: auto;
        }

        /*blogs_content*/
        .blogs_content {
            margin-bottom: 100px;
            h1 {
                color: #E23E57;
                font-size: 28px;
                margin-bottom: 30px;
            }
            p {
                color: #0A1F3F;
                font-size: 15px;
                line-height: 3;
            }

            h2 {
                color: #0A1F3F;
                font-size: 16px;
                font-weight: bold;
                margin-bottom: 30px;
            }
            .information {
                font-size: 15px;

                div {
                    margin-bottom: 30px;
                }
                img {
                    margin-right: 30px;
                }
            }
        }
        .blogs_content p:first-child::first-letter {
            font-size: 24px;
            font-weight: bold;
        }
    }

    /*header cover*/
    .header_cover {
        width: 100%;
        padding-top: 185px;
        padding-bottom: 50px;
        background-repeat: no-repeat;
        background-size: cover;
        overflow: visible;
        .car_info {
            font-size: 10px!important;
        }


        .header_container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            h2 {
                color: white;
                font-size: 28px;
                margin: 0;
                padding: 0;
            }
            p {
                color: white;
                margin: 0;
                padding: 0;
            }

            .btn_container {
                gap: 40px;
                .button {
                    width: 215px;
                    .click-btn {
                        display: flex;
                        width: 100%;
                        height: 100%;
                        justify-content: center;
                        align-items: center;
                        border-radius: 4px;
                        text-align: center;
                        font-size: 14px;
                        color: white;
                        text-decoration: none;
                        transition: all 0.35s;
                    }

                    .buttons-wrapper {
                        display: flex;
                        flex-wrap: wrap;
                        height: 50px;
                    }

                    .red {
                        position: relative;
                        background-color: #E23E57;
                        color: #fff;
                        overflow: hidden;
                    }

                    .white {
                        position: relative;
                        background-color: white;
                        color: #311D3F;
                        overflow: hidden;
                    }

                    .red:hover {
                        background-color: #D43C55;
                    }

                    .btn-style span {
                        position: relative;
                        left: 0;
                        transition: all 0.25s;
                    }


                }
            }
        }


        .header_container_right {
            .content {
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 30px;
                background-color: white;
                box-shadow: 0 0 50px 0 rgba(132, 132, 132, 0.15);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border-radius: 10px;
                label {
                    font-size: 12px;
                    font-weight: 510;
                    color: #0A1F3F;
                }
                .right_column {
                    padding-top: 3px;
                }
                .error-msg {
                    color: red;
                    font-size: 12px;
                    display: none;
                }
                .form-group {
                    input {
                        border: none;
                        height: 40px;
                        background: #F7F7F7;
                        border-radius: 4px;
                        padding: 0 10px;
                    }
                    input::placeholder {
                        font-size: 12px;
                        color: #B9B9B9;
                    }
                }
                .custom_dropdown {
                    margin-top: 16px;
                    .select-btn {
                        background: #F7F7F7;
                        border-radius: 4px;
                        height: 40px;
                        border: none;
                        padding: 0 0 0 10px;
                        i {
                            font-size: unset;
                        }
                        .sBtn-text {
                            font-size: 12px;
                            span {
                                color: #B9B9B9;
                            }
                        }
                    }
                    .select-custom-btn {
                        background: #008069;
                        padding-right: 10px;
                        border-bottom-left-radius: 0;
                        border-top-left-radius: 0;
                    }

                    .options {
                        width: 100%;
                        .option {
                            height: 35px;
                        }
                        .option .option-text {
                            font-size: 12px;
                        }
                    }
                }

                #datepicker_container1, #datepicker_container3{
                    margin-top: 16px;
                    * {
                        box-sizing: border-box;
                        margin: 0;
                        padding: 0;
                    }


                    .form-container {

                        .datepicker_div {
                            background-color: #fff;
                            position: relative;
                            border-radius: 4px;

                            &.open {
                                .calendar-popup {
                                    opacity: 1;
                                }
                            }


                            input {
                                font-size: 12px;
                                width: 100%;
                                border: none;
                                height: 40px;
                                background: #F7F7F7;
                                border-radius: 4px;
                                padding: 0 10px;
                                cursor: pointer;
                            }
                            input::placeholder {
                                font-size: 12px;
                                color: #B9B9B9;
                            }
                            input:focus-visible {
                                outline: none;
                            }

                            .date_icon {
                                display: flex;
                                cursor: pointer;

                                background: #008069;
                                padding: 10px;
                                border-bottom-right-radius: 4px;
                                border-top-right-radius: 4px;
                                img {
                                    width: 20px;
                                }
                            }
                        }

                        .calendar-popup {
                            z-index: 900;
                            background-color: #F7F7F7;
                            border-radius: 4px;
                            /*opacity: 0;*/
                            padding: 10px;
                            position: absolute;
                            top: calc(100% + 5px);
                            transition: all .1s linear;
                            width: 100%;

                            .month-and-year {
                                align-items: center;
                                display: flex;
                                text-align: center;

                                h4 {
                                    width: 100%;
                                    font-size: 14px;
                                    color: #008069;
                                }
                            }

                            .button {
                                background-color: transparent;
                                border: none;
                                font-weight: bold;
                                outline: none;
                                position: absolute;
                                top: 15px;
                                color: #008069;

                                &:hover {
                                    cursor: pointer;
                                }

                                &.prev {
                                    left: 10px;
                                    top: 7px;
                                }

                                &.next {
                                    right: 10px;
                                    top: 7px;
                                }
                            }

                            table {
                                font-size: 12px;
                                width: 100%;

                                tr {
                                    display: grid;
                                    grid-template-columns: repeat(7, 1fr);
                                    padding: 5px 0;

                                    th,
                                    td {
                                        text-align: center;
                                    }
                                }

                                .day {
                                    &:hover {
                                        cursor: pointer;
                                    }
                                }
                            }
                        }
                    }
                }

                /*increement*/
                .increase {
                    margin-top: 16px;

                    /* Swiper için qty-container */
                    .qty-container-swiper {
                        display: flex;
                        align-items: center;
                    }

                    /* Swiper için input-qty */
                    .qty-container-swiper .swiper-input-qty {
                        text-align: center;
                        width: 40px;
                        height: 40px;
                        max-width: 80px;
                        margin-right: 1px;
                        margin-left: 1px;
                        border-radius: 0;
                    }

                    /* Input focus görünümü */
                    .swiper-input-qty:focus-visible {
                        outline: none;
                    }

                    /* Swiper için qty-btn-minus ve qty-btn-plus */
                    .qty-container-swiper .swiper-qty-btn-minus,
                    .qty-container-swiper .swiper-qty-btn-plus,
                    .qty-container-swiper .swiper-qty-btn-minus-kids,
                    .qty-container-swiper .swiper-qty-btn-plus-kids {
                        font-size: 20px;
                        font-weight: 700;
                        height: 40px;
                        width: 40px;
                        transition: 0.3s;
                    }
                    .swiper-qty-btn-minus, .swiper-qty-btn-minus-kids {
                        border-radius: 4px 0 0 4px;
                    }
                    .swiper-qty-btn-plus, .swiper-qty-btn-plus-kids {
                        border-radius: 0 4px 4px 0;
                    }

                    /* Button focus durumları */
                    button:focus {
                        box-shadow: none;
                    }

                    button:focus-visible {
                        outline: none;
                    }
                }

                /*car name, price*/
                #carName {
                    font-size: 16px;
                    font-weight: bold;
                }
                #carPrice {
                    font-size: 16px!important;
                    font-weight: bold;
                    color: #0A1F3F;
                }


                .swiper-button-next, .swiper-button-prev {
                    color: #311D3F;
                    width: 0;
                }
                .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
                    font-size: 24px;
                    font-weight: bolder;
                }
                .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
                    font-size: 24px;
                    font-weight: bolder;

                }

                /*privacy*/
                .agree_section {
                    margin-top: 30px;
                    label {
                        font-size: 12px;
                        color: #0A1F3F;
                        font-weight: 400;
                    }
                    .search_btn_popup {
                        width: 100%;
                        .btn_search {
                            width: 100%;
                            border-radius: 8px;
                            height: 48px;
                        }
                        .btn-disabled {
                            background: #cccccc;
                            color: #666666;
                            cursor: not-allowed;
                        }
                        .btn-disabled:hover {
                            span {
                                transform: none;
                            }
                            svg {
                                display: none;
                            }
                        }
                    }
                }

                /*whatsapp*/
                .whatsapp {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    margin-top: 50px;
                    a {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 20px;
                        font-size: 18px;
                        width: 100%;
                        height: 48px;
                        text-decoration: none;
                        color: #008069;
                        border: 1px solid #008069;
                        border-radius: 4px;
                    }
                }


                /*swiper*/
                /* Ensure the Swiper container has the correct dimensions */
                .swiper-container {
                    width: 100%;
                    height: auto;
                    padding-top: 20px;
                    padding-bottom: 50px;
                    overflow: hidden;
                    position: relative;
                }

                /* Flexbox setup for the wrapper and slides */
                .swiper-wrapper {
                    display: flex;
                    transition: transform 0.3s ease-in-out;
                }

                .swiper-slide {
                    flex-shrink: 0;
                    width: 100%;
                    height: auto;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                .swiper-slide img {
                    display: block;
                    max-width: 100%;
                    height: auto;
                }

                .select-menu {
                    max-width: 100%;
                    position: relative;
                    .options {
                        position: absolute;
                    }
                }



                /*switch toggle*/
                input.switch {
                    position: relative;
                    appearance: none;
                    -moz-appearance: none;
                    -webkit-appearance: none;
                    width: 35px !important;
                    height: 20px;
                    border-radius: 30px;
                    cursor: pointer;
                    background: #ccc;
                    transition: box-shadow 0.3s ease-in-out, padding 0.25s ease-in-out;
                    transition-delay: 0.1s, 0s;
                }
                input.switch:focus {
                    border: 0;
                    outline: 0;
                }
                input.switch:checked {
                    transition-delay: 0s, 0s;
                    box-shadow: inset 0 0 0 2.62857em #e23e57 !important;
                    padding-left: 15px;
                }
                input.switch:before {
                    display: inline-block;
                    height: 14px;
                    width: 14px;
                    margin: 3px;
                    background-color: #fff;
                    border-radius: 2.1em;
                    transition: all 0.1s ease 0.1s;
                }
                input.switch:before, input.switch:after {
                    content: "";
                    display: block;
                }
                input.switch:active::before {
                    transition: all 0.1s ease 0.05s;
                }
                .switch_radio {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    label {
                        font-size: 14px;
                    }
                }
                .radio_info {
                    font-size: 10px;
                }
                .textarea_info {
                    display: flex;
                    flex-direction: column;
                    label {
                        font-size: 16px;
                    }
                    textarea {
                        height: 100px;
                        resize: none;
                        padding: 20px;
                    }
                }

            }

        }

    }

    /*swiper tour*/
    #button_swiper {
        margin-bottom: 100px;
    }
    .mySwiper-tour {
        width: 100%;
        padding-top: 3.125rem;
        position: relative;
    }


    .mySwiper-tour .swiper-slide {
        height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: self-start;
        border-radius: 8px;
    }



    .swiper2 .swiper-slide h2 {
        color: #fff;
        text-transform: uppercase;
        text-align: left;
        -webkit-line-clamp: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 16px!important;
    }

    .mySwiper-tour .swiper-slide a {
        background: rgba(82, 37, 70, 0.3);
        width: 100%;
        padding: 10px 35px;
        max-height: 105px;
        border-radius: 0 0 8px 8px;
        z-index: 500;
        color: white;
        height: 53px;
        h2 {
            font-size: 16px!important;
            font-weight: bold!important;
        }
    }

    .mySwiper-tour .swiper-slide::before {
        border-radius: 8px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        color: black;
        font-size: 10px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        margin-right: 5px;
        margin-left: 5px;
        margin-top: auto;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: linear-gradient(109.6deg, #E23E57 30%, #88304E 100%);
        color: white;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 15px;
    }


    @media (max-width: 1400px) {
        /*header cover*/
        .header_cover {
            width: 100%;

            .header_card {
                z-index: 100!important;
                height: 270px!important;

            }
        }
    }
    @media (max-width: 1200px) {
        .header_cover {
            padding-top: 185px;
            .agree_section {
                margin-top: 16px;

                label {
                    font-size: 11px!important;
                }
            }
        }
    }

    @media (max-width: 992px) {
        #activity_page {
            .swiper-button-next-gallery {
                top: -40px;
                right: 0!important;
            }

            .swiper-button-prev-gallery {
                top: -40px;
                left: 0!important;
            }
            .blogs_content {
                margin-top: 80px !important;
            }
        }

        .header_cover {
            padding-top: 0;
            width: 100%;
            h1 {
                font-size: 16px;
            }
            h2 {
                font-size: 16px!important;
            }

            .rent_form {

                input {
                    height: 40px;
                }
                .btn_search {
                    height: 40px!important;
                }
            }

            .header_card {
                z-index: 100!important;
                height: 170px!important;
                margin-top: 16px!important;
            }


        }
    }
    @media (max-width: 768px) {
        #activity_page {
            /* galleryTop */
            .gallery_container {
                margin-top: 80px!important;
                height: auto!important;
            }

            .slider-one {
                height: 250px!important;
                border-radius: 0 !important;
            }

            .swiper-zoom-container {
                align-items: unset !important;
            }

            /* thumbs */
            .gallery-thumbs .swiper-slide {
                display: none;
            }

            .swiper-button-next-gallery {
                top: 100%!important;
                right: 20px!important;
            }

            .swiper-button-prev-gallery {
                top: 100%!important;
                left: 20px!important;
            }




            /*blogs_content*/
            .blogs_content {
                margin-bottom: 100px;
                h1 {
                    font-size: 16px!important;
                }
                p {
                    font-size: 12px!important;
                }
                p::first-letter {
                    font-size: 24px;
                    font-weight: bold;
                }

                h2 {
                    font-size: 14px!important;
                }
                .information {
                    font-size: 12px!important;

                    div {
                        margin-bottom: 30px;
                    }
                    img {
                        margin-right: 30px;
                    }
                }
            }
        }

    }
    @media (max-width: 480px) {
        #activity_page {
            /* galleryTop */

            .gallery_container {
                margin-top: 70px!important;
            }
        }

        .header_cover {
            h1 {
                font-size: 16px;
            }


            .header_card {
                height: 155px!important;

                h3 {
                    font-size: 16px!important;
                }
                img {
                    width: 80px!important;
                }
            }

        }
    }
}

.swiper-zoom-container {
    align-items: unset;
}

.sBtn-text {
    padding-left: 5px;
    padding-right: 5px;
}

.contact-send-btn, .contact-send-btn:hover {
    background: #E23E57;
    border-radius: 5px;
    margin-top: 10px;
    height: 48px;
}

@media screen and (max-width: 768px) {
    #tour_page .gallery img {
        height: 250px !important;
    }
}

@media screen and (max-width: 576px) {
    #tour_page .header_cover .header_container_right .content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    label[for="ham-menu"] {
        left: 30px;
        top: 20px;
    }
}

.iti--fullscreen-popup.iti--container {
	z-index: 999999999999;
}