/*
Template Name: Travolo
Template URL: https://html.vecurosoft.com/travolo
Description: Travolo -  Travel Agency & Tour Booking HTML Template
Author: Vecuro
Author URI: https://themeforest.net/user/vecuro_themes/
Version: 1.0.0
*/
/*=================================
    CSS Index Here
==================================*/
/*

01. Theme Base
    1.1. Mixin
    1.2. Function
    1.3. Variable
    1.4. Typography
    1.5. Extend
    1.7. Wordpress Default
02. Reset
    2.1. Container
    2.2. Grid
    2.3. Input
    2.4. Slick Slider
    2.5. Mobile Menu
03. Utilities
    3.1. Preloader
    3.2. Buttons
    3.3. Titles
    3.4. Common
    3.6. Font
    3.7. Background
    3.8. Text Color
    3.9. Overlay
    3.10. Animation
04. Template Style
    4.1. Widget
    4.2. Header
    4.3. Footer
    4.4. Breadcumb

05. Spacing

*/
/*=================================
    CSS Index End
==================================*/
/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Mixin -------------------*/
/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
    --theme-color: #ff681a;
    --theme-color2: #37d4d9;
    --secondary-color: #111330;
    --title-color: #1c1c1c;
    --body-color: #505050;
    --smoke-color: #f7f7f7;
    --black-color: #000000;
    --white-color: #ffffff;
    --yellow-color: #fec624;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #ffccb1;
    --bg-color1: #fff5f0;
    --bg-color2: #f5f5f5;
    --title-font: "Jost", sans-serif;
    --body-font: "Jost", sans-serif;
    --icon-font: "Font Awesome 5 Pro";
    --main-container: 1220px;
    --container-gutters: 30px;
    --section-space: 100px;
    --section-space-mobile: 40px;
    --section-title-space: 70px;
    --ripple-ani-duration: 5s;
}

/*------------------- 1.5. Typography -------------------*/
html,
body {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    color: var(--body-color);
    line-height: 26px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

iframe {
    border: none;
    width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
    outline: none;
}

    input:focus {
        outline: none;
        box-shadow: none;
        background-color: var(--white-color);
    }

/*img:not([draggable]),
embed,
object,
video {
    max-width: 100%;
    height: auto;
}*/

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid var(--border-color);
}

th {
    font-weight: 700;
    color: var(--title-color);
}

td,
th {
    border: 1px solid var(--border-color);
    padding: 9px 12px;
    vertical-align: middle;
}

a {
    color: #e19f01;
    text-decoration: none;
    outline: 0;
    transition: all ease 0.4s;
}

    a:hover {
        color: #000000;
    }

    a:active, a:focus, a:hover, a:visited {
        text-decoration: none;
        outline: 0;
    }

button {
    transition: all ease 0.4s;
}

img {
    border: none;
    max-width: 100%;
}

span.ajax-loader:empty,
p:empty {
    display: none;
}

p {
    margin: 0 0 18px 0;
    color: var(--body-color);
    line-height: 1.625;
}

    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h6 a,
    p a,
    span a {
        font-size: inherit;
        font-family: inherit;
        font-weight: inherit;
        line-height: inherit;
    }

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
    font-family: var(--title-font);
    color: var(--title-color);
    text-transform: none;
    font-weight: 700;
    line-height: 25PX;
    margin: 0 0 15px 0;
    margin-top: 10px;
}

.h1,
h1 {
    font-size: 30px;
}

.h2,
h2 {
    font-size: 36px;
}

.h3,
h3 {
    font-size: 30px;
}

.h4,
h4 {
    font-size: 24px;
}

.h5,
h5 {
    font-size: 20px;
}

.h6,
h6 {
    font-size: 18px;
}

/* Large devices */
@media (max-width: 1199px) {
    .h1,
    h1 {
        font-size: 40px;
    }

    .h2,
    h2 {
        font-size: 36px;
    }

    .h3,
    h3 {
        font-size: 30px;
    }

    .h4,
    h4 {
        font-size: 24px;
    }

    .h5,
    h5 {
        font-size: 20px;
    }

    .h6,
    h6 {
        font-size: 16px;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .h1,
    h1 {
        font-size: 36px;
    }

    .h2,
    h2 {
        font-size: 30px;
    }

    .h3,
    h3 {
        font-size: 26px;
    }

    .h4,
    h4 {
        font-size: 22px;
    }

    .h5,
    h5 {
        font-size: 18px;
    }

    .h6,
    h6 {
        font-size: 16px;
    }
}
/*------------------- 1.6. Extend -------------------*/
/*------------------- 1.7. Wordpress Default -------------------*/
/*=================================
    02. Reset
==================================*/
/*------------------- 2.1. Container -------------------*/
@media only screen and (min-width: 1300px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: calc(var(--main-container) + var(--container-gutters));
        padding-left: calc(var(--container-gutters) / 2);
        padding-right: calc(var(--container-gutters) / 2);
    }

    .outer-wrap {
        max-width: 1300px;
        background-color: var(--white-color);
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
        margin-top: -70px;
        padding-bottom: 37px;
    }

        .outer-wrap.wrap-style1 {
            padding-top: calc(var(--section-space) - 40px);
            padding-bottom: calc(var(--section-space) - 80px);
        }
}

@media only screen and (max-width: 1600px) {
    .container-fluid.px-0 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

        .container-fluid.px-0 .row {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

    .outer-wrap {
        max-width: 1200px;
        background-color: var(--white-color);
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
        /* margin-top: -64px; */
        padding-bottom: 37px;
    }

        .outer-wrap.wrap-style1 {
            padding-top: calc(var(--section-space) - 40px);
            padding-bottom: calc(var(--section-space) - 80px);
        }
}
/*------------------- 2.2. Grid -------------------*/
@media (min-width: 767px) {
    .row:not([class*=gx-]) {
        --bs-gutter-x: 25px;
    }
}

.gy-30 {
    --bs-gutter-y: 30px;
}

.gx-30 {
    --bs-gutter-x: 30px;
}

.gx-60 {
    --bs-gutter-x: 60px;
}

.gx-gy {
    --bs-gutter-y: var(--bs-gutter-x);
}

.gx-80 {
    --bs-gutter-x: 80px;
}

/* Small devices */
@media (max-width: 767px) {
    .gx-30,
    .gx-60,
    .gx-80 {
        --bs-gutter-x: 0;
    }
}
/*------------------- 2.3. Input -------------------*/
.radioselect,
.form-control,
.form-select,
textarea,
input {
    height: 60px;
    padding: 0 30px 0 25px;
    padding-right: 45px;
    border-radius: 10px;
    color: var(--body-color);
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    font-size: 14px;
    width: 100%;
}

    .radioselect:focus,
    .form-control:focus,
    .form-select:focus,
    textarea:focus,
    input:focus {
        outline: 0;
        box-shadow: none;
        border-color: var(--theme-color);
        background-color: var(--white-color);
    }

    .radioselect::-moz-placeholder,
    .form-control::-moz-placeholder,
    .form-select::-moz-placeholder,
    textarea::-moz-placeholder,
    input::-moz-placeholder {
        color: var(--body-color);
    }

    .radioselect::-webkit-input-placeholder,
    .form-control::-webkit-input-placeholder,
    .form-select::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder,
    input::-webkit-input-placeholder {
        color: var(--body-color);
    }

    .radioselect:-ms-input-placeholder,
    .form-control:-ms-input-placeholder,
    .form-select:-ms-input-placeholder,
    textarea:-ms-input-placeholder,
    input:-ms-input-placeholder {
        color: var(--body-color);
    }

    .radioselect::placeholder,
    .form-control::placeholder,
    .form-select::placeholder,
    textarea::placeholder,
    input::placeholder {
        color: var(--body-color);
    }

.form-select,
select {
    display: block;
    width: 100%;
    line-height: 1.5;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-position: right 26px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

textarea.form-control,
textarea {
    min-height: 100px;
    padding-top: 16px;
    padding-bottom: 17px;
    border-radius: 10px;
}

input[type=checkbox] {
    visibility: hidden;
    opacity: 0;
    display: none;
    vertical-align: middle;
    width: 0;
    height: 0;
}

    input[type=checkbox]:checked ~ label:before {
        content: "\f00c";
        color: var(--white-color);
        background-color: var(--theme-color);
        border-color: var(--theme-color);
    }

    input[type=checkbox] ~ label {
        position: relative;
        padding-left: 30px;
        cursor: pointer;
        display: block;
    }

        input[type=checkbox] ~ label:before {
            content: "";
            font-family: var(--icon-font);
            font-weight: 700;
            position: absolute;
            left: 0px;
            top: 3.5px;
            background-color: var(--white-color);
            border: 1px solid var(--border-color);
            height: 18px;
            width: 18px;
            line-height: 18px;
            text-align: center;
            font-size: 12px;
        }

input[type=radio] {
    visibility: hidden;
    opacity: 0;
    display: none;
    vertical-align: middle;
    width: 0;
    height: 0;
}

    input[type=radio] ~ label {
        position: relative;
        padding-left: 22px;
        cursor: pointer;
        line-height: 18px;
        display: inline-block;
        font-weight: 600;
        margin-top: 8px;
    }

        input[type=radio] ~ label::before {
            content: "\f111";
            position: absolute;
            font-family: var(--icon-font);
            left: 0;
            top: 2px;
            width: 15px;
            height: 14px;
            padding-left: 0px;
            font-size: 0.6em;
            line-height: 15px;
            text-align: center;
            border: 1px solid var(--theme-color);
            border-radius: 10px;
            font-weight: 700;
            background: var(--white-color);
            color: transparent;
            transition: all 0.2s ease;
        }

    input[type=radio]:checked ~ label::before {
        border-color: var(--theme-color);
        background-color: var(--theme-color);
        color: var(--white-color);
    }

label {
    margin-bottom: 0.5em;
    margin-top: -0.3em;
    display: block;
    color: var(--title-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

    .form-group > i {
        position: absolute;
        right: calc(var(--bs-gutter-x) / 2 + 30px);
        top: 18px;
        font-size: 14px;
        color: #A0ABB4;
    }

    .form-group.has-label > i {
        top: 48px;
    }

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
    border: 1px solid var(--error-color) !important;
    background-position: right calc(0.375em + 0.8875rem) center;
    background-image: none;
}

    textarea.is-invalid:focus,
    select.is-invalid:focus,
    input.is-invalid:focus,
    .was-validated input:invalid:focus {
        outline: 0;
        box-shadow: none;
    }

textarea.is-invalid {
    background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
}

.row.no-gutters > .form-group {
    margin-bottom: 0;
}

.form-messages {
    display: none;
}

    .form-messages.mb-0 * {
        margin-bottom: 0;
    }

    .form-messages.success {
        color: var(--success-color);
        display: block;
    }

    .form-messages.error {
        color: var(--error-color);
        display: block;
    }

    .form-messages pre {
        padding: 0;
        background-color: transparent;
        color: inherit;
    }

/*------------------- 2.4. Slick Slider -------------------*/
.slick-track {
    min-width: 100%;
}

    .slick-track > [class*=col] {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) / 2);
        padding-left: calc(var(--bs-gutter-x) / 2);
        margin-top: var(--bs-gutter-y);
    }

    .slick-track .col-auto {
        width: auto;
    }

.slick-slide img {
    display: inline-block;
}

.slick-dots {
    list-style-type: none;
    padding: 0 0;
    margin: 0 0 30px 0;
    line-height: 0;
    text-align: center;
    height: max-content;
}

    .slick-dots li {
        display: inline-block;
        margin-right: 10px;
    }

        .slick-dots li:last-child {
            margin-right: 0;
        }

    .slick-dots button {
        font-size: 0;
        padding: 0;
        width: 60px;
        height: 10px;
        line-height: 0;
        background-color: transparent;
        border: none;
        border-bottom: 3px solid #D1D1D1;
        transition: all ease 0.4s;
        position: relative;
        display: inline-block;
    }

        .slick-dots button:hover {
            border-color: var(--theme-color);
        }

    .slick-dots .slick-active button {
        background-color: var(--theme-color);
        border-color: transparent;
    }

.slick-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    background-color: var(--white-color);
    position: absolute;
    top: 50%;
    border: 2px solid #bc0000;
    left: var(--pos-x, -100px);
    width: var(--icon-size, 60px);
    height: var(--icon-size, 60px);
    font-size: var(--icon-font-size, 20px);
    margin-top: calc(var(--icon-size, 66px) / -2);
    transition: 0.5s ease-in-out;
    z-index: 2;
    border-radius: 50%;
}

    .slick-arrow.default {
        position: relative;
        --pos-x: 0;
        margin-top: 0;
    }

    .slick-arrow.slick-next {
        right: var(--pos-x, -100px);
        left: auto;
    }

    .slick-arrow i {
        vertical-align: middle;
    }

    .slick-arrow:hover {
        background-color: #bc0000;
        color: var(--white-color);
        border-color: transparent;
    }

.arrow-margin .slick-arrow {
    top: calc(50% - 30px);
}

.arrow-wrap .slick-arrow {
    opacity: 0;
    visibility: hidden;
}

.arrow-wrap:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

/* Extra large devices */
@media (max-width: 1500px) {
    .slick-arrow {
        --arrow-horizontal: -20px;
    }
}
/* Medium Large devices */
@media (max-width: 1399px) {
    .slick-arrow {
        --arrow-horizontal: 40px;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .slick-arrow {
        --icon-size: 40px;
        margin-right: 40px;
    }

        .slick-arrow.slick-next {
            margin-right: 0;
            margin-left: 40px;
        }

    .slick-dots {
        margin: 8px 0 38px 0;
    }
}
/*------------------- 2.5. Mobile Menu -------------------*/
.vs-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 100%;
    height: 100%;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}

    .vs-menu-wrapper .mobile-logo {
        padding-bottom: 30px;
        padding-top: 40px;
        display: block;
        text-align: center;
        background-color: rgb(255 255 255 / 10%);
    }

        .vs-menu-wrapper .mobile-logo img,
        .vs-menu-wrapper .mobile-logo svg {
            max-width: 190px;
        }

    .vs-menu-wrapper .vs-menu-toggle {
        border: none;
        font-size: 16px;
        position: absolute;
        right: 10px;
        top: 10px;
        padding: 0;
        line-height: 1;
        width: 33px;
        height: 33px;
        z-index: 1;
        color: var(--white-color);
        background-color: var(--theme-color);
        border-radius: 50%;
    }

        .vs-menu-wrapper .vs-menu-toggle i {
            line-height: inherit;
        }

        .vs-menu-wrapper .vs-menu-toggle:hover {
            background-color: var(--title-color);
            color: var(--white-color);
        }

    .vs-menu-wrapper .vs-menu-area {
        width: 100%;
        max-width: 310px;
        background-color: #fff;
        border-right: 3px solid var(--theme-color);
        height: 100%;
        position: relative;
        left: -110%;
        opacity: 0;
        visibility: hidden;
        transition: all ease 1s;
        z-index: 1;
    }

    .vs-menu-wrapper.vs-body-visible {
        opacity: 1;
        visibility: visible;
    }

        .vs-menu-wrapper.vs-body-visible .vs-menu-area {
            left: 0;
            opacity: 1;
            visibility: visible;
        }

.vs-mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 200px);
    padding-bottom: 40px;
    margin-top: 33px;
    text-align: left;
}

    .vs-mobile-menu .new-label {
        margin-left: 5px;
        text-transform: capitalize;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .vs-mobile-menu ul {
        margin: 0;
        padding: 0 0;
    }

        .vs-mobile-menu ul li {
            border-bottom: 1px solid #fdedf1;
            list-style-type: none;
        }

            .vs-mobile-menu ul li li:first-child {
                border-top: 1px solid #fdedf1;
            }

            .vs-mobile-menu ul li a {
                display: block;
                position: relative;
                padding: 12px 0;
                line-height: 1;
                font-size: 16px;
                text-transform: capitalize;
                color: var(--title-color);
            }

                .vs-mobile-menu ul li a:before {
                    content: "\f105";
                    font-family: var(--icon-font);
                    position: relative;
                    left: 0;
                    top: 0;
                    margin-right: 10px;
                    display: inline-block;
                }

            .vs-mobile-menu ul li.vs-active > a {
                color: var(--theme-color);
            }

                .vs-mobile-menu ul li.vs-active > a:before {
                    transform: rotate(90deg);
                }

            .vs-mobile-menu ul li ul li {
                padding-left: 20px;
            }

                .vs-mobile-menu ul li ul li:last-child {
                    border-bottom: none;
                }

        .vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand {
            position: absolute;
            right: 0;
            top: 50%;
            font-weight: 400;
            font-size: 12px;
            width: 25px;
            height: 25px;
            line-height: 25px;
            margin-top: -12.5px;
            display: inline-block;
            text-align: center;
            background-color: var(--smoke-color);
            color: var(--title-color);
            box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
            border-radius: 50%;
        }

            .vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand:before {
                content: "\f067";
                font-family: var(--icon-font);
                color: var(--theme-color);
            }

        .vs-mobile-menu ul .vs-item-has-children.vs-active > a .vs-mean-expand:before {
            content: "\f068";
        }

    .vs-mobile-menu > ul {
        padding: 0 40px;
    }

        .vs-mobile-menu > ul > li:last-child {
            border-bottom: none;
        }

.vs-menu-toggle {
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 24px;
    border: none;
    background-color: var(--theme-color);
    color: var(--white-color);
    display: inline-block;
    border-radius: 0;
    vertical-align: middle;
}

@media (max-width: 400px) {
    .vs-menu-wrapper .vs-menu-area {
        width: 100%;
        max-width: 300px;
    }

    .vs-mobile-menu > ul {
        padding: 0 20px;
    }
}
/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
.preloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--white-color);
}

    .preloader .vs-btn {
        padding: 15px 20px;
        border-radius: 0;
        font-size: 14px;
    }

.preloader-inner {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .preloader-inner img {
        display: block;
        margin: 0 auto 25px auto;
    }

.loader {
    display: block;
    position: relative;
    height: 20px;
    width: 140px;
    margin: 0 auto;
    background-image: linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0);
    background-repeat: no-repeat;
    background-size: 20px auto;
    background-position: 0 0, 40px 0, 80px 0, 120px 0;
    animation: animloader 1s linear infinite;
}

@keyframes animloader {
    0% {
        background-image: linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0);
    }

    25% {
        background-image: linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0);
    }

    50% {
        background-image: linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0);
    }

    75% {
        background-image: linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0);
    }

    100% {
        background-image: linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color2) 20px, transparent 0);
    }
}
/*------------------- 3.2. Buttons -------------------*/
.vs-btn {
    border: none;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    font-family: var(--title-font);
    background-color: var(--body-color);
    color: var(--white-color);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    padding: 10px 18px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: uppercase;
}

    .vs-btn:before, .vs-btn:after {
        content: "";
        position: absolute;
        top: -1px;
        right: -1px;
        bottom: -1px;
        left: -1px;
        background-color: var(--theme-color);
        transform: scale(0);
        z-index: -1;
        border-radius: inherit;
        transform-origin: right bottom;
        transition: opacity ease 0.4s, visibility ease 0.4s, transform ease 0.4s;
    }

    .vs-btn:before {
        transform-origin: left top;
    }

    .vs-btn:hover {
        color: var(--white-color);
    }

        .vs-btn:hover:before, .vs-btn:hover:after {
            transform: scale(1);
            opacity: 1;
            visibility: visible;
        }

    .vs-btn.style2 {
        background-color: var(--white-color);
        color: var(--theme-color);
    }

        .vs-btn.style2::before, .vs-btn.style2::after {
            background-color: var(--theme-color2);
        }

        .vs-btn.style2:hover {
            color: var(--white-color);
        }

    .vs-btn.style3 {
        background-color: var(--theme-color2);
        color: var(--white-color);
    }

        .vs-btn.style3::before, .vs-btn.style3::after {
            background-color: var(--theme-color);
        }

    .vs-btn.style4 {
        background-color: #ad8b3a;
        margin-bottom: 20px;
    }

.title-btn {
    position: absolute;
    bottom: 10px;
}

.vs-btn.style4::before, .vs-btn.style4::after {
    background-color: var(--theme-color2);
}

.vs-btn.style5, .vs-btn.style6, .vs-btn.style7 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0px 20px;
    padding: 17px 33px 17px;
    background: #ad8b3a;
}

    .vs-btn.style5::before, .vs-btn.style5::after, .vs-btn.style6::before, .vs-btn.style6::after, .vs-btn.style7::before, .vs-btn.style7::after {
        background: var(--theme-color2);
    }

    .vs-btn.style5 > i, .vs-btn.style6 > i, .vs-btn.style7 > i {
        min-width: 20px;
        min-height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--theme-color2);
        border-radius: 50%;
        transition: all ease 0.4s;
    }

.vs-btn.style6 {
    background: var(--title-color);
}

.vs-btn.style7 {
    padding: 22px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.vs-btn.has-arrow i {
    margin-left: 6px;
}

.icon-btn {
    display: inline-block;
    width: var(--btn-size, 40px);
    height: var(--btn-size, 40px);
    line-height: var(--btn-size, 40px);
    background-color: var(--white-color);
    color: var(--theme-color);
    text-align: center;
    border-radius: 50%;
    font-size: var(--btn-font-size, 16px);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
    padding: 0;
    vertical-align: middle;
    border: none;
}

    .icon-btn:focus {
        outline: none;
    }

    .icon-btn i {
        line-height: inherit;
    }

    .icon-btn:hover {
        background-color: var(--theme-color);
        color: var(--white-color);
    }

.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
}

    .play-btn > i {
        display: inline-block;
        width: var(--icon-size, 124px);
        height: var(--icon-size, 124px);
        line-height: var(--icon-size, 124px);
        text-align: center;
        background-color: rgba(255, 104, 26, 0.8);
        color: var(--theme-color);
        font-size: var(--icon-font-size, 1.5em);
        border-radius: 50%;
        z-index: 1;
        transition: all ease 0.5s;
    }

    .play-btn:after, .play-btn:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 104, 26, 0.8);
        z-index: -1;
        border-radius: 50%;
        transition: all ease 0.5s;
    }

    .play-btn:after {
        animation-delay: 2s;
    }

    .play-btn:hover > i {
        background-color: rgba(55, 212, 217, 0.8);
    }

    .play-btn:hover:after, .play-btn:hover::before {
        background-color: rgba(55, 212, 217, 0.8);
        color: var(--white-color);
    }

    .play-btn.style2 > i:hover {
        background-color: var(--theme-color);
    }

.link-btn {
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    line-height: 0.8;
    position: relative;
    padding-bottom: 2px;
    margin-bottom: -2px;
    text-transform: capitalize;
    color: var(--title-color);
}

    .link-btn i {
        margin-left: 7px;
        font-size: 0.9rem;
    }

    .link-btn:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background-color: #e1e1e1;
        transition: all ease 0.4s;
    }

    .link-btn:hover {
        color: var(--theme-color2);
    }

        .link-btn:hover::before {
            background-color: var(--theme-color2);
        }

.scroll-btn {
    position: fixed;
    bottom: 300px;
    right: 30px;
    z-index: 94;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    border-radius: 50%;
    /* Small devices */
}

    .scroll-btn i {
        display: inline-block;
        background-color: #ad8b3a;
        color: var(--white-color);
        text-align: center;
        font-size: 16px;
        width: var(--btn-size, 50px);
        height: var(--btn-size, 50px);
        line-height: var(--btn-size, 50px);
        z-index: 2;
        border-radius: inherit;
        position: relative;
        transition: all ease 0.8s;
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
    }

    .scroll-btn:before {
        content: "";
        position: absolute;
        left: var(--extra-shape, -6px);
        top: var(--extra-shape, -6px);
        right: var(--extra-shape, -6px);
        bottom: var(--extra-shape, -6px);
        background-color: transparent;
        border-radius: inherit;
        z-index: 1;
        border: 2px dashed #ad8b3a;
        transition: all ease 0.4s;
        animation: spin 13s infinite linear;
    }

    .scroll-btn:focus i, .scroll-btn:hover i {
        background-color: #ad8b3a;
        color: var(--white-color);
    }

    .scroll-btn:focus:before, .scroll-btn:hover:before {
        border-color: #ad8b3a;
    }

    .scroll-btn.show {
        bottom: 120px;
        opacity: 1;
        visibility: visible;
    }

@media (max-width: 767px) {
    .scroll-btn {
        --btn-size: 40px;
        --extra-shape: -4px;
        right: 15px;
        bottom: 50px;
    }

        .scroll-btn.show {
            bottom: 15px;
        }
}

.scrollToTop {
    position: fixed;
    right: 60px;
    bottom: 500px;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
    z-index: 96;
}

    .scrollToTop.show {
        bottom: 60px;
        opacity: 1;
        visibility: visible;
    }

/* Medium devices */
@media (max-width: 991px) {
    .vs-btn {
        font-size: 14px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .play-btn {
        --icon-size: 60px;
        --icon-font-size: 20px;
    }

    .scrollToTop {
        right: 20px;
    }

        .scrollToTop.show {
            bottom: 20px;
        }
}
/*------------------- 3.3. Titles -------------------*/
.sec-title {
    margin: -0.2em 0 10px 0;
    line-height: 35px;
}

.sec-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #bc0000;
    margin: -0.2em 0 15px 0;
    text-transform: capitalize;
}

.sec-text,
.sec-text {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: var(--body-color);
    line-height: 1.625;
}

.sec-text2 {
    font-size: 16px;
    line-height: 25PX;
}

.title-area {
    margin-bottom: calc(100px - 30px);
}

.white-title .sec-title,
.white-title .sec-subtitle,
.white-title .sec-text,
.white-title2 .sec-title,
.white-title2 .sec-subtitle,
.white-title2 .sec-text {
    color: var(--white-color);
}

.white-title2 .sec-subtitle {
    color: var(--theme-color);
}

.sec-btns {
    margin-bottom: 30px;
}

    .sec-btns .icon-btn {
        margin-right: 10px;
    }

        .sec-btns .icon-btn:last-child {
            margin-right: 0;
        }

/* Large devices */
@media (max-width: 1199px) {
    .sec-title {
        font-size: 40px;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .title-area {
        margin-bottom: 40px;
    }

    .sec-title {
        font-size: 36px;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .sec-title {
        font-size: 30px;
    }

    .sec-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .bathing {
        padding: 12px !important;
    }
}
/*------------------- 3.4. Common -------------------*/
.image-scale-hover {
    overflow: hidden;
}

    .image-scale-hover img {
        transition: all ease 0.4s;
        transform: scale(1.001);
    }

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

.z-index-step1 {
    position: relative;
    z-index: 4 !important;
}

.z-index-common {
    position: relative;
    z-index: 3;
}

.z-index-n1 {
    z-index: -1;
}

.vs-media {
    display: flex;
}

.media-body {
    flex: 1;
}

.badge {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    padding: 0.35em 0.55em;
    border-radius: 50%;
}

.new-label {
    font-size: 12px;
    background-color: var(--theme-color2);
    color: var(--white-color);
    line-height: 1;
    padding: 5px 5px 3px 5px;
    border-radius: 4px;
    text-transform: capitalize;
    position: relative;
    top: -1px;
    font-weight: 500;
    margin-left: 5px;
    animation: newlabel infinite 0.4s;
}

.shape-mockup-wrap {
    position: relative;
    overflow: hidden;
}

.shape-mockup {
    display: inline-block;
    position: absolute;
}

.plane2 {
    opacity: 0.2;
}

@keyframes newlabel {
    0% {
        background-color: var(--theme-color);
    }

    50% {
        background-color: var(--theme-color2);
    }

    100% {
        background-color: var(--theme-color);
    }
}

@media (max-width: 1550px) {
    .d-xxxl-block {
        display: block !important;
    }
}
/*------------------- 3.6. Font -------------------*/
.font-icon {
    font-family: var(--icon-font);
}

.font-title {
    font-family: var(--title-font);
}

.font-body {
    font-family: var(--body-font);
}

.fw-normal {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

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

.fw-extrabold {
    font-weight: 800;
}

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

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

/* Small devices */
@media (max-width: 767px) {
    p.fs-md {
        font-size: 16px;
    }
}
/*------------------- 3.7. Background -------------------*/
.bg-theme {
    background-color: var(--theme-color) !important;
}

.bg-smoke {
    background-color: var(--smoke-color) !important;
}

.bg-white {
    background-color: var(--white-color) !important;
}

.bg-black {
    background-color: var(--black-color) !important;
}

.bg-title {
    background-color: var(--title-color) !important;
}

.background-image,
[data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bg-fluid {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
}

.bg-auto {
    background-size: auto auto;
}

.bg-light {
    background-color: var(--smoke-color) !important;
}

.bg-black {
    background-color: var(--black-color);
}

/*------------------- 3.8. Text Color -------------------*/
.text-theme {
    color: var(--theme-color) !important;
}

.text-title {
    color: var(--title-color) !important;
}

.text-body {
    color: var(--body-color) !important;
}

.text-white {
    color: var(--white-color) !important;
}

.text-yellow {
    color: var(--yellow-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-error {
    color: var(--error-color) !important;
}

.text-inherit {
    color: inherit;
}

    .text-inherit:hover {
        color: var(--theme-color2);
    }

a.text-theme:hover,
.text-reset:hover {
    text-decoration: underline;
}

/*------------------- 3.9. Overlay -------------------*/
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.position-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

[data-overlay] {
    position: relative;
}

    [data-overlay] [class^=col-],
    [data-overlay] [class*=col-] {
        z-index: 1;
    }

    [data-overlay]:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

[data-overlay=theme]:before {
    background-color: var(--theme-color);
}

[data-overlay=title]:before {
    background-color: var(--title-color);
}

[data-overlay=white]:before {
    background-color: var(--white-color);
}

[data-overlay=black]:before {
    background-color: var(--black-color);
}

[data-opacity="1"]:before {
    opacity: 0.1;
}

[data-opacity="2"]:before {
    opacity: 0.2;
}

[data-opacity="3"]:before {
    opacity: 0.3;
}

[data-opacity="4"]:before {
    opacity: 0.4;
}

[data-opacity="5"]:before {
    opacity: 0.5;
}

[data-opacity="6"]:before {
    opacity: 0.6;
}

[data-opacity="7"]:before {
    opacity: 0.7;
}

[data-opacity="8"]:before {
    opacity: 0.8;
}

[data-opacity="9"]:before {
    opacity: 0.9;
}

[data-opacity="10"]:before {
    opacity: 1;
}

/*------------------- 3.10. Animation -------------------*/
.jump-reverse-img,
.jump-img,
.jump-reverse,
.jump {
    animation: jumpping var(--duration, 6s) infinite linear;
}

.jump-reverse-img,
.jump-img {
    --duration: 5s;
}

.jump-reverse-img,
.jump-reverse {
    --jump-y: -20px;
}

.rotate-reverse-img,
.rotate-img,
.rotate-reverse,
.rotate {
    animation: rotate var(--duration, 12s) infinite linear;
}

.rotate-reverse-img,
.rotate-img {
    --duration: 40s;
}

.rotate-reverse {
    --rotate-angle: -360deg;
}

.spin {
    animation: spin var(--duration, 40s) infinite linear;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.wow-animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadein {
    --animation-name: fadein-custom;
}

.slideinup {
    --animation-name: slideinup;
}

.slideindown {
    --animation-name: slideindown;
}

.slideinleft {
    --animation-name: slideinleft;
}

.slideinright {
    --animation-name: slideinright;
}

.animated {
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-name: var(--animation-name);
}

.ripple-animation, .play-btn:after, .play-btn:before {
    animation-duration: var(--ripple-ani-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes ripple2 {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes slideinup {
    0% {
        opacity: 0;
        transform: translateY(70px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideindown {
    0% {
        opacity: 0;
        transform: translateY(-70px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideinleft {
    0% {
        opacity: 0;
        transform: translateX(-70px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideinright {
    0% {
        opacity: 0;
        transform: translateX(70px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes fadein-custom {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes jumpping {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    40% {
        transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(var(--rotate-angle, 360deg));
    }
}

@keyframes leftToRight {
    0%, 100% {
        left: 0px;
    }

    50% {
        left: 56px;
    }
}
/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/
.price_slider_wrapper {
    margin-top: 40px;
    margin-bottom: 30px;
}

    .price_slider_wrapper .ui-slider {
        height: 8px;
        position: relative;
        width: 100%;
        background-color: var(--border-color);
        border: none;
        margin-top: 10px;
        margin-bottom: 20px;
        cursor: pointer;
        border-radius: 3px;
    }

    .price_slider_wrapper .ui-slider-handle {
        width: 20px;
        height: 20px;
        outline: none;
        border-radius: 50%;
        text-align: center;
        line-height: 10.5px;
        padding: 0;
        border: 5px solid var(--theme-color);
        cursor: pointer;
        position: absolute;
        z-index: 2;
        margin-top: -1px;
        background-color: var(--border-color);
        transform: translateX(8px);
    }

    .price_slider_wrapper .ui-slider-range {
        border: none;
        cursor: pointer;
        position: absolute;
        top: 0;
        height: 100%;
        z-index: 1;
        display: block;
        background-color: var(--theme-color);
    }

    .price_slider_wrapper .price_label {
        font-size: 14px;
        font-weight: 400;
        margin-right: 15px;
    }

    .price_slider_wrapper .vs-btn {
        padding: 13px 20px;
        background-color: var(--border-color);
        color: var(--theme-color);
    }

        .price_slider_wrapper .vs-btn:hover {
            color: var(--white-color);
        }

    .price_slider_wrapper .price_footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.chekbox-area {
    margin-bottom: 5px;
}

.widget_categories ul,
.widget_nav_menu ul {
    list-style: none;
    margin: 0 0 -10px 0;
    padding: 0;
}

.widget_nav_menu .sub-menu {
    margin-left: 10px;
}

.widget_categories li {
    display: block;
    position: relative;
    border-radius: 6px;
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    transition: 0.5s ease;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--title-color);
    background-color: var(--white-color);
}

    .widget_categories li span {
        position: absolute;
        right: 20px;
    }

    .widget_categories li a {
        color: var(--title-color);
    }

    .widget_categories li:last-child {
        margin-bottom: 0;
    }

    .widget_categories li:hover {
        color: var(--white-color);
        background-color: var(--theme-color);
    }

        .widget_categories li:hover a {
            color: var(--white-color);
        }

.widget_shopping_cart ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget_shopping_cart .mini_cart_item {
    position: relative;
    padding: 30px 10px 30px 90px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.widget_shopping_cart .cart_list img {
    width: 75px;
    height: 75px;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 20px;
    border: 1px solid var(--border-color);
}

.widget_shopping_cart .cart_list a.remove {
    position: absolute;
    top: 50%;
    left: 95%;
    transform: translateY(-50%);
    color: var(--body-color2);
}

    .widget_shopping_cart .cart_list a.remove:hover {
        color: red;
    }

.widget_shopping_cart .cart_list a:not(.remove) {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--title-color);
    font-family: var(--body-font);
}

    .widget_shopping_cart .cart_list a:not(.remove):hover {
        color: var(--theme-color);
    }

.widget_shopping_cart .total {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--title-color);
}

.widget_shopping_cart .quantity {
    display: inline-flex;
    white-space: nowrap;
    vertical-align: top;
    margin-right: 20px;
    font-size: 14px;
    color: var(--theme-color);
}

.countdown-style1 .countdown-active {
    margin: 0;
    padding: 0;
}

.countdown-style1 li {
    display: inline-block;
    text-align: center;
    margin-right: 40px;
    position: relative;
    font-family: var(--body-font);
}

    .countdown-style1 li span {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--black-color);
        color: var(--white-color);
        font-size: 24px;
        font-weight: 700;
        font-family: var(--body-font);
        margin-bottom: 10px;
    }

    .countdown-style1 li::before {
        content: ":";
        color: var(--black-color);
        font-size: 50px;
        position: absolute;
        top: 13px;
        right: -25px;
    }

    .countdown-style1 li:last-child {
        margin-right: 0;
    }

        .countdown-style1 li:last-child::before {
            display: none;
        }

/* Large devices */
@media (max-width: 1199px) {
    .widget_categories,
    .widget_nav_menu {
        padding: 18px 20px;
        font-size: 14px;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .countdown-style1 li {
        font-size: 12px;
        margin-right: 15px;
    }

        .countdown-style1 li::before {
            right: -17px;
            top: 4px;
        }

        .countdown-style1 li span {
            width: 45px;
            height: 45px;
            font-size: 16px;
        }
}

.widget {
    padding: var(--widget-padding-y, 30px) var(--widget-padding-x, 20px);
    background-color: var(--smoke-color);
    position: relative;
    margin-bottom: 40px;
    border-radius: 6px;
}

    .widget:last-child {
        margin-bottom: 0;
    }

.widget_title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1em;
    position: relative;
    font-family: var(--title-font);
    margin: -0.07em 0 23px 0;
    color: var(--secondary-color);
    padding-bottom: 15px;
}

    .widget_title::before, .widget_title::after {
        content: "";
        height: 2px;
        border-radius: 50px;
        background-color: var(--theme-color);
        position: absolute;
        bottom: 0;
    }

    .widget_title::before {
        width: 15px;
        left: 0;
    }

    .widget_title::after {
        width: 55px;
        left: 20px;
    }

.widget .search-form {
    position: relative;
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

    .widget .search-form input {
        flex: 1;
        border: 0px;
        font-size: 14px;
        font-weight: 400;
        padding-right: 0;
        border-radius: 0;
        color: var(--black-color);
        background-color: transparent;
    }

        .widget .search-form input::-moz-placeholder {
            color: var(--body-color);
        }

        .widget .search-form input::-webkit-input-placeholder {
            color: var(--body-color);
        }

        .widget .search-form input:-ms-input-placeholder {
            color: var(--body-color);
        }

        .widget .search-form input::placeholder {
            color: var(--body-color);
        }

    .widget .search-form button {
        height: 60px;
        width: 60px;
        border: none;
        font-size: 18px;
        color: var(--body-color);
        background-color: transparent;
    }

.wp-block-tag-cloud a,
.tagcloud a {
    display: inline-block;
    border: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 12px 20.5px;
    margin-right: 5px;
    margin-bottom: 10px;
    color: var(--title-color);
    background-color: var(--white-color);
    border-radius: 6px;
}

    .wp-block-tag-cloud a:hover,
    .tagcloud a:hover {
        background-color: var(--theme-color);
        color: var(--white-color) !important;
    }

.tagcloud {
    margin-right: -5px;
    margin-bottom: -10px;
}

.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .recent-post:last-child {
        margin-bottom: 0;
    }

    .recent-post .media-img {
        margin-right: 20px;
        width: 90px;
    }

        .recent-post .media-img img {
            border-radius: 6px;
            width: 100%;
        }

    .recent-post .post-title {
        font-weight: 600;
        font-size: 20px;
        line-height: 25px;
        margin: 0 0 5px 0;
    }

        .recent-post .post-title a:hover {
            color: var(--theme-color);
        }

    .recent-post .recent-post-meta {
        margin-bottom: 2px;
    }

        .recent-post .recent-post-meta i {
            margin-right: 5px;
            font-size: 14px;
        }

        .recent-post .recent-post-meta a {
            font-size: 14px;
            font-weight: 500;
            color: var(--body-color);
        }

.sidebar-area {
    margin-bottom: -10px;
}

.widget_search .widget_title {
    margin-bottom: 10px;
}

.widget_search .search-form {
    margin-top: 18px;
    background-color: var(--white-color);
}

.newsletter-form .form-control {
    margin-bottom: 15px;
}

.newsletter-form .vs-btn {
    width: 100%;
}

.widget_social_style a {
    background-color: var(--theme-color) !important;
    color: var(--white-color) !important;
}

    .widget_social_style a:hover {
        background-color: var(--theme-color2) !important;
        border-color: var(--theme-color2) !important;
    }

.tours-sidebar .widget {
    padding-left: 20px;
    padding-right: 20px;
}

.booking-form .form-group > i {
    right: unset;
    left: 20px;
    top: 23px;
    color: var(--body-color);
}

.booking-form .form-group input {
    padding: 0px 12px 0 23px;
}

.booking-form .form-group select {
    padding-left: 20px;
}

.booking-form input[type=radio] ~ label::before {
    background-color: var(--border-color);
    border-color: var(--border-color);
}

.booking-form input[type=radio]:checked ~ label::before {
    color: var(--theme-color);
}

.latest-post-wrap .latest-post {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

    .latest-post-wrap .latest-post:last-child {
        margin-bottom: 0;
    }

    .latest-post-wrap .latest-post:hover .media-img img {
        transform: scale(1.2);
    }

.latest-post-wrap .media-img {
    width: 100px;
    height: 80px;
    overflow: hidden;
    border-radius: 10px;
    margin-right: 20px;
    background-color: var(--white-color);
}

    .latest-post-wrap .media-img img {
        width: 100%;
        height: 100%;
        transition: 0.5s ease-in-out;
    }

.latest-post-wrap .post-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
    .widget {
        --widget-padding-y: 30px;
        --widget-padding-x: 30px;
    }

    .widget_title {
        font-size: 20px;
    }

    .recent-post .media-img {
        width: 75px;
        margin-right: 15px;
    }

    .recent-post .recent-post-meta a {
        font-size: 12px;
    }

    .recent-post .post-title {
        font-size: 16px;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .sidebar-area {
        padding-top: 30px;
        margin-bottom: 30px;
    }

    .wp-block-tag-cloud a,
    .tagcloud a {
        padding: 10.5px 18px;
    }
}
/* Extra small devices */
@media (max-width: 575px) {
    .widget {
        padding: 30px 20px;
    }
}

.widget-area {
    padding-top: 120px;
    padding-bottom: 93px;
}

.widget-area2 {
    padding-top: 60px;
    padding-bottom: 80px;
}

.footer-widget,
.footer-widget .widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
}

    .footer-widget .widget_title {
        border: none;
        font-size: 22px;
        margin: 0 0 30px 0;
        padding: 0 0 20px 0;
        color: var(--white-color);
        position: relative;
    }

        .footer-widget .widget_title::before, .footer-widget .widget_title::after {
            content: "";
            position: absolute;
        }

        .footer-widget .widget_title::before {
            width: 60px;
            height: 2px;
            background-color: var(--theme-color);
            left: 0;
            bottom: 0;
        }

        .footer-widget .widget_title::after {
            width: 5px;
            height: 5px;
            outline: 4px solid var(--theme-color);
            border-radius: 50%;
            background-color: var(--white-color);
            left: 4px;
            bottom: -1px;
            animation: leftToRight infinite 5s linear;
        }

    .footer-widget .vs-btn {
        background-color: var(--theme-color);
    }

        .footer-widget .vs-btn::before, .footer-widget .vs-btn::after {
            background-color: var(--theme-color2);
        }

    .footer-widget.widget_nav_menu {
        margin-bottom: 45px;
    }

        .footer-widget.widget_nav_menu .widget_title {
            margin-bottom: 35px;
        }

        .footer-widget.widget_nav_menu a {
            width: max-content;
            display: block;
            border: none;
            font-size: 14px;
            font-weight: 400;
            margin-bottom: 15px;
            max-width: 100%;
            padding: 0 0 0 15px;
            color: var(--white-color);
            background-color: transparent;
            position: relative;
        }

            .footer-widget.widget_nav_menu a i {
                position: absolute;
                left: 0;
                top: 4px;
            }

            .footer-widget.widget_nav_menu a:hover {
                background-color: transparent;
                color: var(--theme-color);
            }

        .footer-widget.widget_nav_menu li > span {
            width: auto;
            height: auto;
            position: relative;
            background-color: transparent;
            color: var(--body-color);
            line-height: 1;
        }

        .footer-widget.widget_nav_menu li:last-child a {
            margin-bottom: 0;
        }

    .footer-widget .sidebar-gallery {
        display: grid;
        gap: 5px;
        grid-template-columns: repeat(3, 1fr);
    }

        .footer-widget .sidebar-gallery a {
            overflow: hidden;
            border-radius: 5px;
        }

            .footer-widget .sidebar-gallery a img {
                transition: 0.5s ease-in-out;
            }

            .footer-widget .sidebar-gallery a:hover img {
                transform: scale(1.1);
            }

.vs-widget-about .footer-text {
    max-width: 275px;
    font-family: var(--body-font);
    font-size: 14px;
}

.footer-insta-image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.social-style1 a {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    border-radius: 50%;
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-color);
}

    .social-style1 a i {
        font-size: 17px;
    }

    .social-style1 a:hover {
        background-color: var(--theme-color);
        border-color: var(--theme-color);
    }

    .social-style1 a:last-child {
        margin-right: 0;
    }

.footer-contact .menu a {
    padding-left: 24px;
}

    .footer-contact .menu a i {
        font-size: 14px;
        top: 5px;
    }

.footer-widget .newsletter-form .form_text {
    font-size: 16px;
    font-family: var(--body-font);
}

.footer-widget .newsletter-form .form-control {
    margin-bottom: 15px;
    background-color: transparent;
    height: 46px;
}

    .footer-widget .newsletter-form .form-control:focus {
        color: var(--white-color);
    }

.footer-widget .newsletter-form .vs-btn {
    width: unset;
}

/* Large devices */
@media (max-width: 1199px) {
    .footer-widget {
        margin-bottom: 60px;
    }

        .footer-widget .widget_title {
            font-size: 26px;
            margin-bottom: 20px;
        }

        .footer-widget.widget_categories .widget_title, .footer-widget.widget_nav_menu .widget_title {
            margin-bottom: 25px;
        }

        .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
            font-size: 14px;
        }
}
/* Medium devices */
@media (max-width: 991px) {
    .footer-widget .widget_title {
        font-size: 22px;
    }

    .widget-area2 {
        padding-bottom: 20px;
    }
}
/*------------------- 4.2. Header  -------------------*/
.vs-header {
    position: relative;
    z-index: 41;
    background-color: #fff;
}

.vs-logo img {
    /* Medium devices */
    /* Small devices */
    padding: 8px 0px;
    width: 350px;
    filter: drop-shadow(-24px 12px 6px #fff);
}

@media (max-width: 991px) {
    .vs-logo img {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .vs-logo img {
        max-width: 210px;
    }
}

.will-sticky .sticky-active {
    position: fixed;
    top: -100%;
    right: 0;
    left: 0;
    background-color: var(--white-color);
    transition: all ease 0.8s;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}

    .will-sticky .sticky-active.active {
        top: 0;
    }

.main-menu a {
    display: block;
    position: relative;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 14px;
    color: var(--title-color);
    /* Extra large devices */
}

@media (max-width: 1500px) {
    .main-menu a {
        font-size: 14px;
    }
}

.main-menu a:hover {
    color: #ff681a;
}

.main-menu > ul > li {
    margin: 0 13px;
    /* Extra large devices */
}

@media (max-width: 1500px) {
    .main-menu > ul > li {
        margin: 0 10px;
    }
}

.main-menu > ul > li > a .new-label {
    position: absolute;
    top: -15px;
    right: -16px;
    font-size: 11px;
    border-radius: 3px;
    background-color: var(--theme-color);
}

.main-menu > ul > li > a .has-new-lable {
    position: relative;
}

.main-menu ul {
    margin: 0;
    padding: 0;
}

    .main-menu ul li {
        list-style-type: none;
        display: inline-block;
        position: relative;
    }

        .main-menu ul li.menu-item-has-children > a:after {
            content: "\f107";
            position: relative;
            font-family: var(--icon-font);
            margin-left: 5px;
            top: -0.8px;
            font-size: 0.8rem;
        }

        .main-menu ul li:last-child {
            margin-right: 0;
        }

        .main-menu ul li:first-child {
            margin-left: 0;
        }

        .main-menu ul li:hover > ul.sub-menu,
        .main-menu ul li:hover ul.mega-menu {
            visibility: visible;
            opacity: 1;
            margin-top: 0;
            z-index: 9;
        }

    .main-menu ul.sub-menu,
    .main-menu ul.mega-menu {
        position: absolute;
        text-align: left;
        top: 100%;
        left: 0;
        background-color: var(--white-color);
        visibility: hidden;
        min-width: 190px;
        width: max-content;
        padding: 7px;
        left: -14px;
        margin-top: 50px;
        opacity: 0;
        z-index: -1;
        border-bottom: 3px solid var(--theme-color);
        box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
        transform-origin: top center;
        transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
    }

        .main-menu ul.sub-menu a,
        .main-menu ul.mega-menu a {
            font-size: 14px;
            line-height: 30px;
        }

    .main-menu ul.sub-menu {
        padding: 18px 20px;
        left: -27px;
    }

        .main-menu ul.sub-menu:before {
            content: "";
            position: absolute;
            left: 34.5px;
            top: 30px;
            width: 1px;
            background-color: #ededed;
            height: calc(100% - 60px);
        }

        .main-menu ul.sub-menu li {
            display: block;
            margin: 0 0;
            padding: 3px 9px;
        }

            .main-menu ul.sub-menu li.menu-item-has-children > a:after {
                content: "\f105";
                float: right;
                top: 3px;
            }

            .main-menu ul.sub-menu li a {
                position: relative;
                padding-left: 21px;
            }

                .main-menu ul.sub-menu li a:before {
                    content: "\f111";
                    position: absolute;
                    top: 2.5em;
                    left: 0;
                    width: 11px;
                    height: 11px;
                    text-align: center;
                    border-radius: 50%;
                    display: inline-block;
                    font-size: 0.2em;
                    line-height: 11.5px;
                    color: var(--theme-color);
                    font-weight: 700;
                    font-family: var(--icon-font);
                    background-color: var(--white-color);
                    box-shadow: inset 0px 2px 4px 0px rgba(255, 104, 26, 0.4);
                }

            .main-menu ul.sub-menu li ul.sub-menu {
                left: 100%;
                right: auto;
                top: 0;
                margin: 0 0;
                margin-left: 20px;
            }

                .main-menu ul.sub-menu li ul.sub-menu li ul {
                    left: 100%;
                    right: auto;
                }

.main-menu .mega-menu-wrap {
    position: static;
}

.main-menu ul.mega-menu {
    display: flex;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    max-width: var(--main-container);
    padding: 20px 15px 23px 15px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../img/sub.png);
}

    .main-menu ul.mega-menu li {
        display: block;
        width: 100%;
        padding: 0 15px;
    }

        .main-menu ul.mega-menu li li {
            padding: 4px 0;
        }

        .main-menu ul.mega-menu li a {
            display: inline-block;
        }

    .main-menu ul.mega-menu > li > a {
        display: block;
        padding: 0;
        padding-bottom: 15px;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
        color: var(--theme-color2);
    }

        .main-menu ul.mega-menu > li > a::after, .main-menu ul.mega-menu > li > a::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 15px;
            height: 1px;
            background-color: var(--theme-color2);
        }

        .main-menu ul.mega-menu > li > a::after {
            width: calc(100% - 20px);
            left: 20px;
        }

        .main-menu ul.mega-menu > li > a:hover {
            padding-left: 0;
        }

/* ===========================
Header Customization
============================= */
.header-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .header-contact li {
        display: inline-block;
    }

        .header-contact li i {
            width: 40px;
            height: 40px;
            margin-right: 5px;
            border-radius: 50%;
            color: var(--theme-color);
            transition: all ease 0.5s;
            background-color: var(--white-color);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .header-contact li a {
            color: var(--white-color);
            margin-right: 15px;
        }

            .header-contact li a:hover {
                color: var(--theme-color);
            }

        .header-contact li:last-child a {
            margin-right: 0;
        }

        .header-contact li:hover i {
            color: var(--white-color);
            background-color: var(--theme-color);
        }

.header-social a {
    display: inline-block;
    color: var(--white-color);
    line-height: 1;
    margin-right: 15px;
}

    .header-social a:hover {
        color: var(--theme-color);
    }

    .header-social a:last-child a {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }

.header-btns a,
.header-btns button {
    width: 50px;
    height: 50px;
    line-height: 52px;
    border: none;
    font-size: 20px;
    font-weight: 700;
    margin-right: 10px;
    border-radius: 50%;
    color: var(--white-color);
    position: relative;
    background-color: var(--theme-color);
    display: inline-block;
}

    .header-btns a:hover,
    .header-btns button:hover {
        background-color: var(--theme-color2);
    }

        .header-btns a:hover .button-badge,
        .header-btns button:hover .button-badge {
            background-color: var(--theme-color);
        }

    .header-btns a:last-child,
    .header-btns button:last-child {
        margin-right: 0;
    }

.button-badge {
    width: 20px;
    height: 20px;
    font-size: 10px;
    overflow: hidden;
    border-radius: 50%;
    color: var(--white-color);
    background-color: var(--theme-color2);
    font-family: var(--body-font);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
}

.vs-header .form-select {
    background-color: var(--theme-color);
    background-position: right 15px center;
    font-size: 16px;
    padding: 0 40px 0 15px;
    margin-left: 15px;
    position: relative;
    border: 0px;
    border-radius: 0;
    width: unset;
    color: var(--white-color);
    height: 60px;
}

    .vs-header .form-select::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--theme-color);
        position: absolute;
        top: 0;
        left: 0;
    }

    .vs-header .form-select option {
        background-color: var(--white-color);
        color: var(--black-color);
    }

.vs-header .user-btn {
    padding: 17px 22px;
    color: var(--white-color);
    background-color: var(--theme-color2);
    transition: 0.5s ease all;
}

    .vs-header .user-btn:hover {
        background-color: var(--theme-color);
    }

.vs-header .sticky-wrapper {
    background-color: var(--white-color);
}

    .vs-header .sticky-wrapper .header-btns ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .vs-header .sticky-wrapper .header-btns ul li {
            display: inline-block;
        }

.header-dropdown .dropdown-toggle {
    background-color: var(--theme-color);
    background-position: right 15px center;
    font-size: 14px;
    transition: all ease 0.5s;
    padding: 0 25px;
    margin-left: 15px;
    position: relative;
    border: 0px;
    border-radius: 0;
    width: unset;
    color: var(--white-color);
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-dropdown ul.dropdown-menu {
    padding: 10px 15px;
    margin: 0;
    width: -moz-max-content;
    width: max-content;
    min-width: auto;
    position: relative;
    z-index: 9;
    border: none;
    box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
}

    .header-dropdown ul.dropdown-menu a {
        display: block;
        margin: 0 0;
        width: -moz-max-content;
        width: max-content;
        padding: 2px 10px;
        color: var(--title-color);
        font-weight: 400;
        font-size: 14px;
    }

.header-dropdown:hover .dropdown-toggle {
    background-color: var(--theme-color2);
}

.header-layout1 {
    background-color: var(--title-color);
}

.header-layout2 .header-top {
    padding: 10px 0 65px 0;
    background-color: var(--theme-color);
}

.header-layout2 .header-contact li i {
    background-color: var(--white-color);
    color: var(--theme-color);
    transition: 0.5s ease-in-out;
}

.header-layout2 .header-contact li:hover i {
    background-color: var(--theme-color2);
    color: var(--white-color);
}

.header-layout2 .vs-btn {
    padding: 11px 24px;
    font-weight: 400;
}

.header-layout2 .sticky-wrapper {
    background-color: transparent;
    margin-top: -55px;
}

    .header-layout2 .sticky-wrapper .container {
        background-color: var(--white-color);
    }

    .header-layout2 .sticky-wrapper .active .container {
        margin-top: 0;
    }

.header-layout2 .header-social a:hover,
.header-layout2 .header-contact a:hover {
    color: var(--theme-color2);
}

.header-layout3 {
    background-color: var(--theme-color);
}

    .header-layout3 .header-contact li i {
        background-color: var(--white-color);
        color: var(--title-color);
    }

    .header-layout3 .header-contact li:hover i {
        background-color: var(--theme-color2);
        color: var(--white-color);
    }

    .header-layout3 .form-select {
        background-color: var(--white-color);
        color: var(--title-color);
    }

    .header-layout3 .header-social a:hover,
    .header-layout3 .header-contact a:hover {
        color: var(--theme-color2);
    }

.menu-style1 > ul > li {
    padding: 47px 0;
}

    .menu-style1 > ul > li > a {
        padding: 0;
    }

.header-btns a,
.header-btns button {
    margin-right: 15px;
}

    .header-btns a:last-child,
    .header-btns button:last-child {
        margin-right: 0;
    }

/* Small devices */
@media (max-width: 767px) {
    .vs-header .user-btn {
        padding: 10px 15px;
    }

    .vs-header .form-select {
        margin-left: 0;
        padding-left: 10px;
        padding-right: 32px;
    }

    .header-dropdown .dropdown-toggle {
        height: 46px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .timedate {
        display: none;
    }

    .marquee {
        display: none;
    }

    .language {
        display: none;
    }

    .mx-3 {
        margin-right: 0px !important;
        margin-left: 0px !important;
    }

    .header-layout5 .header-top {
        padding: 5px !important;
    }

    .header-login a {
        margin-right: 0px !important;
    }
}
/*------------------- 4.3. Footer  -------------------*/
.footer-menu > ul li {
    padding-left: 25px;
    position: relative;
}

    .footer-menu > ul li i {
        position: absolute;
        left: 0;
        top: 1px;
    }

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-wrapper {
    background-color: var(--title-color);
}

.footer-layout1,
.footer-layout4,
.footer-layout5 {
    --body-color: #ffffff;
}

    .footer-layout1 .social-style,
    .footer-layout4 .social-style,
    .footer-layout5 .social-style {
        margin-top: 24px;
    }

    .footer-layout1 .form-group,
    .footer-layout4 .form-group,
    .footer-layout5 .form-group {
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid var(--theme-color);
        border-radius: 10px;
    }

        .footer-layout1 .form-group .form-control,
        .footer-layout4 .form-group .form-control,
        .footer-layout5 .form-group .form-control {
            border: none;
            margin: 5px;
            color: var(--white-color);
            padding-right: 15px;
            background-color: transparent;
        }

        .footer-layout1 .form-group .vs-btn,
        .footer-layout4 .form-group .vs-btn,
        .footer-layout5 .form-group .vs-btn {
            margin: 5px;
            overflow: unset;
            display: inline-block;
        }

    .footer-layout1 .footer-widget.widget_nav_menu,
    .footer-layout4 .footer-widget.widget_nav_menu,
    .footer-layout5 .footer-widget.widget_nav_menu {
        margin-bottom: 0px;
    }

.footer-insta-image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.social-style a {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    border-radius: 50%;
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-color);
}

    .social-style a:hover {
        background-color: var(--theme-color);
        border-color: var(--theme-color);
    }

    .social-style a:last-child {
        margin-right: 0;
    }

.copyright-wrap {
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-color);
}

.copyright-menu ul {
    margin: 0;
}

.copyright-menu li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

    .copyright-menu li::after {
        content: "";
        width: 1px;
        height: 50%;
        background-color: var(--theme-color);
        position: absolute;
        right: -18px;
        top: 50%;
        transform: translateY(-50%);
    }

    .copyright-menu li:last-child {
        margin-right: 0;
    }

        .copyright-menu li:last-child::after {
            display: none;
        }

.copyright-menu a {
    font-size: 15px;
    font-weight: 600;
    color: var(--white-color);
}

    .copyright-menu a:hover {
        color: #000000;
    }

.copyright-text {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

    .copyright-text a {
        color: #000000;
        font-weight: 700;
    }

        .copyright-text a:hover {
            color: #000000;
            text-decoration: underline;
        }

.cta-style1 {
    position: relative;
    background-color: var(--theme-color);
    padding: 0 60px;
    border-radius: 10px;
}

    .cta-style1 .cta-title {
        color: var(--white-color);
    }

.footer-top {
    position: relative;
}

    .footer-top .shadow-color {
        height: 50%;
        bottom: unset;
        top: 0;
    }

.footer-top2 .shadow-color {
    background-color: var(--smoke-color);
}

.cta-image {
    margin-bottom: -15px;
    margin-top: -20px;
}

.footer-newsletter2 {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 32px;
}

.newsletter-style2 {
    margin-bottom: 30px;
    padding-left: 100px;
    position: relative;
    min-height: 80px;
}

    .newsletter-style2 .newsletter-img {
        position: absolute;
        left: 0;
        top: 0;
    }

    .newsletter-style2 .newsletter-text {
        font-size: 24px;
        font-weight: 600;
        color: var(--white-color);
        margin-bottom: 5px;
        padding-top: 7px;
    }

/* Large devices */
@media (max-width: 1199px) {
    .footer-widget {
        margin-bottom: 60px;
    }

        .footer-widget .widget_title {
            font-size: 26px;
            margin-bottom: 20px;
        }

        .footer-widget.widget_nav_menu .widget_title {
            margin-bottom: 25px;
        }

        .footer-widget.widget_nav_menu a {
            font-size: 16px;
        }
}
/* Medium devices */
@media (max-width: 991px) {
    .widget-area {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .footer-widget .widget_title {
        font-size: 22px;
    }

    .copyright-text {
        font-size: 14px;
    }

    .footer-top::before {
        height: 100px;
    }

    .cta-style1 {
        padding: 30px;
        text-align: center;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .footer-top::before {
        height: 130px;
    }

    .cta-style1 {
        padding: 30px 15px;
    }

    .newsletter-style2 {
        padding-left: 85px;
    }

        .newsletter-style2 .newsletter-img img {
            width: 60px;
        }

        .newsletter-style2 .newsletter-text {
            font-size: 20px;
        }

        .newsletter-style2 a {
            font-size: 14px;
        }
}
/*------------------- 4.4. Breadcumb  -------------------*/
.breadcumb-menu {
    max-width: 100%;
    margin: 0 0 0 0;
    padding: 30px 0;
    list-style-type: none;
}

    .breadcumb-menu li {
        display: inline;
        list-style: none;
        position: relative;
    }

        .breadcumb-menu li:after {
            content: "/";
            position: relative;
            margin-left: 14px;
            margin-right: 10px;
        }

        .breadcumb-menu li:last-child {
            padding-right: 0;
            margin-right: 0;
        }

            .breadcumb-menu li:last-child:after {
                display: none;
            }

    .breadcumb-menu li,
    .breadcumb-menu a,
    .breadcumb-menu span {
        white-space: normal;
        word-break: break-word;
        font-weight: 400;
        font-size: 18px;
        color: var(--white-color);
    }

        .breadcumb-menu li > i,
        .breadcumb-menu a > i,
        .breadcumb-menu span > i {
            margin-right: 10px;
        }

        .breadcumb-menu a:hover {
            color: var(--theme-color);
        }

.breadcumb-title {
    font-size: 40px;
    color: var(--white-color);
    margin: 0 0 -5px 0;
    font-weight: 600;
}

.breadcumb-wrapper {
    padding-top: 100px;
    padding-bottom: 80px;
    text-align: center;
    background-color: var(--title-color);
    /* Medium devices */
}

@media (max-width: 991px) {
    .breadcumb-wrapper {
        padding-top: 45px;
        padding-bottom: 20px;
    }
}

/* Large devices */
@media (max-width: 1199px) {
    .breadcumb-title {
        font-size: 48px;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .breadcumb-title {
        font-size: 40px;
        margin: -0.15em 0 -0.4em 0;
    }

    .chairman-img::before {
        min-width: 331px !important;
        min-height: 450px !important;
        top: 68%;
        left: 53% !important;
    }

    .about-layout .img-box3::before {
        min-width: 360px !important;
        min-height: 600px !important;
        left: 50% !important;
    }

    .bottom-text {
        text-align: left;
        margin-left: 0% !important;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .breadcumb-title {
        font-size: 25px;
        line-height: 30px;
    }

    .breadcumb-menu li,
    .breadcumb-menu a,
    .breadcumb-menu span {
        font-size: 14px;
    }

        .breadcumb-menu li:after {
            margin-left: 11px;
            margin-right: 9px;
        }
}
/*------------------- 4.5. Pagination  -------------------*/
.vs-pagination {
    text-align: center;
    margin-bottom: 30px;
}

    .vs-pagination ul {
        margin: 0;
        padding: 0;
    }

    .vs-pagination li {
        display: inline-block;
        margin: 0 3px;
        list-style-type: none;
    }

        .vs-pagination li:last-child {
            margin-right: 0;
        }

        .vs-pagination li:first-child {
            margin-left: 0;
        }

    .vs-pagination span,
    .vs-pagination a {
        display: inline-block;
        text-align: center;
        position: relative;
        font-family: var(--body-font);
        color: var(--title-color);
        background-color: var(--white-color);
        width: 50px;
        height: 50px;
        line-height: 52px;
        font-weight: 400;
        padding: 0;
        font-size: 16px;
        z-index: 1;
        border-radius: 6px;
        vertical-align: middle;
        border: 1px solid var(--border-color);
    }

        .vs-pagination span.active, .vs-pagination span:hover,
        .vs-pagination a.active,
        .vs-pagination a:hover {
            color: var(--white-color);
            background-color: var(--theme-color);
            box-shadow: none;
        }

.post-pagination {
    border-bottom: 1px solid var(--border-color);
    margin: 0 0 50px 0;
}

    .post-pagination .pagi-icon {
        font-size: 36px;
        color: var(--border-color);
    }

        .post-pagination .pagi-icon:hover {
            color: var(--theme-color);
        }

.post-pagi-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 50px 0px;
}

    .post-pagi-box > img {
        display: inline-block;
        width: 80px;
        height: 80px;
        line-height: 54px;
        text-align: center;
        color: var(--title-color);
        overflow: hidden;
        background-color: var(--smoke-color);
        border-radius: 10px;
    }

        .post-pagi-box > img:hover {
            background-color: var(--theme-color);
            color: var(--white-color);
        }

    .post-pagi-box .pagi-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--title-color);
        margin: 4.5px 0 0 0;
        max-width: 250px;
        flex: 1;
    }

        .post-pagi-box .pagi-title:hover {
            color: var(--theme-color);
        }

    .post-pagi-box.next {
        flex-direction: row-reverse;
        text-align: right;
    }

/* Medium Large devices */
@media (max-width: 1399px) {
    .post-pagination {
        margin: 0px 0 40px;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .vs-pagination span,
    .vs-pagination a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        padding: 0 10px;
        vertical-align: middle;
    }

        .vs-pagination span i,
        .vs-pagination a i {
            vertical-align: middle;
        }

    .post-pagi-box {
        display: block;
        padding: 30px 20px 20px;
    }

        .post-pagi-box > a {
            margin-bottom: 10px;
        }
}
/*------------------- 4.6. Blog  -------------------*/
.vs-blockquote {
    display: block;
    position: relative;
    overflow: hidden;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--title-color);
    background-color: var(--quote-bg, #f0f4f5);
    border-left: 4px solid var(--theme-color);
    padding: 43px 50px 42px 35px;
    margin: 35px 0;
}

    .vs-blockquote p {
        font-family: inherit;
        margin-bottom: 0 !important;
        line-height: 1.5;
        color: inherit;
        width: 100%;
        position: relative;
        z-index: 3;
        font-style: italic;
    }

    .vs-blockquote:before {
        content: "\f10e";
        font-family: var(--icon-font);
        font-size: 6.5rem;
        font-weight: 900;
        line-height: 1;
        color: var(--border-color);
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }

    .vs-blockquote p {
        margin-bottom: 0;
    }

        .vs-blockquote p a {
            color: inherit;
        }

    .vs-blockquote cite {
        display: inline-block;
        font-size: 20px;
        position: relative;
        padding-left: 45px;
        line-height: 1;
        font-weight: 600;
        margin-top: 22px;
        font-style: normal;
        color: var(--title-color);
    }

        .vs-blockquote cite:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 8px;
            width: 30px;
            height: 2px;
            border-top: 2px solid var(--theme-color);
        }

.vs-quote {
    background-color: var(--theme-color);
    color: var(--white-color);
    font-weight: 700;
    line-height: 36px;
    font-size: 22px;
    padding: 50px 60px 49px 150px;
    border-radius: 5px;
}

    .vs-quote:before {
        background-color: var(--theme-color2);
        height: 100%;
        right: auto;
        left: 10px;
        top: 0;
        bottom: 0;
        width: 115px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        content: "\f10d";
        color: var(--white-color);
    }

    .vs-quote p {
        font-style: normal;
    }

.blog-meta span,
.blog-meta a {
    display: inline-block;
    margin-right: 18px;
    font-size: 16px;
    color: var(--title-color);
}

    .blog-meta span i,
    .blog-meta a i {
        margin-right: 4px;
    }

    .blog-meta span:last-child,
    .blog-meta a:last-child {
        margin-right: 0;
    }

    .blog-meta a:hover {
        color: var(--theme-color);
    }

.blog-category a {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 12px 21px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: var(--white-color);
    background-color: var(--theme-color2);
    display: inline-block;
}

    .blog-category a:hover {
        background-color: var(--theme-color);
        color: var(--white-color);
    }

.blog-category {
    margin-bottom: -10px;
    margin-right: -10px;
}

.blog-title a {
    color: inherit;
}

    .blog-title a:hover {
        color: var(--theme-color);
    }

.vs-blog {
    margin-bottom: 30px;
}

.vs-blog-details .blog-single {
    /*border: none;*/
    box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
}

    .vs-blog-details .blog-single .blog-content {
        margin-top: 25px;
    }

    .vs-blog-details .blog-single .blog-title {
        margin-bottom: 22px;
    }

.vs-blog-details .blog-meta {
    margin-bottom: 18px;
}

    .vs-blog-details .blog-meta span,
    .vs-blog-details .blog-meta a {
        margin-bottom: 10px;
    }

        .vs-blog-details .blog-meta span i,
        .vs-blog-details .blog-meta a i {
            color: var(--theme-color);
            margin-right: 10px;
        }

.vs-blog-details .blog-inner-img {
    margin-bottom: 20px;
}

    .vs-blog-details .blog-inner-img img {
        border-radius: 10px;
    }

.blog-author {
    display: flex;
    align-items: center;
    background-color: var(--theme-color);
    --body-color: #fff;
    --title-color: #fff;
    padding: 40px;
    margin: 50px 0;
}

    .blog-author .media-img {
        width: 160px;
        height: 160px;
        margin-right: 25px;
        border-radius: 50%;
    }

        .blog-author .media-img img {
            border-radius: inherit;
        }

    .blog-author .author-name {
        margin-bottom: 10px;
        margin-right: 25px;
        display: inline-block;
        color: var(--white-color);
    }

    .blog-author .author-links {
        display: inline-block;
    }

        .blog-author .author-links ul {
            margin: 0;
            padding: 0;
            list-style-type: none;
        }

        .blog-author .author-links li {
            display: inline-block;
        }

            .blog-author .author-links li:not(:first-child):before {
                content: "";
                width: 1px;
                height: 15px;
                background-color: var(--white-color);
                display: inline-block;
                vertical-align: middle;
                margin: 0 15px 0 10px;
                top: -1px;
                position: relative;
                opacity: 0.5;
            }

        .blog-author .author-links a {
            display: inline-block;
            color: var(--white-color);
            font-size: 16px;
        }

            .blog-author .author-links a:hover {
                color: var(--theme-color);
            }

.blog-inner-title {
    margin: -0.04em 0 40px 0;
    width: max-content;
    line-height: 1;
    font-size: 36px;
    font-weight: 700;
}

.blog-inner-author {
    --theme-color: #ffffff;
    padding: 28px 20px 20px 20px;
    display: inline-block;
    border-radius: 0px 10px 10px 0px;
    background-color: rgba(28, 28, 28, 0.8);
    padding-left: 100px;
    min-height: 100px;
}

    .blog-inner-author img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--smoke-color);
    }

    .blog-inner-author .author-name {
        display: block;
        font-size: 20px;
        font-weight: 600;
        color: var(--white-color);
    }

    .blog-inner-author .author-degi,
    .blog-inner-author .blog-date {
        color: var(--theme-color);
        font-size: 14px;
        font-weight: 400;
    }

.share-links-title {
    font-size: 18px;
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: 600;
    margin: 0 15px 0 0;
    display: inline-block;
}

.share-links {
    margin: 50px 0 0px 0;
    padding: 50px 0px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

    .share-links .row {
        align-items: center;
    }

    .share-links .tagcloud {
        display: inline-block;
    }

        .share-links .tagcloud a {
            color: var(--body-color);
            background-color: var(--smoke-color);
            font-weight: 400;
        }

            .share-links .tagcloud a:hover {
                color: var(--white-color);
                background-color: var(--theme-color);
            }

    .share-links .social-links {
        display: inline-block;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .share-links .social-links li {
            display: inline-block;
            margin-right: 4px;
        }

            .share-links .social-links li:last-child {
                margin-right: 0;
            }

        .share-links .social-links a {
            width: 46px;
            height: 46px;
            line-height: 46px;
            font-size: 16px;
            color: var(--body-color);
            text-align: center;
            display: block;
            background-color: var(--smoke-color);
            border-radius: 50%;
        }

            .share-links .social-links a:hover {
                color: var(--white-color);
                background-color: var(--theme-color);
            }

.post-pagi-box img {
    border-radius: 10px;
}

.blog-single {
    margin-bottom: 60px;
    padding: 10px 10px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

    .blog-single .blog-img {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .blog-single .blog-inner-author {
        position: absolute;
        left: 0;
        bottom: 60px;
    }

    .blog-single .blog-content {
        padding: 0;
        position: relative;
    }

    .blog-single .blog-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .blog-single .blog-date {
        color: var(--body-color);
    }

        .blog-single .blog-date i {
            margin-right: 4px;
        }

        .blog-single .blog-date:hover {
            color: #fff;
        }

    .blog-single .blog-bottom {
        margin-top: 40px;
        padding: 40px 0 0 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid var(--border-color);
    }

    .blog-single .blog-meta {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .blog-single .blog-meta li {
            display: inline-block;
            position: relative;
            margin-right: 20px;
        }

            .blog-single .blog-meta li::before {
                content: "";
                width: 1px;
                height: 70%;
                background-color: var(--title-color);
                opacity: 0.5;
                position: absolute;
                left: -14px;
                top: 50%;
                transform: translateY(-50%);
            }

            .blog-single .blog-meta li:first-child::before {
                content: none;
            }

    .blog-single .play-btn {
        position: absolute;
        top: 10%;
        right: 10%;
    }

        .blog-single .play-btn i {
            color: var(--white-color);
        }

.blog-style2 {
    margin-bottom: 30px;
    border-radius: 10px;
    background-color: var(--smoke-color);
    padding: 30px 24px;
}

    .blog-style2 .blog-img {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 40px;
        background-color: var(--smoke-color);
    }

    .blog-style2 .blog-inner-author {
        position: absolute;
        left: 0;
        bottom: 30px;
    }

        .blog-style2 .blog-inner-author .author-name {
            font-size: 16px;
        }

    .blog-style2 .blog-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .blog-style2 .blog-date {
        color: var(--body-color);
    }

        .blog-style2 .blog-date i {
            margin-right: 5px;
        }

        .blog-style2 .blog-date:hover {
            color: var(--theme-color);
        }

    .blog-style2 .blog-bottom {
        padding: 30px 0 0 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid var(--border-color);
    }

    .blog-style2 .vs-btn {
        padding: 16px 20px;
        font-size: 14px;
    }

.blog-style3 {
    border: none;
    box-shadow: 0px 0px 15px rgba(255, 104, 26, 0.15);
    padding: 30px 24px;
    border-radius: 10px;
}

    .blog-style3 .blog-img {
        overflow: hidden;
        border-radius: 10px;
        margin-bottom: 24px;
    }

        .blog-style3 .blog-img img {
            transition: 0.5s ease-in-out;
        }

    .blog-style3 .blog-title {
        font-size: 18px;
        /* margin-bottom: 2px; */
        line-height: 30px;
    }

    .blog-style3 .blog-text {
        margin-bottom: 15px;
    }

    .blog-style3 .vs-btn {
        padding: 16px 20px;
        font-size: 14px;
        margin-left: 4px;
    }

        .blog-style3 .vs-btn i {
            margin-left: 4px;
        }

    .blog-style3 .blog-bottom {
        margin-top: 0;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .blog-style3 .blog-date {
        margin-right: 4px;
    }

        .blog-style3 .blog-date i {
            margin-right: 4px;
        }

    .blog-style3:hover .blog-img img {
        transform: scale(1.1);
    }

.blog-style4 {
    display: flex;
    align-items: center;
}

    .blog-style4 .blog-image {
        position: relative;
        border-radius: 10px;
    }

        .blog-style4 .blog-image img {
            border-radius: 10px;
        }

    .blog-style4 .category-tag a {
        background-color: var(--white-color);
        color: var(--theme-color);
        padding: 18px 44px 16px;
        border-radius: 0 10px 10px 0;
        font-size: 14px;
        font-weight: 700;
        position: absolute;
        left: 0;
        top: 80px;
    }

        .blog-style4 .category-tag a i {
            margin-right: 4px;
        }

    .blog-style4 .blog-content {
        border: 1px solid var(--border-color);
        background-color: var(--white-color);
        position: relative;
        margin-left: -100px;
        padding: 40px;
        max-width: 615px;
        border-radius: 10px;
    }

    .blog-style4 .blog-text {
        font-size: 16px;
        max-width: 475px;
    }

    .blog-style4 .blog-date {
        display: inline-block;
        margin-bottom: 5px;
        font-size: 18px;
        font-weight: 600;
        color: var(--theme-color);
        background-color: unset;
        padding: 0;
    }

        .blog-style4 .blog-date i {
            margin-right: 4px;
        }

    .blog-style4:nth-child(odd) {
        margin: 60px 0 30px 0;
    }

        .blog-style4:nth-child(odd) .blog-image {
            order: 2;
        }

        .blog-style4:nth-child(odd) .category-tag a {
            right: 0;
            left: unset;
            border-radius: 10px 0 0 10px;
        }

        .blog-style4:nth-child(odd) .blog-content {
            margin-right: -100px;
            margin-left: unset;
            z-index: 2;
        }

.blog-wrapper .vs-carousel {
    margin-top: -10px;
}

.blog-wrapper .blog-style3 {
    margin-top: 10px;
}

.blog-wrapper1 .title-area {
    padding-top: 50px;
}

/* Large devices */
@media (max-width: 1199px) {
    .blog-style4 .blog-date {
        font-size: 16px;
    }

    .blog-style4 .blog-title {
        font-size: 20px;
    }

    .share-links-title {
        font-size: 16px;
    }

    .wp-block-tag-cloud a,
    .tagcloud a {
        padding: 10px;
    }

    .share-links .social-links a {
        font-size: 14px;
        width: 36px;
        height: 36px;
        line-height: 36px;
    }

    .blog-single .blog-meta li:last-child {
        display: none;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .blog-style3 {
        padding: 30px 15px;
    }

        .blog-style3 .blog-date {
            font-size: 14px;
        }

        .blog-style3 .vs-btn {
            padding: 12px 16px;
            font-size: 13px;
        }

    .blog-style4 {
        display: block;
    }

        .blog-style4 .blog-content {
            margin: 30px 0 0 0;
            max-width: 100%;
        }

    .blog-wrapper1 .title-area {
        padding-top: 0px;
    }
}

/* Small devices */
@media (max-width: 767px) {
    td, th {
        white-space: nowrap;
    }

    .blog-inner-author {
        min-height: unset;
        padding: 15px 13px 15px 75px;
    }

        .blog-inner-author .author-name {
            font-size: 14px;
        }

        .blog-inner-author .author-degi {
            font-size: 10px;
        }

        .blog-inner-author img {
            width: 50px;
            height: 50px;
            left: 15px;
        }

    .blog-single {
        padding: 6px;
        margin-bottom: 30px;
    }

        .blog-single .blog-title {
            font-size: 18px;
            line-height: 1.6;
        }

        .blog-single .blog-img .blog-date {
            right: 15px;
            top: 15px;
            font-size: 14px;
            padding: 12px 15px;
        }

        .blog-single .blog-inner-author {
            bottom: 0;
        }

        .blog-single .blog-content {
            margin-top: 20px;
        }

        .blog-single .play-btn {
            --icon-size: 60px;
            --icon-font-size: 18px;
        }

        .blog-single .blog-meta li {
            display: none;
        }

            .blog-single .blog-meta li:first-child {
                display: inline-block;
            }

        .blog-single .blog-meta span,
        .blog-single .blog-meta a {
            font-size: 13px;
        }

        .blog-single .vs-btn {
            font-size: 13px;
            padding: 12px 10px;
        }

    .send-button .vs-btn {
        margin-top: 16px;
    }

    #booking .nav-tabs {
        margin-bottom: 0px;
    }

    #nav-tabContent .radioselect, .form-control, .form-select, textarea, input {
        padding-right: 25px !important;
        margin-bottom: 10px;
    }

    .sermons-details-area .button a {
        font-size: 13px !important;
    }

    .itinerary p {
        text-align: justify;
    }

    .modal-header .btn-close {
        right: 7px !important;
        top: -7px !important;
    }

    .gallery-img5 {
        margin-bottom: 10px !important;
    }

    .bg_video {
        max-height: 17vh !important;
    }

    .outer-wrap {
        padding-bottom: 0px !important;
    }

    .bbsd {
        width: 100% !important;
    }

    .booking-form {
        margin-bottom: 30px !important;
    }

        .booking-form .form-group input {
            margin-bottom: 15px;
        }

    .blog-single .blog-bottom {
        margin-top: 0;
        padding-top: 20px;
    }

    .vs-blockquote {
        padding: 24px 20px 24px 24px;
    }

    .blog-style4 {
        display: block;
    }

        .blog-style4 .blog-content {
            padding: 20px 15px;
            margin: 0;
        }

        .blog-style4 .tips-tag {
            padding: 10px 24px 8px;
        }

        .blog-style4 .blog-title a {
            font-size: 24px;
        }

        .blog-style4 .blog-date {
            font-size: 16px;
        }

        .blog-style4 .category-tag a {
            padding: 10px 20px 8px;
        }

    .blog-style2 .blog-img {
        margin-bottom: 20px;
    }

    .blog-style2 .blog-inner-author {
        bottom: 0;
    }

        .blog-style2 .blog-inner-author .author-name {
            font-size: 14px;
        }

    .blog-style2 .vs-btn {
        padding: 12px 14px;
        font-size: 13px;
    }

    .blog-style2 .blog-date {
        font-size: 14px;
    }

    .blog-style2 .blog-title {
        font-size: 20px;
    }

    .share-links-title {
        margin-bottom: 10px;
    }

    .vs-blog-details .blog-single {
        padding: 10px;
        box-shadow: none;
    }

    .r-btn {
        font-size: 15px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .nav-tabs .nav-link {
        padding: 8px 10px !important;
    }

    .widget_title {
        font-size: 20px;
        text-align: left;
    }

    .blog-style5 .destination-price {
        font-size: 14px !important;
        width: 65% !important;
    }

    .blog-title::after {
        bottom: -12px;
    }

    .breadcumb-menu {
        padding: 20px 0 !important;
    }

    .blog-title::before {
        left: 75px;
    }

    .bottom-text {
        margin-left: 0% !important;
    }

    .right-image {
        margin-top: 0px !important;
    }

    .features-style3 {
        min-height: 215px !important;
    }

    .chairman-img img {
        width: 100% !important;
    }

    .chairman-img::before {
        min-width: 350px !important;
        min-height: 483px !important;
        top: 57% !important;
        left: 50% !important;
        display: none;
    }

    .gallery-set {
        width: 100% !important;
        height: auto;
    }

    .contact-box {
        margin-bottom: 20px;
    }

    .about-layout .img-box3::before {
        min-width: 104% !important;
        min-height: 570px !important;
        display: none;
    }

    .package-layout1 .package-style2 .package-img {
        margin-bottom: 15px;
    }

    .post-pagi-box .pagi-title {
        font-size: 14px;
    }

    .blog-inner-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .share-links {
        padding: 30px 0;
    }
}
/*------------------- 4.6. Comments  -------------------*/
.vs-comments-wrap ul.comment-list,
.vs-comments-wrap .children {
    list-style: none;
    margin: -10px 0 0 0;
    padding: 0;
}

.vs-comments-wrap .children {
    margin-left: 70px;
}

.vs-comments-wrap .vs-post-comment {
    position: relative;
    display: flex;
    padding: 30px 30px;
    margin: 30px 0 30px 0;
    background-color: var(--smoke-color);
}

    .vs-comments-wrap .vs-post-comment p {
        margin-bottom: 0;
    }

.vs-comments-wrap .comment-avater {
    width: 110px;
    height: 110px;
    border-radius: 5px;
    margin-right: 25px;
    overflow: hidden;
}

.vs-comments-wrap .comment-content {
    flex: 1;
    position: relative;
}

.vs-comments-wrap .comment-date {
    font-size: 14px;
}

.vs-comments-wrap .commented-on {
    font-size: 14px;
    color: var(--title-color);
}

    .vs-comments-wrap .commented-on i {
        margin-right: 4px;
        color: var(--theme-color);
    }

.vs-comments-wrap .name {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

.vs-comments-wrap .reply_and_edit {
    position: absolute;
    right: 0;
    top: 0;
}

.vs-comments-wrap .replay-btn {
    font-weight: 700;
    margin-left: 4px;
    background-color: #fff;
    border-radius: 25px;
    padding: 6px 12px;
    font-size: 14px;
}

    .vs-comments-wrap .replay-btn i {
        font-size: 12px;
        margin-left: 2px;
    }

.vs-comment-form {
    margin-top: 58px;
}

    .vs-comment-form .form-group {
        border: none;
    }

    .vs-comment-form .form-control {
        background-color: var(--smoke-color);
        color: var(--title-color);
    }

        .vs-comment-form .form-control::placeholder {
            color: var(--title-color);
        }

    .vs-comment-form .custom-checkbox {
        margin-bottom: 30px;
        margin-top: 30px;
    }

        .vs-comment-form .custom-checkbox label {
            font-weight: 400;
        }

    .vs-comment-form .notice {
        margin-top: 0;
    }

/* Small devices */
@media (max-width: 767px) {
    .vs-comments-wrap .vs-post-comment {
        padding: 20px 15px;
        display: block;
    }

    .vs-comments-wrap .comment-content {
        margin-top: 20px;
    }

    .vs-comments-wrap .reply_and_edit {
        position: relative;
        margin-top: 10px;
    }

    .vs-comments-wrap .children {
        margin-left: 0;
    }

    .vs-comment-form {
        margin-top: 30px;
    }
}
/*------------------- 4.8. Hero Area  -------------------*/
.hero-mask {
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-subtitle {
    color: var(--theme-color);
    font-size: 24px;
    font-weight: 700;
    font-family: var(--body-font);
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    font-family: var(--body-font);
}

.hero-text {
    max-width: 521px;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--body-font);
}

.hero-layout,
.hero-layout1,
.hero-layout2,
.hero-layout4 {
    position: relative;
}

    .hero-layout .form-group > i,
    .hero-layout1 .form-group > i,
    .hero-layout2 .form-group > i,
    .hero-layout4 .form-group > i {
        right: unset;
        left: 20px;
        top: 23px;
        color: var(--body-color);
    }

    .hero-layout .form-group select,
    .hero-layout .form-group input,
    .hero-layout1 .form-group select,
    .hero-layout1 .form-group input,
    .hero-layout2 .form-group select,
    .hero-layout2 .form-group input,
    .hero-layout4 .form-group select,
    .hero-layout4 .form-group input {
        padding-left: 45px;
    }

    .hero-layout .form-group > i,
    .hero-layout2 .form-group > i,
    .hero-layout4 .form-group > i {
        top: 17px;
    }

    .hero-layout .hero-bottom .radioselect,
    .hero-layout .hero-bottom .form-control,
    .hero-layout .hero-bottom .form-select,
    .hero-layout .hero-bottom textarea,
    .hero-layout .hero-bottom input,
    .hero-layout2 .hero-bottom .radioselect,
    .hero-layout2 .hero-bottom .form-control,
    .hero-layout2 .hero-bottom .form-select,
    .hero-layout2 .hero-bottom textarea,
    .hero-layout2 .hero-bottom input,
    .hero-layout4 .hero-bottom .radioselect,
    .hero-layout4 .hero-bottom .form-control,
    .hero-layout4 .hero-bottom .form-select,
    .hero-layout4 .hero-bottom textarea,
    .hero-layout4 .hero-bottom input {
        height: 47px;
    }

.hero-layout {
    position: relative;
}

    .hero-layout .hero-img {
        position: relative;
    }

        .hero-layout .hero-img img {
            border-radius: 340px;
            background-color: var(--white-color);
            border: 20px solid var(--white-color);
        }

        .hero-layout .hero-img .img2 {
            width: 65%;
            position: absolute;
            top: 60%;
            right: -25%;
            transform: translateY(-50%);
        }

    .hero-layout .hero-bottom {
        margin-bottom: -150px;
        margin-top: 100px;
    }

        .hero-layout .hero-bottom .radioselect,
        .hero-layout .hero-bottom .form-control,
        .hero-layout .hero-bottom .form-select,
        .hero-layout .hero-bottom textarea,
        .hero-layout .hero-bottom input {
            height: 47px;
        }

    .hero-layout .hero-form {
        background-color: var(--white-color);
        padding: 30px 30px 0px;
        border-radius: 15px;
        position: relative;
        z-index: 1;
        box-shadow: 0px 4px 15px rgba(255, 104, 26, 0.1);
    }

        .hero-layout .hero-form .vs-btn {
            width: 100%;
        }

    .hero-layout .slide-count {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        z-index: 2;
    }

        .hero-layout .slide-count .tab-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.5s ease-in-out;
            background-color: var(--white-color);
            border: none;
            margin-bottom: 20px;
            color: var(--theme-color);
            position: relative;
            font-size: 20px;
            font-weight: 800;
            font-family: var(--body-font);
        }

            .hero-layout .slide-count .tab-btn:last-child {
                margin-bottom: 0;
            }

            .hero-layout .slide-count .tab-btn:hover {
                background-color: var(--theme-color);
                color: var(--white-color);
            }

        .hero-layout .slide-count .active {
            background-color: var(--theme-color);
            color: var(--white-color);
        }

        .hero-layout .slide-count::before {
            content: "";
            width: 4px;
            height: 90%;
            background-color: var(--theme-color);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

.hero-layout1 {
    margin-top: -100px;
}

    .hero-layout1 .hero-mask {
        padding-top: 200px;
        position: relative;
    }

    .hero-layout1 .hero-title,
    .hero-layout1 .hero-text {
        color: var(--white-color);
    }

    .hero-layout1 .icon-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%);
    }

        .hero-layout1 .icon-btn:first-child {
            left: 12%;
        }

        .hero-layout1 .icon-btn:last-child {
            left: unset;
            right: 12%;
        }

.hero-form2 {
    padding: 60px 40px;
    max-width: 490px;
    border-radius: 15px;
    position: relative;
    background-color: var(--white-color);
    margin-left: auto;
}

    .hero-form2 .h3 {
        margin-bottom: 5px;
    }

    .hero-form2 .shape-mockup {
        position: absolute;
        right: 0;
        bottom: 0;
    }

.hero-layout2 {
    position: relative;
}

    .hero-layout2 .hero-mask {
        padding-bottom: 160px;
    }

    .hero-layout2 .hero-title,
    .hero-layout2 .hero-text {
        color: var(--white-color);
    }

    .hero-layout2 .hero-img .shape-mokup {
        width: 40%;
        position: absolute;
        right: -9.5%;
        bottom: 0%;
        transform: rotateZ(45deg);
        z-index: 0;
    }

    .hero-layout2 .hero-img .img1 {
        position: relative;
        z-index: 1;
    }

    .hero-layout2 .hero-bottom {
        margin-top: -65px;
    }

    .hero-layout2 .hero-form {
        background-color: var(--white-color);
        padding: 30px 30px 0px;
        border-radius: 15px;
        position: relative;
        box-shadow: 0px 4px 15px rgba(255, 104, 26, 0.1);
    }

        .hero-layout2 .hero-form .vs-btn {
            width: 100%;
        }

    .hero-layout2 .icon-btn {
        display: block;
        margin: 0;
        position: absolute;
        left: 12%;
        top: 38.5%;
        transform: translateY(-50%);
    }

        .hero-layout2 .icon-btn:last-child {
            top: 50%;
        }

@media (min-width: 1920px) {
    .hero-layout2 .hero-img .shape-mokup {
        right: -4.5%;
        transform: rotateZ(23deg);
        height: 65%;
    }
}

@media (min-width: 1500px) and (max-width: 1700px) {
    .hero-layout2 .icon-btn {
        left: 3%;
    }

    .hero-layout .slide-count {
        left: 4%;
    }

    .hero-layout1 .icon-btn:first-child {
        left: 3%;
    }

    .hero-layout1 .icon-btn:last-child {
        right: 3%;
    }

    .hero-title {
        font-size: 64px;
    }
}
/* Extra large devices */
@media (max-width: 1500px) {
    .hero-layout .hero-img .img2 {
        right: 0%;
        width: 50%;
    }

    .hero-layout .hero-img .img1 {
        width: 70%;
    }

    .hero-layout .slide-count {
        margin-top: 60px;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
    }

        .hero-layout .slide-count::before {
            height: 4px;
            width: 90%;
        }

        .hero-layout .slide-count .tab-btn {
            display: inline-block;
            margin-bottom: 0;
            margin-right: 20px;
        }

            .hero-layout .slide-count .tab-btn:last-child {
                margin-right: 0;
            }

    .hero-layout .hero-mask {
        padding-bottom: 80px;
    }

    .hero-layout .hero-bottom {
        margin-top: 70px;
    }

    .hero-layout2 .icon-btn {
        left: 50%;
        top: unset;
        bottom: 150px;
        transform: translateX(-50%) rotate(-90deg);
    }

        .hero-layout2 .icon-btn:first-child {
            left: 45%;
        }

        .hero-layout2 .icon-btn:last-child {
            left: 55%;
            top: unset;
        }

    .hero-layout1 .icon-btn:first-child {
        left: 2%;
    }

    .hero-layout1 .icon-btn:last-child {
        right: 2%;
    }
}
/* Large devices */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 46px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-layout2 .hero-content {
        text-align: start;
    }

    .hero-layout2 .hero-mask {
        padding-bottom: 170px;
    }

    .hero-layout .hero-img .img2 {
        right: -5%;
    }

    .hero-layout .slide-count {
        margin-top: 60px;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
    }

        .hero-layout .slide-count::before {
            height: 4px;
            width: 90%;
        }

        .hero-layout .slide-count .tab-btn {
            display: inline-block;
            margin-bottom: 0;
            margin-right: 20px;
        }

            .hero-layout .slide-count .tab-btn:last-child {
                margin-right: 0;
            }

    .hero-layout .hero-bottom {
        margin-top: 50px;
    }

    .hero-form2 {
        margin-top: 30px;
        max-width: 100%;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-layout .hero-img {
        margin-top: 30px;
    }

        .hero-layout .hero-img .img1 {
            width: 60%;
        }

        .hero-layout .hero-img .img2 {
            width: 50%;
            top: 50%;
            right: 0;
        }

    .hero-layout .hero-bottom {
        margin-bottom: 0;
    }

    .hero-layout .hero-form {
        padding: 20px 15px;
    }

    .hero-layout2 .hero-img {
        text-align: center;
    }

    .hero-layout2 .icon-btn {
        bottom: 225px;
    }

    .hero-layout1 .hero-mask {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .hero-layout1 .icon-btn {
        top: unset;
        bottom: 40px;
        transform: translateY(unset);
    }

        .hero-layout1 .icon-btn:first-child {
            left: 45%;
            transform: translateX(-50%);
        }

        .hero-layout1 .icon-btn:last-child {
            right: unset;
            left: 55%;
            transform: translateX(-50%);
        }
}
/* Small devices */
@media (max-width: 767px) {
    .hero-subtitle {
        font-size: 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-layout .hero-mask {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-layout .hero-img img {
        border: 5px solid var(--white-color);
    }

    .hero-layout .slide-count .tab-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-layout1 {
        margin-top: 0;
    }

        .hero-layout1 .hero-mask {
            padding-top: 80px;
            padding-bottom: 150px;
        }

        .hero-layout1 .hero-form2 {
            margin-top: 30px;
            padding: 20px 15px;
        }

        .hero-layout1 .icon-btn:first-child {
            left: 45%;
        }

        .hero-layout1 .icon-btn:last-child {
            left: 55%;
        }

    .hero-layout2 .icon-btn:first-child {
        left: 40%;
    }

    .hero-layout2 .icon-btn:last-child {
        left: 55%;
    }
}
/* Extra small devices */
@media (max-width: 575px) {
    .hero-layout2 .icon-btn {
        bottom: 350px;
    }

        .hero-layout2 .icon-btn:first-child {
            left: 36%;
        }

        .hero-layout2 .icon-btn:last-child {
            left: 60%;
        }

    .hero-layout1 .icon-btn:first-child {
        left: 36%;
    }

    .hero-layout1 .icon-btn:last-child {
        left: 60%;
    }
}
/*------------------- 4.7. Simple Sections  -------------------*/
.social-box {
    padding: 80px 100px;
    position: relative;
    z-index: 1;
}

    .social-box:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 9999px;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.07);
        z-index: -1;
    }

.social-box__title {
    color: var(--white-color);
    margin: -0.2em 0 10px 0;
    font-size: 34px;
}

.social-box a,
.info-social a {
    display: inline-block;
    color: var(--theme-color);
    width: 50px;
    height: 50px;
    line-height: 52px;
    text-align: center;
    border: 1px solid var(--border-color);
    font-size: 18px;
    margin-right: 5px;
    border-radius: 50%;
}

    .social-box a:last-child,
    .info-social a:last-child {
        margin-right: 0;
    }

    .social-box a:hover,
    .info-social a:hover {
        background-color: var(--theme-color);
        color: var(--white-color);
        border-color: transparent;
    }

.award-wrap-title {
    background-color: var(--theme-color);
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 18px;
    line-height: 1;
    margin: 0 auto -40px auto;
    max-width: 850px;
    text-align: center;
    padding: 31px 30px;
    position: relative;
    z-index: 1;
}

.award-wrap1 {
    background-color: #F7F7F7;
    padding: 90px 50px 20px 50px;
    margin-bottom: 60px;
}

    .award-wrap1:last-child {
        margin-bottom: 30px;
    }

.award-style1 {
    background-color: var(--white-color);
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}

    .award-style1 .award-img {
        min-height: 175px;
        line-height: 175px;
        text-align: center;
        margin-bottom: 20px;
    }

        .award-style1 .award-img img {
            max-width: 100%;
            max-height: 100%;
        }

    .award-style1 .award-title {
        margin-bottom: 10px;
    }

    .award-style1 .award-text {
        max-width: 250px;
        margin: 0 auto;
    }

/* Medium Large devices */
@media (max-width: 1399px) {
    .social-box {
        padding: 60px 50px;
    }
}
/* Large devices */
@media (max-width: 1199px) {
    .social-box {
        padding: 40px 40px;
    }

    .social-box__title {
        font-size: 26px;
    }

    .award-wrap1 {
        padding: 80px 20px 10px 20px;
    }

    .award-wrap-title {
        max-width: 740px;
    }

    .award-style1 {
        padding: 30px 20px 30px 20px;
    }

        .award-style1 .award-text {
            font-size: 14px;
        }

        .award-style1 .award-img {
            min-height: 100px;
            line-height: 100px;
        }
}
/* Medium devices */
@media (max-width: 991px) {
    .social-box::before {
        width: 100%;
    }

    .award-wrap-title {
        max-width: 520px;
        padding: 21px 20px;
        margin-bottom: -30px;
    }

    .award-wrap1 {
        padding: 70px 20px 10px 20px;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .social-box {
        padding: 40px 20px;
    }

        .info-social a,
        .social-box a {
            width: 50px;
            height: 50px;
            line-height: 52px;
            font-size: 16px;
        }
}
/*------------------- 4.8. Error  -------------------*/
.error-content {
    max-width: 744px;
    margin-left: auto;
    margin-right: auto;
}

.error-img {
    margin-top: 60px;
}

.error-title {
    font-size: 48px;
    line-height: 1;
    margin: 0 0 18px 0;
}

.error-text {
    margin: 0 0 30px 0;
    max-width: 596px;
    margin-left: auto;
    margin-right: auto;
}

.vs-error-wrapper {
    background-color: #fafafa;
    padding: calc(var(--section-space) + 54px) 0 var(--section-space) 0;
}

/* Large devices */
@media (max-width: 1199px) {
    .vs-error-wrapper {
        padding: var(--section-space) 0 var(--section-space) 0;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .error-title {
        font-size: 48px;
    }

    .vs-error-wrapper {
        padding: var(--section-space-mobile) 0 var(--section-space-mobile) 0;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .error-title {
        font-size: 36px;
    }

    .text-theme {
        font-size: 20px;
    }

    .search-inline input {
        padding-left: 30px;
    }
}
/*------------------- 4.9. Packages  -------------------*/
.package-review i {
    color: var(--theme-color2);
    font-size: 14px;
}

.package-meta a {
    margin-right: 20px;
    position: relative;
}

    .package-meta a i {
        margin-right: 4px;
    }

    .package-meta a::before {
        content: "";
        width: 1px;
        height: 70%;
        opacity: 0.7;
        background-color: var(--body-color);
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
    }

    .package-meta a:last-child {
        margin-right: 0;
    }

        .package-meta a:last-child::before {
            display: none;
        }

.package-price {
    font-size: 20px;
    font-weight: 600;
    transition: 0.5s;
}

.package-style1,
.package-style3 {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all ease 0.4s;
    box-shadow: rgb(188 0 0 / 14%) -5px 2px 12px;
}

    .package-style1 .package-img,
    .package-style3 .package-img {
        overflow: hidden;
    }

        .package-style1 .package-img img,
        .package-style3 .package-img img {
            transition: 0.5s;
        }

    .package-style1 .package-content,
    .package-style3 .package-content {
        padding: 5px 10px 5px;
    }

    .package-style1 .package-title,
    .package-style3 .package-title {
        font-size: 18px;
        font-weight: 600;
        margin: 3px 0;
    }

        .package-style1 .package-title a,
        .package-style3 .package-title a {
            color: var(--body-color);
        }

            .package-style1 .package-title a:hover,
            .package-style3 .package-title a:hover {
                color: var(--theme-color);
            }

    .package-style1 .package-text,
    .package-style3 .package-text {
        margin-bottom: 10px;
    }

    .package-style1 .package-meta,
    .package-style3 .package-meta {
        border-top: 1px solid var(--border-color);
        padding-top: 12px;
    }

    .package-style1 .package-footer,
    .package-style3 .package-footer {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        margin-top: 15px;
    }

    .package-style1 .vs-btn,
    .package-style3 .vs-btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    .package-style1:hover,
    .package-style3:hover {
        box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
        transition: all ease 0.4s;
    }

        .package-style1:hover .package-img img,
        .package-style3:hover .package-img img {
            transform: scale(1.1);
        }

        .package-style1:hover .package-price,
        .package-style3:hover .package-price {
            color: var(--theme-color);
        }

.package-review2 i {
    color: var(--theme-color);
}

/*------------------- 4.10. Cities  -------------------*/
.gallery-image {
    border-radius: 10px;
    margin-bottom: 30px;
}

.gallery-video {
    position: relative;
    margin-bottom: 30px;
}

    .gallery-video img {
        border-radius: 10px;
    }

    .gallery-video .gallery-btn {
        padding: 10px 20px;
        border-radius: 35px;
        box-shadow: 0px 0px 15px 0px rgba(255, 104, 26, 0.15);
        background-color: var(--white-color);
        position: absolute;
        top: 10%;
        left: -55px;
    }

        .gallery-video .gallery-btn span {
            font-size: 20px;
            font-weight: 600;
        }

        .gallery-video .gallery-btn .play-btn {
            margin-left: 20px;
        }

            .gallery-video .gallery-btn .play-btn::before, .gallery-video .gallery-btn .play-btn::after {
                background-color: var(--border-color);
            }

            .gallery-video .gallery-btn .play-btn > i {
                background-color: var(--theme-color);
                color: var(--white-color);
                width: var(--icon-size, 50px);
                height: var(--icon-size, 50px);
                line-height: var(--icon-size, 50px);
                font-size: var(--icon-font-size, 1em);
            }

            .gallery-video .gallery-btn .play-btn:hover::before, .gallery-video .gallery-btn .play-btn:hover::after {
                background-color: var(--theme-color2);
            }

            .gallery-video .gallery-btn .play-btn:hover > i {
                background-color: var(--theme-color2);
            }

.gallery-style1 .title-area {
    max-width: 500px;
    margin-left: 0;
}

.gallery-style-2 {
    max-width: 1012px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
}

    .gallery-style-2 .play-btn {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

        .gallery-style-2 .play-btn > i {
            color: var(--white-color);
            width: var(--icon-size, 110px);
            height: var(--icon-size, 110px);
            line-height: var(--icon-size, 110px);
            background-color: rgba(255, 104, 26, 0.8);
        }

        .gallery-style-2 .play-btn:after, .gallery-style-2 .play-btn:before {
            background-color: rgba(255, 104, 26, 0.8);
        }

        .gallery-style-2 .play-btn:hover > i {
            background-color: rgba(55, 212, 217, 0.8);
        }

        .gallery-style-2 .play-btn:hover:after, .gallery-style-2 .play-btn:hover:before {
            background-color: rgba(55, 212, 217, 0.8);
        }

.gallery2 {
    position: relative;
}

    .gallery2 .shadow-color {
        bottom: 0;
    }

.shadow-color {
    width: 100%;
    height: 30%;
    background-color: var(--white-color);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.gallery3 {
    position: relative;
}

    .gallery3::after {
        content: "";
        width: 100%;
        height: 30%;
        background-color: var(--white-color);
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 0;
    }

    .gallery3 .sec-subtitle {
        color: var(--theme-color2);
    }

    .gallery3 .sec-title,
    .gallery3 .sec-text {
        color: var(--white-color);
    }

.gallery-style4 .gallery-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-style4 .title-area {
    margin-bottom: 30px;
}

.gallery-style4 .vs-btn {
    margin-top: 30px;
}

.gallery-style4 .gallery-text {
    --theme-color: #37d4d9;
    max-width: 595px;
    width: 100%;
    background-color: var(--white-color);
    padding: 60px 60px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.gallery-style4 .gallery-img {
    margin-left: -300px;
    margin-right: -100px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

    .gallery-style4 .gallery-img img {
        transition: 0.5s ease-in-out;
    }

    .gallery-style4 .gallery-img:hover img {
        transform: scale(1.1);
    }

.gallery-style4 .play-btn {
    position: absolute;
    top: 50%;
    right: 36%;
    transform: translateY(-50%);
}

    .gallery-style4 .play-btn > i {
        color: var(--white-color);
        width: var(--icon-size, 110px);
        height: var(--icon-size, 110px);
        line-height: var(--icon-size, 110px);
    }

.gallery-style4 .vs-btn.style3 {
    --theme-color: #ff681a;
}

.gallery-img5 {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

    .gallery-img5 .gallery-content {
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.9);
        position: absolute;
        top: 20px;
        right: 20px;
        bottom: 20px;
        left: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transform: rotateY(90deg);
        transform-origin: left top;
        transition: 0.5s ease-in-out;
    }

        .gallery-img5 .gallery-content i {
            font-size: 24px;
            color: #505050;
            transition: 0.5s ease-in-out;
        }

            .gallery-img5 .gallery-content i:hover {
                color: var(--theme-color);
            }

    .gallery-img5 img {
        transition: 0.5s ease-in-out;
    }

    .gallery-img5:hover img {
        transform: scale(1.1);
    }

    .gallery-img5:hover .gallery-content {
        transform: rotateY(0deg);
    }

.gallery-mesonary .gallery-img5 {
    margin-bottom: 0;
}

/* Extra large devices */
@media (max-width: 1500px) {
    .gallery-style4 .gallery-img {
        margin-right: 0;
    }

    .gallery-style4 .play-btn {
        right: 25%;
    }
}
/* Large devices */
@media (max-width: 1199px) {
    .gallery-video .gallery-btn {
        left: 0;
        border-radius: 0px 35px 35px 0;
    }

    .gallery-style4 .gallery-text {
        padding: 40px;
        max-width: 460px;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .gallery-style4 .gallery-content {
        display: block;
    }

    .gallery-style4 .gallery-img {
        margin-left: 0;
        margin-top: 30px;
    }

    .gallery-style4 .gallery-text {
        padding: 60px 30px;
        max-width: 100%;
        text-align: center;
    }

    .gallery-style4 .play-btn {
        left: 50%;
        right: unset;
        transform: translate(-50%, -50%);
    }

        .gallery-style4 .play-btn > i {
            width: 120px;
            height: 120px;
            line-height: 120px;
            font-size: 40px;
        }

    .gallery-style1 .title-area {
        max-width: 100%;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .gallery-style4 .play-btn {
        left: 50%;
        right: unset;
        transform: translate(-50%, -50%);
    }

        .gallery-style4 .play-btn > i {
            width: 80px;
            height: 80px;
            line-height: 80px;
            font-size: 24px;
        }

    .gallery-style4 .gallery-text {
        padding: 30px 15px;
    }
}
/*------------------- 4.11. Features  -------------------*/
.features-style1,
.features-style3 {
    overflow: hidden;
    text-align: center;
    position: relative;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px 30px 10px;
    transition: 0.5s ease-in-out;
    border: 1px solid var(--border-color);
    background-color: var(--theme-color);
}

    .features-style1 .features-bg,
    .features-style3 .features-bg {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
    }

    .features-style1 .features-image,
    .features-style3 .features-image {
        position: relative;
        z-index: 1;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        transition: 0.5s ease-in-out;
        background-color: var(--white-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }

        .features-style1 .features-image img,
        .features-style3 .features-image img {
            width: 40px;
        }

        .features-style1 .features-image::before, .features-style1 .features-image::after,
        .features-style3 .features-image::before,
        .features-style3 .features-image::after {
            content: "";
            width: 20px;
            height: 20px;
            border-radius: 50%;
            transition: 0.5s ease-in-out;
            background-color: var(--theme-color2);
            position: absolute;
        }

        .features-style1 .features-image::before,
        .features-style3 .features-image::before {
            left: 10px;
            top: 0;
        }

        .features-style1 .features-image::after,
        .features-style3 .features-image::after {
            right: 10px;
            bottom: 0;
        }

    .features-style1 .features-content,
    .features-style3 .features-content {
        z-index: 1;
    }

    .features-style1 .features-title,
    .features-style1 .features-text,
    .features-style3 .features-title,
    .features-style3 .features-text {
        color: var(--white-color);
    }

    .features-style1 .features-title,
    .features-style3 .features-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
        transition: 0.5s ease-in-out;
    }

    .features-style1 .features-text,
    .features-style3 .features-text {
        transition: 0.5s ease-in-out;
    }

    .features-style1:hover,
    .features-style3:hover {
        border-color: var(--theme-color2);
        background-color: var(--theme-color2);
    }

        .features-style1:hover .features-image,
        .features-style3:hover .features-image {
            background-color: var(--white-color);
        }

            .features-style1:hover .features-image::before, .features-style1:hover .features-image::after,
            .features-style3:hover .features-image::before,
            .features-style3:hover .features-image::after {
                background-color: var(--theme-color);
            }

.features-style2 {
    padding: 30px 30px 10px;
    margin-bottom: 30px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: 0.5s ease-in;
    background-color: var(--theme-color);
}

    .features-style2 .features-image {
        position: relative;
        z-index: 1;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        transition: 0.5s ease-in-out;
        background-color: var(--white-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }

        .features-style2 .features-image img {
            width: 40px;
            transition: 0.5s ease-in-out;
        }

    .features-style2 .features-content {
        z-index: 1;
    }

    .features-style2 .features-title,
    .features-style2 .features-text {
        color: var(--white-color);
        transition: 0.5s ease-in-out;
    }

    .features-style2 .features-title {
        font-size: 20px;
        font-weight: 600;
    }

    .features-style2:hover {
        background-color: var(--theme-color2);
    }

        .features-style2:hover .features-image {
            background-color: var(--white-color);
        }

            .features-style2:hover .features-image img {
                transform: rotateY(180deg) scale(1.2);
            }

        .features-style2:hover .features-title,
        .features-style2:hover p {
            color: var(--white-color);
        }

/* Small devices */
@media (max-width: 767px) {
    .features-style1,
    .features-style2 {
        padding-left: 16px;
        padding-right: 16px;
    }
}
/*------------------- 4.12. Offers  -------------------*/
.offer-style1 {
    overflow: hidden;
}

.img-1-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 320px;
}

.img-box2 {
    width: 440px;
    height: 440px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgba(255, 255, 255, 0.8);
}

    .img-box2::before {
        content: "";
        width: 77%;
        height: 77%;
        border-radius: 50%;
        background-color: var(--white-color);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
    }

    .img-box2 .img1 {
        width: 240px;
        height: 240px;
        padding: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--theme-color);
        position: relative;
        z-index: 2;
    }

    .img-box2 .spinner-style1 {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        animation: spin 20s linear infinite;
    }

        .img-box2 .spinner-style1::before, .img-box2 .spinner-style1::after {
            content: "";
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--theme-color2);
            position: absolute;
        }

        .img-box2 .spinner-style1::before {
            left: 0;
            top: 24%;
        }

        .img-box2 .spinner-style1::after {
            right: 0;
            bottom: 24%;
        }

    .img-box2 .img-1-2 {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 320px;
    }

/* Extra large devices */
@media (max-width: 1500px) {
    .img-1-2 {
        display: none;
    }

    .img-box2 {
        width: 400px;
        height: 400px;
    }
}
/* Large devices */
@media (max-width: 1199px) {
    .img-box2 {
        width: 360px;
        height: 360px;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .img-box2 {
        width: 300px;
        height: 300px;
    }

        .img-box2::before {
            width: 75%;
            height: 75%;
        }

        .img-box2 .img1 {
            width: 150px;
            height: 150px;
            padding: 25px;
        }

        .img-box2 .spinner-style1::before, .img-box2 .spinner-style1::after {
            width: 25px;
            height: 25px;
        }
}
/* Medium devices */
@media (max-width: 991px) {
    .img-box2 {
        width: 200px;
        height: 200px;
        margin-left: auto;
        margin-right: auto;
    }

        .img-box2::before {
            width: 75%;
            height: 75%;
        }

        .img-box2 .img1 {
            width: 100px;
            height: 100px;
            padding: 15px;
        }

        .img-box2 .spinner-style1::before, .img-box2 .spinner-style1::after {
            width: 25px;
            height: 25px;
        }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
/*------------------- 4.12. Testimonials  -------------------*/
.testimonial-style1 .title-area .vs-btn {
    margin-top: 10px;
}

.testimonial-style1 .sec-subtitle {
    color: var(--theme-color2);
}

.testimonial-style1 .sec-title,
.testimonial-style1 .sec-text {
    color: var(--white-color);
}

.testimonial-slider2 {
    max-width: 908px;
}

.testimonial-style2 .sec-subtitle {
    color: var(--theme-color2);
}

.testimonial-style2 .sec-title {
    color: var(--white-color);
}

.testi-style2 {
    text-align: center;
}

    .testi-style2 .testi-body {
        background-color: var(--white-color);
        padding: 24px 30px;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .testi-style2 .testi-rating i {
        color: var(--theme-color2);
    }

    .testi-style2 .testi-degi {
        font-size: 14px;
        color: var(--white-color);
    }

    .testi-style2 .testi-name {
        color: var(--white-color);
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .testi-style2 .testi-avater {
        margin-top: 12px;
    }

        .testi-style2 .testi-avater img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
        }

.testi-style1 {
    text-align: center;
    width: 605px;
    height: 605px;
    padding: 0 100px;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    position: relative;
}

    .testi-style1 .testi-shape {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        outline-offset: 15px;
        outline: 1px solid var(--theme-color);
        background-color: var(--theme-color);
        border-radius: 40% 40% 40% 40%/40% 40% 40% 40%;
        transform: rotate(45deg) scale(0.91);
    }

        .testi-style1 .testi-shape img {
            transform: translate(-50%, -50%) rotate(-45deg);
            position: absolute;
            left: 50%;
            top: 50%;
        }

    .testi-style1 .vs-carousel {
        position: relative;
        z-index: 1;
    }

    .testi-style1 .testi-quote {
        margin: 0 auto 24px;
    }

    .testi-style1 .testi-rating {
        margin-bottom: 24px;
    }

        .testi-style1 .testi-rating i {
            color: var(--white-color);
        }

    .testi-style1 .testi-text {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 30px;
        color: var(--white-color);
    }

    .testi-style1 .testi-avater {
        margin-bottom: 15px;
    }

        .testi-style1 .testi-avater img {
            width: 100px;
            height: 100px;
            border-radius: 10px;
        }

    .testi-style1 .testi-name {
        font-size: 24px;
        font-weight: 600;
        color: var(--white-color);
        margin-bottom: 5px;
    }

    .testi-style1 .testi-degi {
        font-size: 14px;
        color: var(--white-color);
    }

    .testi-style1 .testi-avaters img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

    .testi-style1 .testi-avaters .tab-btn {
        position: absolute;
        padding: 0;
        display: inline-block;
        background-color: var(--theme-color);
        max-width: 100px;
        max-height: 100px;
        border-radius: 50%;
        overflow: hidden;
        z-index: 1;
        border: 5px solid var(--theme-color);
    }

        .testi-style1 .testi-avaters .tab-btn:nth-child(1) {
            top: 10%;
            left: 5%;
        }

        .testi-style1 .testi-avaters .tab-btn:nth-child(2) {
            top: 10%;
            right: 5%;
        }

        .testi-style1 .testi-avaters .tab-btn:nth-child(3) {
            bottom: 10%;
            right: 5%;
        }

        .testi-style1 .testi-avaters .tab-btn:nth-child(4) {
            bottom: 10%;
            left: 5%;
        }

        .testi-style1 .testi-avaters .tab-btn:hover {
            background-color: var(--theme-color2);
            border-color: var(--theme-color2);
        }

    .testi-style1 .testi-avaters .active {
        border-color: var(--theme-color2);
        background-color: var(--theme-color2);
    }

/* Large devices */
@media (max-width: 1199px) {
    .testi-style1 {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 1500px) {
    .testi-style1 {
        width: 480px;
        height: 480px;
        padding-left: 50px;
        padding-right: 50px;
    }

        .testi-style1 .testi-avater img {
            width: 80px;
            height: 80px;
        }

        .testi-style1 .testi-text {
            font-size: 18px;
        }

        .testi-style1 .testi-quote {
            width: 50px;
            margin: 0 auto 20px;
        }

        .testi-style1 .testi-avaters .tab-btn {
            width: 80px;
            height: 80px;
        }

            .testi-style1 .testi-avaters .tab-btn img {
                width: 80px;
                height: 80px;
            }
}

@media (max-width: 1399px) {
    .testi-style1 .testi-avater .tab-btn {
        max-width: 90px;
        max-height: 90px;
    }

    .testi-style1 .testi-text {
        margin-bottom: 20px;
    }

    .testi-style1 .testi-rating {
        margin-bottom: 15px;
    }

    .testi-style1 .testi-avater .tab-btn:nth-child(3) {
        top: 0.5%;
        right: 14%;
    }

    .testi-style1 .testi-avater .tab-btn:nth-child(5) {
        top: 30%;
        right: -7%;
    }

    .testi-style1 .testi-text {
        font-size: 18px;
    }

    .testi-style1 .testi-name {
        font-size: 20px;
    }

    .testi-style1 .testi-degi {
        margin: 0 0 10px 0;
    }

    .testi-style1 .testi-shape:after,
    .testi-style1 .testi-shape::before {
        display: none;
    }
}

@media (max-width: 1199px) {
    .testi-style2 .testi-text {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 20px 0;
    }

    .testi-style2 .testi-name {
        font-size: 22px;
        margin: 0 0 4px 0;
    }

    .testi-style2 .testi-degi {
        letter-spacing: 0;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .testi-style1 .testi-shape {
        width: 95%;
        height: 95%;
    }
}

@media (max-width: 767px) {
    .testi-style1 {
        width: 100%;
        height: 100%;
        border-radius: 15px;
        background-color: var(--theme-color);
        padding: 40px 15px 40px 15px;
    }

        .testi-style1 .testi-shape {
            display: none;
        }

        .testi-style1 .testi-quote {
            margin: 0 auto 15px;
        }

            .testi-style1 .testi-quote img {
                max-width: 50px;
            }

        .testi-style1 .testi-text {
            font-size: 16px;
            line-height: 29px;
        }

        .testi-style1 .testi-author {
            font-size: 22px;
        }

        .testi-style1 .testi-avaters {
            max-width: 50px;
            max-height: 50px;
        }

            .testi-style1 .testi-avaters img {
                width: 50px;
                height: 50px;
            }

            .testi-style1 .testi-avaters .tab-btn:nth-child(1) {
                top: 5%;
            }

            .testi-style1 .testi-avaters .tab-btn:nth-child(2) {
                top: 5%;
                right: 2%;
            }

            .testi-style1 .testi-avaters .tab-btn:nth-child(3) {
                bottom: 13%;
                right: 2%;
            }

            .testi-style1 .testi-avaters .tab-btn:nth-child(4) {
                bottom: 13%;
                left: 2%;
            }
}
/*------------------- 4.13. Destinations  -------------------*/
.destination-style1 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

    .destination-style1 img {
        transition: 0.5s ease-in-out;
    }

    .destination-style1 .destination-price {
        font-size: 18px;
        font-weight: 700;
        padding: 5px 43px 10px;
        border-radius: 0 0 10px 10px;
        background-color: var(--white-color);
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.5s ease-in-out;
    }

    .destination-style1 .destination-info {
        transition: 0.5s ease-in-out;
        background-color: rgba(28, 28, 28, 0.8);
        padding: 15px 10px 10px;
        max-width: 360px;
        width: 100%;
        border-radius: 0 10px 10px 0px;
        position: absolute;
        left: 0;
        bottom: 30px;
    }

    .destination-style1 .destination-name {
        margin-bottom: 5px;
    }

        .destination-style1 .destination-name a {
            color: var(--white-color);
        }

    .destination-style1 .destination-text {
        color: var(--white-color);
        margin: 0;
    }

    .destination-style1:hover img {
        transform: scale(1.1);
    }

    .destination-style1:hover .destination-price {
        background-color: var(--theme-color);
        color: var(--white-color);
    }

    .destination-style1:hover .destination-info {
        background-color: var(--theme-color);
    }

.destination-details .ds-title:first-child {
    margin-bottom: 33px;
    margin-top: -10px;
}

.destination-details .ds-img1 {
    border-radius: 10px;
    overflow: hidden;
}

.destination-details .img-2 {
    border-radius: 10px;
    overflow: hidden;
}

.destination-details .ds-text {
    margin-top: 15px;
}

.destination-details .vs-comment-form {
    margin-top: 30px;
}

.destinations-info {
    margin: 60px 0 50px;
    border-radius: 10px;
    background-color: var(--smoke-color);
    padding: 20px 40px 30px;
}

.destination-list {
    margin: 0;
    padding: 0;
}

    .destination-list li {
        list-style: none;
        padding-top: 10px;
        padding-left: 280px;
        position: relative;
    }

        .destination-list li span {
            font-size: 16px;
            font-weight: 400;
            font-family: var(--body-font);
        }

            .destination-list li span:first-child {
                color: var(--title-color);
                font-weight: 600;
                position: absolute;
                left: 0;
            }

/* Large devices */
@media (max-width: 1199px) {
    .destination-style1 .destination-info {
        max-width: 250px;
        padding: 20px 20px 5px;
    }

    .destination-style1 .destination-price {
        padding: 10px 24px;
        font-size: 24px;
    }

    .destination-list li {
        padding-left: 200px;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .destination-style1 .destination-info {
        max-width: 220px;
        padding: 15px 15px 0px;
    }

    .destination-style1 .destination-price {
        padding: 10px 24px;
        font-size: 24px;
    }

    .destinations-info {
        padding: 20px 15px;
    }

    .destination-list li {
        padding-left: unset;
    }

        .destination-list li span:first-child {
            position: unset;
            display: block;
            margin-right: 10px;
        }
}

/*------------------------ak about-------------------------*/
.about-content .title-area {
    margin: 0;
}

.about-content .vs-btn {
    margin-top: 30px;
}

.about-layout .img-box3 {
    text-align: right;
    position: relative;
}


.act-listing {
    list-style: none;
    padding-left: 0px;
}

    .act-listing li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 5px;
        margin-right: 15px;
    }

        .act-listing li::before {
            content: "";
            width: 6px;
            height: 6px;
            outline: 5px solid var(--border-color);
            background-color: var(--theme-color);
            border-radius: 50%;
            position: absolute;
            left: 5px;
            top: 10px;
        }

.about-layout .img-box3 .box1 {
    position: absolute;
    top: 22%;
    left: 80px;
}

.about-layout .img-box3 .img1 {
    border-radius: 40px;
}

.about-layout .img-box3 .bottom-img {
    margin-top: -127px;
    display: flex;
    align-items: baseline;
}

.about-layout .img-box3 .img3 {
    max-width: 100%;
    border-radius: 40px;
    border: none;
    margin-left: 0;
}

.about-layout .img-box3 .media-box1 {
    width: 100px;
    height: 242px;
    background-color: #ff681a;
    text-align: center;
    position: relative;
    border-radius: 0px 50px 50px 50px;
    border: 3px solid var(--white-color);
}

    .about-layout .img-box3 .media-box1 .media-text {
        left: 50%;
        top: 35px;
        position: absolute;
        font-size: 27px;
        color: var(--white-color);
        font-weight: 600;
        transform: translateX(-50%) rotate(-90deg);
        margin-bottom: 0;
        line-height: 113%;
        text-align: left;
    }

    .about-layout .img-box3 .media-box1 .media-info {
        display: block;
        width: 78px;
        height: 78px;
        line-height: 69px;
        background-color: var(--theme-color);
        text-align: center;
        border-radius: 100%;
        color: var(--white-color);
        font-size: 40px;
        font-weight: 600;
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

.outer-wrap .nav-link.active {
    color: #ffffff !important;
    background: #ad8b3a;
    border-color: #00000000;
    border-radius: 0px;
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    /* border: 1px solid #c906062e; */
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 30px;
    margin-right: 4px;
    background-color: none;
    /* background: #00000008; */
}

    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        color: #ffffff;
        background-color: #ad8b3a;
        border-color: #ad8b3a #ad8b3a #fff;
    }

.nav-tabs {
    border-bottom: 0px solid #dee2e600;
    justify-content: center;
}

.blog-style5 .destination-price {
    font-size: 16px;
    font-weight: 700;
    padding: 10px 10px 15px;
    border-radius: 0 0 10px 10px;
    background-color: var(--white-color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s ease-in-out;
    width: 55%;
    text-align: center;
}

.blog-style5 {
    position: relative;
}

.view-all {
    text-align: center;
    margin-bottom: 20px;
}
/*.chairman-message {
    background-image: url('../img/about/slider_1.png');
    padding: 40px 0px 70px;
    margin-top: 45px;
    background-position: center;
    background-size: contain;
}*/
/*-----------------------------------------end------------------*/

/*------------------------chairman message-------------------------*/
.chairman-img {
    text-align: left;
    position: relative;
}

    .chairman-img img {
        border-radius: 12px;
        position: relative;
        width: 350px;
        height: auto;
    }

    .chairman-img::before {
        content: "";
        position: absolute;
        min-width: 385px;
        min-height: 500px;
        top: 60%;
        left: 35%;
        transform: translate(-50%, -50%);
        border: 3px dashed #ffccb1;
        border-radius: 60px 60px 60px 0px;
        background: #ffffff66;
        z-index: -1;
    }

.chairman-message {
    position: relative;
}

    .chairman-message .element {
        bottom: 0px;
        left: 0;
        position: absolute;
        width: 100%;
        min-height: 729px;
        background: linear-gradient(360deg, rgb(229 229 229 / 55%) -7.91%, #ffffff 100%);
        z-index: -2;
    }


@media (min-width: 1199px) {
    .bottom-text {
        text-align: left;
        margin-left: 0%;
    }

    .about-layout .img-box3::before {
        content: "";
        position: absolute;
        min-width: 620px;
        min-height: 812px;
        top: 50%;
        left: 53%;
        transform: translate(-50%, -50%);
        border: 3px dashed #ffccb1;
        border-radius: 60px 60px 60px 0px;
        /* background: #ffffff; */
    }

    .about--layout5 .about-content .element::before {
        content: "";
        position: absolute;
        min-width: 812px;
        min-height: 812px;
        top: 50%;
        left: 42%;
        transform: translate(-50%, -50%);
        border: 3px dashed #ffccb1;
        border-radius: 60px 60px 60px 0px;
        background: #ffffff;
    }
}

@media (min-width: 1399px) {
    .bottom-text {
        text-align: left;
        margin-left: 0%;
    }

    .about-layout .img-box3::before {
        content: "";
        position: absolute;
        min-width: 620px;
        min-height: 812px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 3px dashed #ffccb1;
        border-radius: 60px 60px 60px 0px;
        /* background: #ffffff; */
    }

    .about--layout5 .about-content .element::before {
        content: "";
        position: absolute;
        min-width: 812px;
        min-height: 812px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 3px dashed #ffccb1;
        border-radius: 60px 60px 60px 0px;
        background: #ffffff;
    }
}


.bottom-text h5 {
    font-size: 16px;
    margin-bottom: 5px;
    /* text-align: left; */
}

.bottom-text span {
    margin-bottom: 3px;
    font-size: 22px;
    margin-top: 10px;
}

.bottom-text p {
    margin-bottom: 0px;
    font-style: italic;
}

.right-image {
    position: relative;
}
/*--------------------------end-----------------------------------*/

/*----------------------------mission vision-----------------------*/
.w-800 {
    width: 900px;
}

.blog-title {
    position: relative;
}

    .blog-title::before, .blog-title::after {
        content: "";
        height: 2px;
        border-radius: 50px;
        background-color: var(--theme-color);
        position: absolute;
        bottom: 0;
    }

    .blog-title::after {
        width: 55px;
        left: 20px;
        bottom: -12px;
    }

    .blog-title::before {
        width: 15px;
        left: 0;
        bottom: -12px;
    }

.heritage-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.r-btn {
    display: inline-block;
    background-color: #ad8b3a;
    color: #fff;
    padding: 8px 16px;
    font-size: 16px;
    position: relative;
    font-weight: 500;
    border-radius: 4px;
}

.features-style3 .features-link {
    min-width: 30px;
    min-height: 30px;
    background-color: #ff681a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* float: right;*/
    position: absolute;
    bottom: 12px;
    right: 20px;
}
/*-------------------------------end-------------------------------*/

/*------------------------------------gallery-----------------------*/
table#mytable th {
    color: #fff;
    text-align: left;
    border-bottom: 3px solid #fff;
    padding: 7px 15px;
    font-size: 14px;
    min-height: 70px;
    align-items: center;
    background: #ad8b3a;
}

.vs-btn.style4 i {
    margin-left: 8px;
    font-size: 16px;
}

.features-style3 {
    text-align: left;
    padding: 20px;
    background: var(--white-color);
    border: 1px solid transparent;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    min-height: 237px;
}
/*---------------------------------------end------------------------*/

/*-----------------------------------reward-------------------------*/
.reward-listing {
    padding-left: 35px;
}

    .reward-listing li {
        position: relative;
        padding-left: 5px;
        margin-bottom: 5px;
        list-style: decimal;
    }

.reward-head p {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .nav-tabs {
        /* display: grid; */
        margin-bottom: 20px;
        gap: 8px;
    }
}
/*-----------------------------------end----------------------------*/


/*---------------------------------login--------------------------*/
.pageheadings-block {
    padding: 38px 0px;
    text-align: center;
    /*margin-top: 69px;*/
}

    .pageheadings-block .main-title {
        font-size: 20px;
        padding: 4px;
        MARGIN: 0PX;
        color: white;
        font-weight: 700;
        background: #b50a0a;
        border-radius: 4px;
        /* border-bottom: 5px solid #ffffff; */
    }

.loginform {
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border: 1px, solid, #cbcbcb;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.24);
    -ms-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.24);
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 10%);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.loginavtar {
    background: #ad8b3a !important;
    color: white;
    /* margin: 0px 15px 0px 14px; */
    padding: 7px 0;
    margin-bottom: 10px;
    border-radius: 8px;
}

.tourloginform .form-control {
    margin: 0px 0px 25px 0px;
    display: block;
    font-size: inherit;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border: 1px solid #b7b7b7;
    color: #000000;
    height: 35px;
    /*box-shadow: 0 2px 2px #cdcdcd;*/
    border-radius: 3px;
    padding: 5px 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 0 14px;
}

div#loginform .btn-default {
    color: #fff;
    background-color: #ad8b3a;
    border-color: #ad8b3a;
    box-shadow: none;
    border-radius: 4px;
    font-size: 15px;
}

.short-message {
    font-size: 12px;
    padding-top: 0px;
    text-align: center !important;
    line-height: 17px;
    margin: 30px 0;
}

div#loginform .text-blue {
    color: #d10d0d;
}

.info-container .info-container-header {
    background-color: #b50a0a47;
    padding: 10px 10px 10px 10px;
    text-align: center;
    border-radius: 10px 10px 0px 0px;
    width: 100%;
}

.info-header-p {
    margin: 0px;
    color: black;
}

.info-container .info-container-body {
    background-color: #b50a0a1c;
    float: left;
    padding: 20px;
    height: 300px;
    border-radius: 0px 0px 10px 10px;
}

.info-container-ul {
    list-style: none;
}

.info-container-li {
    width: 100%;
    display: block;
    float: left;
    font-size: 14px;
    padding-bottom: 7px;
    padding-top: 0px;
}

.ico-air-tick {
    background-position: 1px -31px;
}

.icon-ico {
    display: inline-block;
    height: 21px;
    width: 8%;
    float: left;
    color: #f76b38;
    background: url(../img/New-Social-Webcore-Sprite.png);
}

.main-btn {
    width: 100%;
    text-align: center;
    color: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    -webkit-box-shadow: 0px 2px 2px 0px #cdcdcd;
    -moz-box-shadow: 0px 2px 2px 0px #cdcdcd;
    -ms-box-shadow: 0px 2px 2px 0px #cdcdcd;
    box-shadow: 0px 2px 2px 0px #cdcdcd;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    min-height: 40px;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .form-group {
        margin-bottom: 0px !important;
    }

    .short-message {
        margin: 0px 0 20px !important;
    }
}
/*-----------------------------------end--------------------------*/

/*------------------------------------signup---------------------*/
.signup input[type="text"]::-webkit-input-placeholder {
    color: grey;
}

.signup input[type="password"]::-webkit-input-placeholder {
    color: grey;
}

.signup .info-container .info-container-header {
    background-color: #feeab8;
    padding: 10px 10px 10px 10px;
    text-align: center;
    border-radius: 10px 10px 0px 0px;
    width: 100%;
}


.signup .info-container .info-container-body {
    background-color: #fef2d8;
    float: left;
    padding: 20px;
    height: 300px;
    border-radius: 0px 0px 10px 10px;
}

.signup .info-container-ul {
    list-style: none;
}

.signup .info-container-li {
    width: 100%;
    display: block;
    float: left;
    font-size: 14px;
    padding-bottom: 7px;
    padding-top: 0px;
}

.signup .ico-cal {
    background-position: 1px -2px;
}

.signup .icon-ico {
    display: inline-block;
    height: 21px;
    width: 8%;
    float: left;
    color: #f76b38;
    background: url("../img/New-Social-Webcore-Sprite.png");
}

.signup .ico-air-tick {
    background-position: 1px -31px;
}

.signup .ico-note {
    background-position: 1px -63px;
}

.signup .ico-e-cash {
    background-position: 1px -102px;
}

.signup .ico-e-cash-shop {
    background-position: 1px -162px;
}

.signup .ico-sme {
    background-position: 1px -195px;
}

.signup .short-message {
    font-size: 12px;
    padding-top: 0px;
    line-height: 40px;
    margin: 0px !important;
}

.signup .pageheadings-block {
    padding: 0px 0px 0px;
    text-align: center;
}

    .signup .pageheadings-block .main-title {
        font-size: 20px;
        padding: 8px;
        MARGIN: 0PX;
        color: white;
        font-weight: 700;
        background: #b50a0a;
        border-radius: 0px;
        border-bottom: 0px;
    }

    .signup .pageheadings-block .sub-title {
        font-size: 16px;
    }

.signup .text-blue {
    color: #2196F3;
}

.signup .loginform {
    margin: 0px 0px 25px;
    padding: 25px;
    background: #ffffff;
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.24);
    -ms-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 2px 4px 0px rgb(181 10 10);
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
}

.signup .line-p {
    margin: 0px;
    font-family: 'Lato', sans-serif;
    line-height: 1.4;
    margin: 0px 0px 0px 5px;
    color: black;
}

.signup .info-header-p {
    margin: 0px;
    color: black;
}

.signup .line-p {
    float: left;
    width: 90%;
}

.signup .user-profile {
    background: url("img/main-sprite.png") no-repeat center -265px;
}

.signup .tourloginform .form-control {
    height: 44px;
    padding: 0 30px 0 25px;
    padding-right: 45px;
    border-radius: 10px;
    color: var(--body-color);
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    font-size: 14px;
    width: 100%;
}


.signup label {
    display: inline-block;
    margin-bottom: .5rem;
    margin: 12px 0px 20px 11px;
    color: #000000;
    font-size: 17px;
    font-weight: 500;
}

.signup .main-btn {
    width: 100%;
    text-align: center;
    color: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    -webkit-box-shadow: 0px 2px 2px 0px #cdcdcd;
    -moz-box-shadow: 0px 2px 2px 0px #cdcdcd;
    -ms-box-shadow: 0px 2px 2px 0px #cdcdcd;
    box-shadow: 0px 2px 2px 0px #cdcdcd;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    min-height: 40px;
    text-transform: capitalize;
}




.signup .DivForgot {
    /*background: rgba(0, 151, 19, 0.3);*/
    display: none;
    position: absolute;
    top: 30%;
    width: 100%;
}

.signup .modal-dialog {
    width: 100%;
    margin: 30px auto;
    right: 15px;
}
/*.BackGround {
            filter: alpha(opacity=50);
            background: rgba(0, 151, 19, 0.3);
        }*/


@media only screen and (max-width:500px) {

    .signup .ct {
        max-width: 100%;
        margin: 105px auto;
    }
}

.signup .t-check-in, .signup .t-check-out {
    border-width: 1px;
    border-style: solid;
    width: 100%;
    box-sizing: border-box;
}

.signup .t-dates {
    padding: 2px 15px;
    height: 32px;
    box-sizing: border-box;
}


.signup .t-check-in, .signup .t-check-out {
    border-color: #ededed00;
    border-bottom: 1px solid silver;
}

.signup .left11 {
    flex-basis: 100%;
    flex-basis: 100%;
    text-align: left;
    margin: 13px 0px 0px 0px;
    font-family: Rubik, sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.signup .flexContainer {
    /* margin: 2px 10px; */
    display: flex;
}

.external-link::after, .pdf-link::before {
    color: #ff5400;
    font-family: "Font Awesome 5 Brands";
    padding-left: 10px;
}

.external-link::after {
    content: "\f35d";
}

.external i {
    margin-left: 10px;
}
/*------------------------------------end--------------------------*/

/*-------------------------------------sitemap----------------------*/
ul.sitemap-line-main {
    border-left: 2px dashed #a1a1a1;
    margin-left: 0;
    list-style: none;
    padding: 0px;
}

    ul.sitemap-line-main li:hover {
        padding: 4px 15px 4px 20px;
        transition: .5s;
        color: #f50404;
    }

    ul.sitemap-line-main li {
        border: 1px solid #33333338;
        border-radius: 4px;
        margin: 4px 20px;
        padding: 4px 15px;
        max-width: 300px;
        color: #000;
        font-size: 16px;
        position: relative;
        background: #fff;
        margin-left: 23px;
        transition: .5s;
    }

        ul.sitemap-line-main li:before {
            position: absolute;
            content: '';
            background-image: url('../img/arrow_sitemap.png');
            width: 21px;
            height: 17px;
            left: -24px;
            top: 10px;
            background-size: 100%;
            opacity: .9;
        }

ul.oursubbb {
    margin-left: 120px;
    border-left: 2px dashed #a1a1a1;
    margin-top: 10px;
    margin-bottom: 20px;
    list-style: none;
    padding: 0px;
}

.sitemap-st .title-section {
    text-align: center;
    border-bottom: 2px solid;
    padding-bottom: 10px;
    margin-bottom: 30px; /* color: #ef0707; */
}

.sitemap-st {
    background: #ffd3d38f;
    padding: 50px;
    border-radius: 0px;
    border: 0px solid #ebebeb;
}

.title-section {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 1em;
    position: relative;
    font-family: var(--title-font);
    /*margin: -0.07em 0 23px 0;*/
    color: var(--secondary-color);
    padding-bottom: 15px;
}

@media (max-width: 767px) {
    ul.oursubbb {
        margin-left: 30px;
        border-left: 2px dashed #a1a1a1;
    }
}
/*-------------------------------------end--------------------------*/

/*--------------------------------raees css------------------------------*/
.testi-avater {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #FF9800;
}

.tts {
    border-radius: 50%;
    width: 50%;
    text-align: center;
    box-shadow: 0px 0px 15px rgb(255 255 255 / 75%);
    background: #ffffff;
    padding: 4px;
    border: 1px dashed #ff681a;
    margin-bottom: 30px;
}

.Tourism_p {
    color: #fff;
}

.pcard {
    position: relative;
    transition-duration: .3s;
    background-color: #242424;
}

.map_page {
    border: 1px solid #242424;
    text-align: center;
}

    .map_page h4 {
        text-transform: uppercase;
        color: #eee;
        font-size: 20px;
        padding: 5px 0;
    }

.pcard img {
    max-width: 100%;
    position: relative;
    display: block;
    transition-duration: .3s;
    opacity: 1;
    margin: 0 auto;
}

.map_page img {
    height: 300px;
    overflow: hidden;
    display: inherit;
    background: #fff;
}

.mt-45 {
    margin-top: 45px;
}

.border-0 {
    border-radius: 0px;
}

.box-serviceses-inner {
    padding: 15px;
}

.box-serviceses {
    background: #950404;
    padding: 0px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    /* transform: skewX(0deg); */
    transition: 1s;
    border-radius: 10px;
    border: 0px solid #9f0505;
    margin: 15px 0;
}

.box-serviceses-inner p {
    text-align: center;
    margin-bottom: 0px;
    padding-top: 15px;
}

.box-serviceses-inner a {
    color: #fff;
    font-weight: 500;
}

.policy-listing {
    list-style: none;
    padding-left: 0px;
}

    .policy-listing li {
        position: relative;
        padding-left: 5px;
        margin-bottom: 5px;
        margin-right: 15px;
    }
/*----------------------------------------end--------------------------*/
/*------------------- 4.13. Destinations  -------------------*/
.about-list1,
.about-list2 {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
}

    .about-list1 li,
    .about-list2 li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 5px;
        margin-right: 15px;
    }

        .about-list1 li::before,
        .about-list2 li::before {
            content: "";
            width: 6px;
            height: 6px;
            outline: 5px solid var(--border-color);
            background-color: var(--theme-color);
            border-radius: 50%;
            position: absolute;
            left: 5px;
            top: 10px;
        }

.package-layout1 .package-style2 .package-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

    .package-layout1 .package-style2 .package-img::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.5606617647) 3%, rgba(255, 255, 255, 0) 100%);
    }

    .package-layout1 .package-style2 .package-img .price-box .package-price {
        font-size: 20px;
        color: var(--white-color);
    }

.package-price {
    font-size: 20px;
    font-weight: 600;
    transition: 0.5s;
}

.package-layout1 .package-style2 .package-img .price-box .price-text {
    color: var(--white-color);
    margin-bottom: 0;
}

.package-layout1 .package-style2 .package-img .package-icon:hover {
    background-color: var(--theme-color);
}

.package-layout1 .package-style2 .package-img .package-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    background-color: var(--white-color);
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 25px;
    transition: all 0.5s ease;
    cursor: pointer;
}

    .package-layout1 .package-style2 .package-img .package-icon i {
        color: var(--theme-color);
        transform: rotate(-45deg);
        padding: 10px;
    }

.package-layout1 .package-style2 .package-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

    .package-layout1 .package-style2 .package-img .price-box {
        position: absolute;
        bottom: 13px;
        display: inline-block;
        left: 25px;
    }

.img-box3 {
    position: relative;
    padding: 0px 10px;
}

    .img-box3 .img1 {
        border-radius: 10px;
    }

    .img-box3 .bottom-img {
        margin-top: -64px;
        display: flex;
        align-items: baseline;
    }

    .img-box3 .img2 {
        max-width: 280px;
        margin-top: 30px;
        border-radius: 10px;
    }

    .img-box3 .img3 {
        max-width: 210px;
        border-radius: 10px;
        border: 10px solid #ffeae0;
        margin-left: 30px;
    }

.image-box1 {
    margin: 80px 0;
    position: relative;
}

    .image-box1 .img1 {
        border-radius: 25% 0 25% 0;
    }

    .image-box1 .img2 {
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background-color: var(--white-color);
        padding: 40px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 1;
    }

    .image-box1 .media-box1,
    .image-box1 .media-box2 {
        width: 260px;
        border-radius: 10px;
        outline: 15px solid var(--white-color);
        background-color: var(--theme-color);
        padding: 45px 40px 45px;
        position: absolute;
        right: 0;
        top: -55px;
        z-index: 0;
    }

        .image-box1 .media-box1 .media-info,
        .image-box1 .media-box2 .media-info {
            font-size: 36px;
            font-weight: 700;
            color: var(--white-color);
            font-family: var(--body-font);
            margin-bottom: 5px;
        }

        .image-box1 .media-box1 .media-text,
        .image-box1 .media-box2 .media-text {
            font-size: 22px;
            font-weight: 600;
            margin: 0;
            color: var(--white-color);
        }

    .image-box1 .media-box1 {
        background-color: var(--theme-color);
        bottom: unset;
        right: -5px;
        top: -55px;
    }

    .image-box1 .media-box2 {
        background-color: var(--theme-color2);
        bottom: -55px;
        top: unset;
        right: 125px;
    }
/*.sec-title::before {
    width: 15px;
    left: 0;
}*/
.sec-title::before, .sec-title::after {
    content: "";
    height: 2px;
    border-radius: 50px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: 0;
}
/* Large devices */
@media (max-width: 1199px) {
    .about-list1 {
        grid-template-columns: 1fr 1fr;
    }

    .img-box3 {
        margin-top: 30px;
        padding: 0;
    }

        .img-box3 .bottom-img {
            display: block;
            margin-top: 0;
        }

        .img-box3 .img3 {
            margin-top: 20px;
            margin-left: 15px;
        }
}
/* Medium devices */
@media (max-width: 991px) {
    .about-list1 {
        grid-template-columns: 1fr 1fr;
    }

    .img-box3 {
        margin-top: 30px;
    }

        .img-box3 .bottom-img {
            display: block;
            margin-top: 0;
        }

        .img-box3 .img2,
        .img-box3 .img3 {
            margin-top: 30px;
            margin-left: auto;
            margin-right: auto;
            max-width: 100%;
        }

        .img-box3 .img3 {
            margin-left: 25px;
        }
}
/* Small devices */
@media (max-width: 767px) {
    .about-list1 {
        grid-template-columns: 1fr;
    }

    .image-box1 {
        display: flex;
        flex-wrap: wrap;
        margin-top: 0;
        margin-bottom: 30px;
    }

        .image-box1 .img2 {
            width: 150px;
            height: 150px;
            padding: 10px;
            top: 0;
            transform: translate(0);
        }

        .image-box1 .media-box1,
        .image-box1 .media-box2 {
            width: 45%;
            padding: 15px;
            height: fit-content;
            border: none;
            text-align: center;
            margin-top: 20px;
        }

            .image-box1 .media-box1 .media-info,
            .image-box1 .media-box2 .media-info {
                font-size: 20px;
            }

            .image-box1 .media-box1 .media-text,
            .image-box1 .media-box2 .media-text {
                font-size: 15px;
            }

        .image-box1 .media-box1 {
            position: relative;
            top: unset;
            right: unset;
            border: none;
        }

        .image-box1 .media-box2 {
            position: relative;
            bottom: 0;
            right: 0;
            margin-left: 20px;
        }

    .img-box3 .img3 {
        margin-left: auto;
        display: none;
    }
}
/*------------------- 4.14. Destinations  -------------------*/
.history-steped {
    position: relative;
    padding-right: 100px;
}

    .history-steped::before, .history-steped::after {
        content: "";
        position: absolute;
        right: -5px;
        top: 60px;
        transform: translateY(-50%);
        z-index: 1;
    }

    .history-steped::before {
        width: 105px;
        height: 2px;
        background-color: var(--border-color);
    }

    .history-steped::after {
        width: 10px;
        height: 10px;
        outline: 5px solid var(--border-color);
        border-radius: 50%;
        background-color: var(--theme-color);
    }

    .history-steped .divider {
        height: 100%;
        width: 2px;
        background-color: var(--border-color);
        position: absolute;
        right: -1px;
        top: 30%;
        transform: translateY(-50%);
    }

        .history-steped .divider::before {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--border-color);
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }

    .history-steped:first-child .divider::before {
        content: "";
        top: 0;
    }

    .history-steped:last-child .divider::before {
        content: "";
        bottom: 0;
        top: unset;
    }

    .history-steped:nth-child(even) {
        margin-top: 80px;
        padding-left: 100px;
        padding-right: unset;
    }

        .history-steped:nth-child(even)::before, .history-steped:nth-child(even)::after {
            right: unset;
            left: -5px;
        }

        .history-steped:nth-child(even) .divider {
            top: 80%;
            left: -1px;
            right: unset;
        }

.vs-history {
    --body-color: #8B919C;
    padding: 30px 40px 20px;
    position: relative;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--white-color);
}

    .vs-history .history-date {
        font-size: 24px;
        font-weight: 600;
        font-family: var(--body-font);
        margin-bottom: 0;
        position: relative;
        padding-left: 30px;
        color: var(--body-color);
    }

        .vs-history .history-date::before, .vs-history .history-date::after {
            content: "";
            position: absolute;
            right: 100%;
            top: 50%;
            transform: translateY(-50%);
        }

        .vs-history .history-date::before {
            width: 120px;
            height: 2px;
            background-color: var(--border-color);
        }

        .vs-history .history-date::after {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--theme-color);
        }

    .vs-history .history-title {
        margin-bottom: 0;
    }

    .vs-history .header-area {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

/* Large devices */
@media (max-width: 1199px) {
    .vs-history .history-date {
        padding-left: 15px;
    }

        .vs-history .history-date::before {
            width: 80px;
        }
}
/* Medium devices */
@media (max-width: 991px) {
    .history-steped {
        padding-right: 50px;
    }

        .history-steped:nth-child(even) {
            padding-left: 50px;
            margin-top: 50px;
        }

        .history-steped::before {
            width: 55px;
        }

    .vs-history {
        padding: 25px 30px 15px;
    }

        .vs-history .history-date::before, .vs-history .history-date::after {
            display: none;
        }
}
/* Small devices */
@media (max-width: 767px) {
    .history-steped {
        margin-top: 30px;
        padding: 0 15px;
    }

        .history-steped:first-child {
            margin-top: 0;
        }

        .history-steped:nth-child(even) {
            padding: 0 15px;
            margin-top: 30px;
        }

        .history-steped::before, .history-steped::after {
            display: none;
        }

        .history-steped .divider {
            display: none;
        }

    .vs-history {
        padding: 20px 20px 10px;
    }

        .vs-history .history-date::before, .vs-history .history-date::after {
            display: none;
        }
}
/*------------------- 4.15. Destinations  -------------------*/
.filter-menu1 {
    /*background-color: var(--smoke-color);*/
    margin-bottom: 60px;
}

    .filter-menu1 .tab-button {
        padding: 24px 30px;
        display: inline-block;
        border: none;
        margin: 0;
        color: var(--body-color);
        background-color: var(--smoke-color);
        font-size: 15px;
        font-weight: 500;
    }

        .filter-menu1 .tab-button i {
            margin-right: 4px;
        }

        .filter-menu1 .tab-button:hover {
            color: var(--theme-color);
        }

    .filter-menu1 .active {
        background-color: #bc0000;
        color: #ffffff;
    }

.filter-active1 {
    padding-left: 40px;
    padding-right: 40px;
}

    .filter-active1 .package-style1 {
        box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
        background-color: var(--white-color);
    }

/* Large devices */
@media (max-width: 1199px) {
    .filter-menu1 .tab-button {
        padding-left: 24px;
        padding-right: 24px;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .filter-menu1 {
        margin-bottom: 20px;
    }

        .filter-menu1 .tab-button {
            font-size: 14px;
            padding: 10px 12px;
        }
}
/*------------------- 4.16. Tour Bookings  -------------------*/
.tour-review ul {
    margin: 0;
    padding: 0;
}

    .tour-review ul li {
        display: inline-block;
        font-size: 16px;
        font-weight: 400;
        font-family: var(--body-font);
    }

        .tour-review ul li i {
            color: var(--theme-color);
        }

.tab-content1 .info-image {
    margin-bottom: 36px;
}

.tab-content1 .tour-review {
    margin-bottom: 5px;
}

.tab-content1 .tour-price {
    font-size: 24px;
}

.tours-active .package-style1 {
    box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
    transition: 0.5s ease-in-out;
}

    .tours-active .package-style1:hover {
        box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.15);
    }

.tour-plan {
    padding-left: 70px;
    position: relative;
    padding-top: 0px;
    margin-top: 26px;
}

    .tour-plan .tour-card1 {
        width: 50px;
        height: 50px;
        font-size: 24px;
        font-weight: 700;
        color: var(--white-color);
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #ad8b3a;
        position: absolute;
        left: 0;
        top: 0;
    }

    .tour-plan .tp-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .tour-plan .tp-list li {
            padding-left: 25px;
            margin-bottom: 10px;
            position: relative;
        }

            .tour-plan .tp-list li::before {
                content: "\f058";
                font-weight: 700;
                font-family: var(--icon-font);
                position: absolute;
                left: 0;
            }

            .tour-plan .tp-list li:last-child {
                margin-bottom: 0;
            }

.google-map {
    height: 710px;
}

    .google-map iframe {
        height: 100%;
        width: 100%;
    }

.tag-widget .vs-btn {
    font-weight: 400;
    margin-right: 10px;
}

    .tag-widget .vs-btn i {
        margin-right: 4px;
    }

    .tag-widget .vs-btn:last-child {
        margin-right: 0;
    }

.infolist {
    margin-top: 40px;
    border: none;
}

    .infolist tr {
        vertical-align: baseline;
    }

        .infolist tr td {
            border: none;
            padding: 9px 0;
            font-size: 16px;
            font-weight: 400;
            font-family: var(--body-font);
        }

            .infolist tr td:first-child {
                font-weight: 600;
            }

            .infolist tr td .sub-infolist {
                border: none;
                margin: 0;
            }

                .infolist tr td .sub-infolist tr {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                }

                    .infolist tr td .sub-infolist tr td {
                        padding: 0 0 0 25px;
                        margin-bottom: 10px;
                        position: relative;
                        width: 208px;
                        font-weight: 400;
                    }

                        .infolist tr td .sub-infolist tr td::before {
                            content: "\f058";
                            font-weight: 700;
                            font-family: var(--icon-font);
                            position: absolute;
                            left: 0;
                        }

        .infolist tr .info-heading {
            width: 250px;
            font-weight: 700;
        }

/* fluid 5 columns */
.grid-item {
    margin-bottom: 24px;
}

    .grid-item img {
        border-radius: 10px;
    }

.progress-style1 {
    margin-top: 30px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 40px 30px 34px;
}

    .progress-style1 .circle-progress {
        width: 150px;
        height: 150px;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }

        .progress-style1 .circle-progress .progress-value {
            font-size: 18px;
            font-weight: 600;
            font-family: var(--body-font);
            color: var(--title-color);
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

    .progress-style1 .progress-title {
        margin: 26px 0 0 0;
    }

.rating-wrap {
    border-top: 2px solid var(--border-color);
    margin-top: 60px;
    padding-top: 60px;
}

    .rating-wrap .rating-text {
        font-size: 14px;
    }

    .rating-wrap .rating-post {
        margin-bottom: 26px;
    }

    .rating-wrap .vs-comment-form {
        background-color: var(--smoke-color);
        padding: 60px 30px 30px;
        border-radius: 10px;
    }

        .rating-wrap .vs-comment-form .form-control {
            background-color: var(--white-color);
        }

    .rating-wrap .review-rating {
        margin-bottom: 15px;
    }

    .rating-wrap .rating-select {
        margin: 0 0 15px 0;
    }

    .rating-wrap .blog-inner-title {
        margin-bottom: 20px;
    }

    .rating-wrap .vs-comment-form .custom-checkbox {
        margin-top: 20px;
    }

.rating-author {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

    .rating-author .author-image {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        margin-right: 15px;
        overflow: hidden;
    }

    .rating-author .author-text {
        margin-bottom: 5px;
    }

    .rating-author .author-digi {
        font-size: 14px;
    }

.review-rating {
    position: relative;
    display: flex;
    align-items: center;
}

    .review-rating .rating-tilte {
        margin-right: 15px;
    }

    .review-rating .star-rating {
        overflow: hidden;
        position: relative;
        width: 100px;
        height: 1.2em;
        line-height: 1.2em;
        display: block;
        font-family: var(--icon-font);
        font-weight: 700;
        font-size: 14px;
    }

        .review-rating .star-rating span {
            overflow: hidden;
            float: left;
            top: 0;
            left: 0;
            position: absolute;
            padding-top: 1.5em;
        }

        .review-rating .star-rating::before {
            content: "\f005\f005\f005\f005\f005";
            color: var(--theme-color2);
            float: left;
            top: 0px;
            left: 0px;
            position: absolute;
            letter-spacing: 3px;
            font-weight: 700;
        }

/* Small devices */
@media (max-width: 767px) {
    .infolist tr {
        display: block;
    }

        .infolist tr .info-heading {
            width: 145px;
        }

        .infolist tr td {
            font-size: 14px;
        }

            .infolist tr td .sub-infolist tr {
                grid-template-columns: 1fr;
            }

                .infolist tr td .sub-infolist tr td {
                    width: 100%;
                }

    .tour-plan {
        padding-left: 0;
        margin-top: 15px;
        padding-top: 0;
    }

        .tour-plan .tour-card1 {
            position: relative;
            font-size: 18px;
            width: 40px;
            height: 40px;
            margin-bottom: 5px;
        }
}
/*------------------- 4.17. Tour Bookings  -------------------*/
.vs-sort-bar {
    margin-bottom: 30px;
}

.woocommerce-ordering select {
    width: 200px;
    padding: 10px 20px;
    background-color: var(--smoke-color);
    border: none;
    outline: none;
    border-radius: 5px;
}

.vs-product {
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
}

    .vs-product .product-img {
        background-color: var(--smoke-color);
        position: relative;
        padding: 20px 20px;
    }

        .vs-product .product-img .action-buttons {
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: 0.5s ease-in-out;
            position: absolute;
            left: 50%;
            top: 20px;
            width: 100%;
            transform: translateX(-50%);
        }

        .vs-product .product-img .icon-btn {
            width: 44px;
            height: 44px;
            line-height: 44px;
            border-radius: 10px;
            box-shadow: none;
            font-size: 16px;
            color: var(--white-color);
            background-color: var(--theme-color);
        }

            .vs-product .product-img .icon-btn:hover {
                background-color: var(--theme-color2);
            }

        .vs-product .product-img .badge {
            right: 20px;
            border-radius: 5px;
            color: var(--white-color);
            font-weight: 500;
            font-size: 16px;
            transition: 0.5s ease-in-out;
            background-color: var(--theme-color);
        }

    .vs-product .product-body {
        padding: 30px 30px;
    }

        .vs-product .product-body .rating-wrap {
            margin-bottom: 10px;
            margin-top: 0;
            padding-top: 0;
            border: none;
        }

            .vs-product .product-body .rating-wrap i {
                color: var(--theme-color2);
            }

        .vs-product .product-body .product-title {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .vs-product .product-body .vs-btn {
            margin-top: 22px;
        }

    .vs-product:hover .product-img .action-buttons {
        opacity: 1;
        width: 80%;
    }

    .vs-product:hover .product-img .badge {
        opacity: 0;
        z-index: -1;
    }

.product-big-img {
    background-color: var(--smoke-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-thumb-slide .thumb {
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--smoke-color);
    border: 1px solid transparent;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

    .product-thumb-slide .thumb img {
        transition: 0.5s ease-in-out;
        width: 100%;
    }

    .product-thumb-slide .thumb:hover {
        border-color: var(--theme-color);
    }

        .product-thumb-slide .thumb:hover img {
            transform: scale(1.1);
        }

.product-thumb-slide .slick-current .thumb {
    border-color: var(--theme-color);
}

    .product-thumb-slide .slick-current .thumb img {
        transform: scale(1.1);
    }

.quantity {
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}

    .quantity .qty-btn {
        border: 1px solid var(--theme-color);
        background-color: var(--theme-color);
        padding: 0;
        width: 50px;
        height: 50px;
        line-height: 50px;
        color: var(--white-color);
        font-size: 16px;
    }

        .quantity .qty-btn:hover {
            background-color: var(--theme-color2);
            border-color: var(--theme-color2);
        }

    .quantity input {
        height: 50px;
        width: 50px;
        margin: 0;
        font-size: 16px;
        padding-right: 0;
        padding-left: 0;
        text-align: center;
        color: var(--black-color);
        background-color: var(--smoke-color);
        border-color: transparent;
        border-radius: 0;
    }

.star-rating {
    margin-right: 10px;
    font-size: 16px;
}

    .star-rating i {
        color: var(--theme-color2);
    }

.product-about .product-rating {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin: 0 0 15px 0;
}

    .product-about .product-rating p {
        margin: 0;
        font-size: 16px;
    }

.product-about .product-title {
    margin-bottom: 5px;
}

.product-about .product-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-color);
}

.product-about .product-text {
    font-size: 16px;
}

.product-about .product-color {
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
    text-transform: capitalize;
}

.product-about .varient-select {
    margin-bottom: 30px;
}

    .product-about .varient-select .h6 {
        text-transform: uppercase;
        font-size: 16px;
    }

.product-about .actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 33px;
}

    .product-about .actions .vs-btn {
        flex: 1;
        height: 50px;
        line-height: 22px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .product-about .actions .icon-btn {
        border-radius: 10px;
        height: 50px;
        width: 50px;
        line-height: 50px;
        box-shadow: none;
        color: var(--white-color);
        background-color: var(--theme-color);
    }

        .product-about .actions .icon-btn:hover {
            background-color: var(--theme-color2);
        }

.image-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .image-list .varient-image {
        width: 80px;
        height: 80px;
        margin-right: 10px;
        border-radius: 10px;
        display: inline-block;
        background-color: var(--smoke-color);
        position: relative;
    }

        .image-list .varient-image input[type=radio] {
            visibility: hidden;
            opacity: 0;
            display: inline-block;
            width: 80px;
            height: 80px;
            border-radius: 10px;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            padding: 0;
        }

            .image-list .varient-image input[type=radio] ~ label {
                padding: 0;
                width: 100%;
                height: 100%;
                border-radius: 10px;
                outline-offset: 5px;
                transition: 0.5s ease-in-out;
                background-color: var(--smoke-color);
                outline: 1px solid var(--smoke-color);
            }

                .image-list .varient-image input[type=radio] ~ label::before {
                    display: none;
                }

                .image-list .varient-image input[type=radio] ~ label img {
                    width: 100%;
                    height: 100%;
                }

            .image-list .varient-image input[type=radio]:checked ~ label {
                background-color: var(--theme-color);
                outline-color: var(--theme-color);
            }

            .image-list .varient-image input[type=radio]:hover ~ label {
                background-color: var(--theme-color);
                outline-color: var(--theme-color);
            }

.product_meta {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

    .product_meta .meta-title {
        margin-bottom: 15px;
    }

    .product_meta > span {
        display: block;
        margin-bottom: 3px;
        font-size: 16px;
        color: var(--title-color);
        font-weight: 700;
    }

        .product_meta > span > span {
            color: var(--title-color);
            padding-left: 10px;
            font-weight: 400;
        }

        .product_meta > span a {
            margin-right: 5px;
            font-weight: 400;
            text-transform: capitalize;
        }

            .product_meta > span a:first-child {
                padding-left: 10px;
            }

            .product_meta > span a::after {
                content: ",";
            }

            .product_meta > span a:last-child::after {
                display: none;
            }

.tab-wrap {
    box-shadow: 13px 0px 48px 0px rgba(255, 104, 26, 0.07);
}

.product-tab1 {
    margin: 50px 0 20px 0;
    background-color: var(--smoke-color);
}

    .product-tab1 .nav-link {
        padding: 30px 30px;
        color: var(--title-color);
        text-transform: capitalize;
    }

        .product-tab1 .nav-link:hover {
            color: var(--theme-color);
        }

    .product-tab1 .active {
        background-color: var(--white-color);
        color: var(--theme-color);
    }

.tab-content {
    padding: 25px 40px 35px;
}

    .tab-content .vs-comment-form {
        background-color: var(--smoke-color);
        padding: 40px;
        border-radius: 10px;
    }

        .tab-content .vs-comment-form .form-control {
            background-color: var(--white-color);
        }

.list-style2 li {
    margin-bottom: 7px;
}

    .list-style2 li span {
        color: var(--title-color);
        font-size: 16px;
        font-family: var(--body-font);
    }

        .list-style2 li span:first-child {
            font-weight: 500;
            display: inline-block;
            min-width: 150px;
        }

    .list-style2 li:last-child {
        margin-bottom: 0;
    }

.woocommerce-Reviews .vs-comments-wrap .comment-avater {
    border-radius: 50%;
}

.woocommerce-Reviews .vs-comments-wrap .vs-post-comment {
    border-radius: 10px;
}

    .woocommerce-Reviews .vs-comments-wrap .vs-post-comment p {
        margin-bottom: 15px;
    }

.rating-select {
    margin-top: -0.4em;
}

    .rating-select label {
        margin: 0 10px 0 0;
        display: inline-block;
        color: var(--body-color);
    }

    .rating-select p {
        display: inline-block;
    }

        .rating-select p.stars {
            margin-bottom: 0;
            line-height: 1;
        }

            .rating-select p.stars a {
                position: relative;
                height: 14px;
                width: 18px;
                text-indent: -999em;
                display: inline-block;
                text-decoration: none;
            }

                .rating-select p.stars a::before {
                    display: block;
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 18px;
                    height: 14px;
                    line-height: 1;
                    font-family: var(--icon-font);
                    content: "\f005";
                    font-weight: 400;
                    text-indent: 0;
                    color: var(--theme-color);
                }

                .rating-select p.stars a:hover ~ a::before {
                    content: "\f005";
                    font-weight: 400;
                }

            .rating-select p.stars:hover a::before {
                content: "\f005";
                font-weight: 700;
            }

            .rating-select p.stars.selected a.active::before {
                content: "\f005";
                font-weight: 700;
            }

            .rating-select p.stars.selected a.active ~ a::before {
                content: "\f005";
                font-weight: 400;
            }

            .rating-select p.stars.selected a:not(.active)::before {
                content: "\f005";
                font-weight: 700;
            }

/* Small devices */
@media (max-width: 767px) {
    .vs-product .product-body .product-title {
        font-size: 16px;
    }

    .vs-product .product-body .vs-btn {
        padding: 16px;
    }

    .product-about {
        margin-top: 30px;
    }

        .product-about .actions {
            width: 100%;
            display: inline-block;
        }

            .product-about .actions .quantity,
            .product-about .actions .vs-btn,
            .product-about .actions .icon-btn {
                margin-bottom: 15px;
                vertical-align: bottom;
            }

        .product-about .product-rating {
            display: inline-block;
        }

    .product-tab1 .nav-link {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .tab-content {
        padding: 0px 15px 15px;
    }

        .tab-content .vs-comment-form {
            padding: 20px 15px;
        }

            .tab-content .vs-comment-form .notice {
                margin-top: 20px;
            }
}
/*------------------- 4.18. Cart  -------------------*/
.cart_table {
    border: none;
    margin-bottom: 45px;
}

    .cart_table thead {
        background-color: var(--border-color);
    }

        .cart_table thead th {
            font-family: var(--title-font);
            color: var(--title-color);
            font-weight: 600;
            border: none;
            padding: 27px 15px;
        }

    .cart_table td {
        border: none;
        border-bottom: 1px solid var(--border-color);
        color: var(--title-color);
        padding: 20px 10px;
        position: relative;
        vertical-align: middle;
    }

    .cart_table .cart-productimage {
        display: inline-block;
        border-radius: 5px;
        background-color: var(--smoke-color);
    }

    .cart_table .quantity {
        display: inline-flex;
        align-items: center;
        border: none;
        border-radius: 0;
    }

    .cart_table .qut-btn {
        border: 2px solid var(--border-color);
        background-color: var(--theme-color);
        color: var(--white-color);
        padding: 0;
        width: 30px;
        height: 30px;
        line-height: 25px;
        font-size: 16px;
        font-weight: 400;
        border-radius: 4px;
    }

        .cart_table .qut-btn:hover {
            background-color: var(--theme-color2);
            border-color: var(--theme-color2);
        }

    .cart_table .qty-input {
        vertical-align: middle;
        background-color: transparent;
        border: 2px solid var(--border-color);
        width: 70px;
        height: 30px;
        font-size: 14px;
        text-align: center;
        color: var(--title-color);
        font-weight: 400;
        margin: 0 10px;
        border-radius: 4px;
    }

    .cart_table .vs-cart-coupon {
        float: left;
        margin: 0;
        width: 455px;
        max-width: 100%;
        display: flex;
    }

        .cart_table .vs-cart-coupon input {
            height: 46px;
            width: calc(100% - 200px);
            margin-right: 10px;
            border-radius: 10px;
        }

        .cart_table .vs-cart-coupon .vs-btn {
            font-size: 16px;
            width: max-content;
            border-radius: 10px;
        }

    .cart_table .actions {
        text-align: right;
        vertical-align: middle;
    }

        .cart_table .actions > .vs-btn {
            margin-right: 15px;
        }

            .cart_table .actions > .vs-btn:last-child {
                margin-right: 0;
            }

.cart_totals {
    border: 1px solid var(--border-color);
}

    .cart_totals td:first-child,
    .cart_totals th:first-child {
        width: 45%;
        background-color: #f9fbfb;
        font-weight: 700;
        font-size: 14px;
        color: #333333;
    }

    .cart_totals .amount {
        font-weight: 600;
        font-size: 14px;
        font-family: var(--title-font);
    }

    .cart_totals .woocommerce-shipping-methods {
        margin-bottom: 0;
    }

        .cart_totals .woocommerce-shipping-methods input[type=radio] ~ label::before {
            width: 15px;
            height: 15px;
            line-height: 14px;
            font-size: 7px;
            padding-left: 1px;
            top: -1px;
        }

    .cart_totals .woocommerce-shipping-destination {
        margin-bottom: 10px;
    }

    .cart_totals .shipping-calculator-button {
        display: inline-block;
        border-bottom: 1px solid;
        color: var(--title-color);
        font-weight: 700;
    }

/* Medium devices */
@media (max-width: 991px) {
    .cart_table .vs-cart-coupon {
        width: 100%;
        margin-bottom: 15px;
    }

    .cart_table .actions {
        text-align: center;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .cart_totals td:first-child,
    .cart_totals th:first-child {
        width: 30%;
    }
}
/*------------------- 4.20. Checkout  -------------------*/
.checkout-ordertable th,
.checkout-ordertable td {
    vertical-align: top;
    text-align: right;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 700;
    border-left: none;
    color: #2c3e50;
}

.checkout-ordertable tr:last-child th {
    border-bottom: none;
}

.checkout-ordertable tr:last-child td {
    border-bottom: none;
}

.checkout-ordertable th {
    text-align: left;
}

.vs-checkout-wrapper .cart_table {
    margin-bottom: 0px;
    border: none;
}

/*------------------- 4.21. woocommerce  -------------------*/
.woocommerce-message,
.woocommerce-info {
    position: relative;
    padding: 11px 20px;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    border-radius: 5px;
}

    .woocommerce-message::before,
    .woocommerce-info::before {
        content: "\f06a";
        font-family: var(--icon-font);
        font-weight: 900;
        margin-right: 10px;
    }

.woocommerce-notices-wrapper .woocommerce-message::before {
    content: "\f14a";
    font-weight: 300;
}

.woocommerce-cart-form {
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.shipping-calculator-form {
    display: none;
}

    .shipping-calculator-form p:first-child {
        margin-top: 20px;
    }

    .shipping-calculator-form select,
    .shipping-calculator-form .form-control,
    .shipping-calculator-form .form-select,
    .shipping-calculator-form textarea,
    .shipping-calculator-form input {
        height: 50px;
        padding-left: 20px;
        padding-right: 25px;
    }

.order-total .amount {
    color: var(--theme-color);
}

.woocommerce-form-login-toggle .woocommerce-info {
    background-color: var(--theme-color);
}

    .woocommerce-form-login-toggle .woocommerce-info .showlogin {
        color: var(--white-color);
        text-decoration: underline;
    }

.woocommerce-form-login {
    display: none;
    padding: 40px 40px 35px;
    margin-bottom: 30px;
    border-radius: 10px;
}

    .woocommerce-form-login .form-group:last-child {
        margin-bottom: 0;
    }

.woocommerce-form-coupon-toggle .woocommerce-info {
    background-color: var(--border-color);
    color: var(--title-color);
}

    .woocommerce-form-coupon-toggle .woocommerce-info a {
        text-decoration: underline;
    }

.woocommerce-form-coupon {
    padding: 40px;
    border-radius: 10px;
}

    .woocommerce-form-coupon .form-group:last-child {
        margin-bottom: 0;
    }

.woocommerce-checkout {
    margin-top: 60px;
}

    .woocommerce-checkout .form-group input:not(:last-child) {
        margin-bottom: var(--bs-gutter-x);
    }

    .woocommerce-checkout .shipping_address {
        display: none;
    }

.woocommerce-checkout-payment ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .woocommerce-checkout-payment ul li {
        padding-top: 10px;
        border-bottom: 1px solid var(--border-color);
        border-radius: 4px;
        font-size: 16px;
    }

    .woocommerce-checkout-payment ul input[type=radio] ~ label {
        margin-bottom: 15px;
        color: var(--body-color);
        width: 100%;
    }

.woocommerce-checkout-payment .payment_box {
    color: #a1b1bc;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
    border-bottom: none;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 4px;
    display: none;
}

    .woocommerce-checkout-payment .payment_box p {
        margin: 0;
        color: var(--title-color);
    }

.woocommerce-checkout-payment .place-order {
    margin-top: 30px;
}

/* Small devices */
@media (max-width: 767px) {
    .woocommerce-form-coupon {
        padding: 20px;
    }

    .woocommerce-form-login {
        padding: 20px 20px 15px;
    }
}
/*------------------- 4.22 Contct  -------------------*/
.contact-box_wrapper .outer-wrap {
    /* background-color: var(--theme-color); */
    border-radius: 10px;
    padding: 30px 0px 30px;
    max-width: 1340px;
    margin-top: 0;
}

.contact-box {
    background-color: var(--white-color);
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    /* margin-top: 30px; */
    padding: 30px 25px;
    padding-left: 110px;
    position: relative;
    min-height: 250px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .contact-box .contact-box_icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        transition: 0.5s ease-in-out;
        background-color: var(--theme-color);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--white-color);
        position: absolute;
        left: 30px;
    }

    .contact-box .contact-box__title {
        margin-bottom: 5px;
    }

    .contact-box .contact-box__text {
        margin-bottom: -5px;
        font-size: 14px;
        font-weight: 400;
        line-height: 2;
        font-family: var(--body-font);
        color: var(--title-color);
    }

    .contact-box .contact-box_list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .contact-box .contact-box_list li {
            display: block;
            margin-top: 2px;
            font-size: 14px;
            font-weight: 400;
            font-family: var(--body-font);
            color: var(--title-color);
        }

    .contact-box:hover .contact-box_icon {
        background-color: var(--theme-color2);
    }

/*------------------- 4.23 Contct  -------------------*/
.signup-form {
    padding: 40px 30px;
    border-radius: 10px;
}

/* Medium devices */
@media (max-width: 991px) {
    .signup-form {
        padding: 20px 15px;
    }
}
/*------------------- 4.26. Popup Search  -------------------*/
.popup-search-box {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    height: 100%;
    width: 0;
    overflow: hidden;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
}

    .popup-search-box button.searchClose {
        width: 60px;
        height: 60px;
        line-height: 60px;
        position: absolute;
        top: 40px;
        right: 40px;
        border: none;
        background-color: var(--theme-color);
        color: var(--white-color);
        font-size: 30px;
        border-radius: 50%;
        transition: all ease 0.4s;
    }

        .popup-search-box button.searchClose i {
            line-height: inherit;
        }

        .popup-search-box button.searchClose:hover {
            color: var(--white-color);
            background-color: var(--theme-color2);
        }

    .popup-search-box form {
        position: absolute;
        top: 50%;
        left: 50%;
        display: inline-block;
        padding-bottom: 40px;
        cursor: auto;
        width: 100%;
        max-width: 700px;
        transform: translate(-50%, -50%) scale(0);
        transition: transform ease 0.4s;
        /* Large devices */
    }

@media (max-width: 1199px) {
    .popup-search-box form {
        max-width: 600px;
    }
}

.popup-search-box form input {
    font-size: 14px;
    height: 70px;
    width: 100%;
    border: 2px solid var(--theme-color);
    background-color: transparent;
    padding-left: 30px;
    color: #fff;
    border-radius: 50px;
}

    .popup-search-box form input::-moz-placeholder {
        color: #fff;
    }

    .popup-search-box form input::-webkit-input-placeholder {
        color: #fff;
    }

    .popup-search-box form input:-ms-input-placeholder {
        color: #fff;
    }

    .popup-search-box form input::placeholder {
        color: #fff;
    }

.popup-search-box form button {
    position: absolute;
    top: 0px;
    background-color: transparent;
    border: none;
    font-size: 20px;
    right: 13px;
    color: var(--white-color);
    cursor: pointer;
    width: 70px;
    height: 70px;
    transition: all ease 0.4s;
    transform: scale(1.001);
}

    .popup-search-box form button:hover {
        transform: scale(1.1);
    }

.popup-search-box.show {
    opacity: 1;
    visibility: visible;
    width: 100.1%;
    transition: all ease 0.4s;
}

    .popup-search-box.show form {
        transition-delay: 0.5s;
        transform: translate(-50%, -50%) scale(1);
    }

/*------------------- 4.27. Popup Side Menu  -------------------*/
.offcanvas-wrapper {
    position: fixed;
    z-index: 99999;
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.8s;
}

    .offcanvas-wrapper .closeButton {
        display: inline-block;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 24px;
        padding: 0;
        background-color: var(--theme-color);
        color: var(--white-color);
        border: none;
        border-radius: 50%;
        transform: rotate(0);
        transition: all ease 0.4s;
        z-index: 33;
    }

        .offcanvas-wrapper .closeButton i {
            line-height: inherit;
        }

        .offcanvas-wrapper .closeButton:hover {
            color: var(--white-color);
            border-color: transparent;
            transform: rotate(90deg);
            background-color: var(--theme-color2);
        }

    .offcanvas-wrapper .sidemenu-content {
        background-color: var(--white-color);
        width: 450px;
        margin-left: auto;
        padding: 50px 30px;
        height: 100%;
        overflow: scroll;
        position: relative;
        right: -500px;
        cursor: auto;
        transition-delay: 1s;
        transition: right ease 1s;
    }

        .offcanvas-wrapper .sidemenu-content::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
            background-color: #F5F5F5;
        }

        .offcanvas-wrapper .sidemenu-content::-webkit-scrollbar {
            width: 2px;
            background-color: #F5F5F5;
        }

    .offcanvas-wrapper .widget {
        padding: 0;
        border: none;
        background-color: transparent;
        margin-bottom: 50px;
    }

    .offcanvas-wrapper .footer-text {
        max-width: 100%;
    }

    .offcanvas-wrapper.show {
        opacity: 1;
        visibility: visible;
        width: 100%;
        transition: all ease 0.8s;
    }

        .offcanvas-wrapper.show .sidemenu-content {
            right: 0;
            opacity: 1;
            visibility: visible;
        }

/*=================================
    05. Spacing
==================================*/
.pt-30 {
    padding-top: 30px;
}

.pt-10 {
    padding-top: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.mt-n1 {
    margin-top: -0.25rem;
}

.mt-n2 {
    margin-top: -0.5rem;
}

.mt-n3 {
    margin-top: -1rem;
}

.mt-n4 {
    margin-top: -1.5rem;
}

.mt-n5 {
    margin-top: -3rem;
}

.mb-n1 {
    margin-bottom: -0.25rem;
}

.mb-n2 {
    margin-bottom: -0.5rem;
}

.mb-n3 {
    margin-bottom: -1rem;
}

.mb-n4 {
    margin-bottom: -1.5rem;
}

.mb-n5 {
    margin-bottom: -3rem;
}

.mb-30 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mtb-60 {
    margin-top: 60px;
    margin-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mtb-70 {
    margin-top: 0;
    margin-bottom: 70px;
}

.mt-70 {
    margin-top: 70px;
}

.mb-70 {
    margin-bottom: 70px;
}

.space,
.space-top {
    padding-top: 60px;
}

.space,
.space-bottom {
    padding-bottom: 60px;
}

.space-extra,
.space-extra-top {
    padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
    padding-bottom: calc(var(--section-space) - 30px);
}

/* Medium devices */
@media (max-width: 991px) {
    .space,
    .space-top {
        padding-top: var(--section-space-mobile);
    }

    .space,
    .space-bottom {
        padding-bottom: var(--section-space-mobile);
    }

    .space-extra,
    .space-extra-top {
        padding-top: calc(var(--section-space-mobile) - 30px);
    }

    .space-extra,
    .space-extra-bottom {
        padding-bottom: calc(var(--section-space-mobile) - 30px);
    }
}
/* Small devices */
@media (max-width: 767px) {
    .mtb-60 {
        margin: 0;
    }

    .mt-60 {
        margin-top: 0;
    }

    .mb-60 {
        margin-bottom: 0;
    }

    .mtb-70 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .mt-70 {
        margin-top: 0;
    }

    .mb-70 {
        margin-bottom: 0;
    }
}
/*=================================
    06. Pages
==================================*/
.header-layout4 {
    background-color: var(--theme-color);
}

    .header-layout4 .header-social a {
        /* Small devices */
    }

@media (max-width: 767px) {
    .header-layout4 .header-social a {
        margin-right: 8px;
    }
}

.header-layout4 .header-btns {
    margin-right: 15px;
}

.header-layout4 .vs-menu-toggle {
    float: right;
}

.header-layout4 .menu-style1 > ul > li {
    padding: 36px 0;
    margin: 0 20px;
    /* Extra large devices */
}

@media (max-width: 1500px) {
    .header-layout4 .menu-style1 > ul > li {
        margin: 0 5px;
    }
}

.header-layout4 .menu-style1 > ul > li > a {
    font-size: 16px;
}

.header-layout4 .sideMenuToggler {
    background-color: transparent;
    border: 0;
    padding: 0;
    margin-left: 40px;
    color: var(--white-color);
    /* Large devices */
    /* Medium devices */
}

    .header-layout4 .sideMenuToggler:hover {
        color: var(--title-color);
    }

@media (max-width: 1199px) {
    .header-layout4 .sideMenuToggler {
        margin-left: 15px;
    }
}

@media (max-width: 991px) {
    .header-layout4 .sideMenuToggler {
        display: none;
    }
}

.header-layout4 .header-top {
    position: relative;
    z-index: 1;
    padding: 0 315px 0 0;
    /* Extra large devices */
    /* Large devices */
}

@media (max-width: 1500px) {
    .header-layout4 .header-top {
        padding: 0 100px 0 0;
    }
}

@media (max-width: 1199px) {
    .header-layout4 .header-top {
        padding: 0 15px 0 0;
    }
}

.header-layout4 .header-top__left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 11px 0 11px 315px;
    /* Extra large devices */
    /* Large devices */
}

@media (max-width: 1500px) {
    .header-layout4 .header-top__left {
        padding: 11px 0 11px 100px;
    }
}

@media (max-width: 1199px) {
    .header-layout4 .header-top__left {
        padding: 11px 0 11px 15px;
    }
}

.header-layout4 .header-top__left::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--title-color);
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
}

.header-layout4 .header-contact li {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

    .header-layout4 .header-contact li i {
        width: inherit;
        height: inherit;
        background-color: transparent;
    }

.header-layout4 .header-links > ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    gap: 35px;
    /* Large devices */
}

@media (max-width: 1199px) {
    .header-layout4 .header-links > ul {
        gap: 15px;
    }
}

.header-layout4 .header-links > ul > li > a {
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
}

    .header-layout4 .header-links > ul > li > a:hover {
        color: var(--title-color);
    }

.header-layout4 .sticky-wrapper {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 40px;
    /* Large devices */
}

@media (max-width: 1199px) {
    .header-layout4 .sticky-wrapper {
        padding-right: 15px;
    }
}

.header-layout4 .sticky-wrapper .sticky-active {
    flex: 1;
}

.header-layout4 .sticky-wrapper .header-box {
    position: relative;
    padding: 0 40px 0 40px;
    /* Extra large devices */
}

@media (max-width: 1500px) {
    .header-layout4 .sticky-wrapper .header-box {
        padding: 0 0px 0 0px;
    }
}

.header-layout4 .sticky-wrapper .header-box::before {
    background-color: var(--white-color);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-top-right-radius: 15px;
    left: 0;
}

.header-right ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.item2 {
    display: flex;
    align-items: center;
    padding: 24px 40px;
    border-right: 1px solid var(--theme-color);
    margin-right: 40px;
    gap: 14px;
    /* Extra large devices */
}

@media (max-width: 1500px) {
    .item2 {
        display: none;
    }
}

.item2__icon {
    min-width: max-content;
}

.item2__text > a {
    display: block;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Jost';
    font-weight: 600;
    color: var(--title-color);
}

.item2:hover .item2__text > a {
    color: var(--theme-color);
}

.link {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--title-color);
    gap: 12px;
}

    .link > i {
        min-width: 20px;
        min-height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--theme-color2);
        border-radius: 50%;
        transition: all ease 0.4s;
    }

    .link:hover > i {
        background-color: var(--theme-color);
    }

.hero-layout4,
.hero-layout5 {
    position: relative;
}

    .hero-layout4 .hero-slide,
    .hero-layout5 .hero-slide {
        padding: 242px 0;
        position: relative;
        z-index: 1;
        /* Small devices */
    }

@media (max-width: 767px) {
    .hero-layout4 .hero-slide,
    .hero-layout5 .hero-slide {
        padding: 100px 0;
        background-size: cover;
        min-height: 541px;
    }
}

.hero-layout4 .hero-slide::before,
.hero-layout5 .hero-slide::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--title-color);
    opacity: 0.4;
    z-index: -1;
    top: 0;
    left: 0;
}

.hero-layout4 .icon-btn,
.hero-layout5 .icon-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 11%;
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 991px) {
    .hero-layout4 .icon-btn,
    .hero-layout5 .icon-btn {
        left: 0;
    }
}

@media (max-width: 767px) {
    .hero-layout4 .icon-btn,
    .hero-layout5 .icon-btn {
        opacity: 0;
    }
}

.hero-layout4 .icon-btn.next-btn,
.hero-layout5 .icon-btn.next-btn {
    left: auto;
    right: 11%;
    /* Medium devices */
}

@media (max-width: 991px) {
    .hero-layout4 .icon-btn.next-btn,
    .hero-layout5 .icon-btn.next-btn {
        right: 0;
    }
}

.hero-layout4 .hero-subtitle,
.hero-layout5 .hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-color2);
    display: inline-block;
    margin-bottom: 25px;
}

.hero-layout4 .hero-title,
.hero-layout5 .hero-title {
    color: var(--white-color);
    margin-bottom: 50px;
}

.hero-layout4 .hero-form,
.hero-layout5 .hero-form {
    padding: 45px 35px 19px 35px;
    box-shadow: 0px 6px 30px rgba(255, 104, 26, 0.15);
    border-radius: 0px 0px 20px 20px;
    margin: 0 -35px;
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 991px) {
    .hero-layout4 .hero-form,
    .hero-layout5 .hero-form {
        margin: 0 0;
    }
}

@media (max-width: 767px) {
    .hero-layout4 .hero-form,
    .hero-layout5 .hero-form {
        padding: 15px;
    }
}

.hero-layout4 .hero-form .vs-btn,
.hero-layout5 .hero-form .vs-btn {
    width: 100%;
}

.hero-layout4 .hero-form input,
.hero-layout4 .hero-form .form-select,
.hero-layout5 .hero-form input,
.hero-layout5 .hero-form .form-select {
    height: 60px;
    padding: 0 30px 0 55px;
}

.hero-layout4 .hero-form .form-group > i,
.hero-layout5 .hero-form .form-group > i {
    top: 22px;
    left: calc(var(--bs-gutter-x) / 2 + 15px);
    color: #505050;
}

.about--layout4 .sec-text {
    max-width: 78%;
    /* Medium devices */
}

@media (max-width: 991px) {
    .about--layout4 .sec-text {
        max-width: 100%;
    }
}

.about--layout4 .title-area {
    text-align: left;
}

.about-list2 {
    display: block;
}

    .about-list2 > li {
        margin-right: 0;
        margin-bottom: 20px;
        padding-left: 50px;
        font-size: 22px;
        font-weight: 600;
        color: var(--title-color);
        /* Small devices */
    }

@media (max-width: 767px) {
    .about-list2 > li {
        margin-bottom: 12px;
        padding-left: 40px;
        font-size: 16px;
    }
}

.about-list2 > li::before {
    content: "\f00c";
    width: 24px;
    height: 24px;
    outline: none;
    background-color: var(--theme-color2);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 1px;
    font-family: var(--icon-font);
    text-align: center;
    font-size: 10px;
    color: var(--white-color);
    line-height: 24px;
}

.img-box4,
.img-box5 {
    display: flex;
    gap: 38px;
    position: relative;
    margin-left: -78px;
    margin-bottom: 30px;
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 991px) {
    .img-box4,
    .img-box5 {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .img-box4,
    .img-box5 {
        gap: 5px;
    }

    .img-box5 {
        padding-left: 0px !important;
    }
}

.img-box4 .img1,
.img-box4 .img2,
.img-box5 .img1,
.img-box5 .img2 {
    border-radius: 155px;
}

.img-box4 .img3,
.img-box5 .img3 {
    border-radius: 170px;
    margin-top: -28px;
    position: relative;
    z-index: -1;
    /* Small devices */
}

@media (max-width: 767px) {
    .img-box4 .img3,
    .img-box5 .img3 {
        margin-top: -60px;
    }
}

.img-box4 .img1,
.img-box5 .img1 {
    min-width: 321px;
    /* Small devices */
}

@media (max-width: 767px) {
    .img-box4 .img1,
    .img-box5 .img1 {
        min-width: 270px;
    }
}

.img-box4 .img2,
.img-box5 .img2 {
    min-width: 270px;
    /* Small devices */
}

@media (max-width: 767px) {
    .img-box4 .img2,
    .img-box5 .img2 {
        min-width: 220px;
    }
}

.img-box4 .discount,
.img-box5 .discount {
    position: absolute;
    min-width: 195px;
    min-height: 195px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
}

    .img-box4 .discount > span,
    .img-box5 .discount > span {
        display: block;
        font-size: 64px;
        font-weight: 600;
        color: var(--white-color);
        line-height: 1;
    }

    .img-box4 .discount > p,
    .img-box5 .discount > p {
        margin-bottom: 0;
        font-size: 24px;
        font-weight: 600;
        color: var(--white-color);
    }

.img-box4__img2 {
    /* Small devices */
}

@media (max-width: 767px) {
    .img-box4__img2 {
        display: none;
    }
}

.img-box4__img1 {
    /* Small devices */
}

@media (max-width: 767px) {
    .img-box4__img1 {
        width: 100%;
    }
}

.img-box4 .discount {
    /* Small devices */
}

@media (max-width: 767px) {
    .img-box4 .discount {
        top: auto;
        transform: translate(-50%, 0%);
    }
}

.fact--layout1 {
    padding: 185px 0 155px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .fact--layout1 {
        padding: 120px 0 90px;
    }
}

.fact-block {
    text-align: center;
    margin-bottom: 30px;
}

.fact-block__icon {
    min-width: 120px;
    min-height: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-position: 100% 100%;
    margin-bottom: 15px;
}

.fact-block__number {
    display: block;
    font-size: 48px;
    font-weight: 600;
    color: var(--white-color);
    line-height: 1;
    margin-bottom: 7px;
}

.fact-block__text {
    margin-bottom: 0;
    color: var(--white-color);
}

.package-style3 {
    border: 2px solid var(--theme-color);
}

    .package-style3 .package-title {
        margin: 3px 0 3px;
        text-transform: capitalize;
        min-height: 50px;
    }

    .package-style3 .package-price {
        font-weight: 700;
        font-size: 32px;
        color: var(--theme-color2);
        text-align: right;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

        .package-style3 .package-price > span {
            display: block;
            font-size: 20px;
            font-weight: 400;
            color: var(--theme-color);
        }

    .package-style3 .package-review > i {
        color: var(--theme-color);
    }

    .package-style3 .package-footer {
        align-items: end;
        margin-top: 0;
        min-height: 55px;
    }

    .package-style3 .package-title {
        font-size: 14px;
        font-weight: 600;
        font-family: 'Jost';
        text-align: center;
        line-height: 18px;
    }

    .package-style3 .package-text {
        font-size: 18px;
    }

.gallery-style5 {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0 107px;
    border-radius: 28px;
    margin-top: -270px;
    z-index: 1;
    overflow: hidden;
    /* Medium devices */
}

@media (max-width: 991px) {
    .gallery-style5 {
        min-height: 390px;
        padding: 0 30px;
    }
}

.gallery-style5::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1c1c1c 1.32%, rgba(28, 28, 28, 0) 100%);
    z-index: -1;
    left: 0;
}

.gallery-style5 .gallery-content {
    max-width: 300px;
}

.gallery-style5 .play-btn {
    margin-bottom: 70px;
}

    .gallery-style5 .play-btn > i {
        color: var(--white-color);
        background-color: rgb(55, 212, 217);
        width: var(--icon-size, 100px);
        height: var(--icon-size, 100px);
        line-height: var(--icon-size, 100px);
    }

    .gallery-style5 .play-btn::before, .gallery-style5 .play-btn::after {
        background-color: rgba(255, 255, 255, 0.2);
        animation-name: ripple2;
    }


.features-style3 .features-bg {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
    z-index: -1;
}

.features-style3 .features-image {
    margin: 0 0 30px;
    background-color: var(--theme-color);
}

    .features-style3 .features-image::before {
        display: none;
    }

    .features-style3 .features-image::after {
        display: none;
    }

.features-style3 .features-title,
.features-style3 .features-text {
    color: var(--title-color);
    transition: 0.5s ease-in-out;
}

.features-style3 .features-title {
    margin-bottom: 15px;
}

.features-style3:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

    .features-style3:hover .features-bg {
        opacity: 1;
        visibility: visible;
        transition: 0.5s ease-in-out;
    }

    .features-style3:hover .features-image {
        background-color: var(--theme-color2);
    }

        .features-style3:hover .features-image::after {
            opacity: 0;
            visibility: hidden;
            transition: 0.5s ease-in-out;
        }

    .features-style3:hover .features-title,
    .features-style3:hover .features-text {
        color: var(--white-color);
        transition: 0.5s ease-in-out;
    }

.destination-style2,
.destination-style3 {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

    .destination-style2::before,
    .destination-style3::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 235px;
        background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
        border-radius: 0px 0px 10px 10px;
        bottom: 0;
        z-index: 1;
    }

    .destination-style2 .destination-img,
    .destination-style3 .destination-img {
        width: 100%;
        transition: all 1s ease-in-out 0s;
        max-height: 250px;
        min-height: 250px;
    }

    .destination-style2 .destination-info,
    .destination-style3 .destination-info {
        position: absolute;
        bottom: 40px;
        left: 30px;
        z-index: 1;
    }

    .destination-style2 .destination-name,
    .destination-style3 .destination-name {
        margin-bottom: 12px;
    }

        .destination-style2 .destination-name > a,
        .destination-style3 .destination-name > a {
            color: var(--white-color);
            font-size: 15px;
        }

            .destination-style2 .destination-name > a:hover,
            .destination-style3 .destination-name > a:hover {
                color: var(--theme-color);
            }

    .destination-style2 .destination-text,
    .destination-style3 .destination-text {
        margin-bottom: 18px;
        color: var(--white-color);
    }

    .destination-style2 .destination-price,
    .destination-style3 .destination-price {
        font-size: 36px;
        color: var(--theme-color);
        font-weight: 700;
    }

    .destination-style2:hover .destination-img {
        transform: scale(1.2) rotate(5deg);
        transition: all 1s ease-in-out 0s;
    }

.benefits--layout1 {
    position: relative;
    z-index: 1;
}

    .benefits--layout1 .img1 {
        position: absolute;
        min-width: 47%;
        min-height: 460px;
        bottom: 0;
        left: 0;
        border-top-right-radius: 50px;
        /* Extra large devices */
        /* Large devices */
        /* Medium devices */
        /* Small devices */
    }

@media (max-width: 1500px) {
    .benefits--layout1 .img1 {
        min-width: 570px;
    }
}

@media (max-width: 1199px) {
    .benefits--layout1 .img1 {
        min-width: 470px;
    }
}

@media (max-width: 991px) {
    .benefits--layout1 .img1 {
        position: relative;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .benefits--layout1 .img1 {
        min-width: 100%;
    }
}

.benefits-element1 {
    min-width: 70%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: #f5f5f5;
    border-top-left-radius: 50px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .benefits-element1 {
        min-width: 100%;
    }
}

.item {
    display: flex;
    gap: 58px;
    padding-right: 92px;
    margin-bottom: 45px;
    /* Large devices */
    /* Small devices */
}

@media (max-width: 1199px) {
    .item {
        gap: 20px;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .item {
        padding-right: 0;
        gap: 15px;
    }
}

.item:last-child {
    margin-bottom: 0;
}

.item__icon {
    min-width: 72px;
    max-height: 72px;
    margin-top: 6px;
}

.item__title {
    color: var(--theme-color);
    margin-bottom: 7px;
    font-weight: 500;
}

.item__text {
    margin-bottom: 0;
}

.blog-style5 {
    min-height: 570px;
    display: flex;
    align-items: flex-end;
    padding: 35px;
    border-radius: 20px;
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 991px) {
    .blog-style5 {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .blog-style5 {
        padding: 10px;
    }
}

.blog-style5 .blog-content {
    background: #fffffff0;
    padding: 0 12px 12px;
    text-align: center;
    border-radius: 10px;
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 991px) {
    .blog-style5 .blog-content {
        padding: 0 20px 20px;
    }
}

@media (max-width: 767px) {
    .blog-style5 .blog-content {
        padding: 0 10px 10px;
    }
}

.blog-style5 .blog-date {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: var(--white-color);
    background: #ad8b3a;
    font-weight: 600;
    padding: 0 22px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.blog-style5 .blog-body {
    margin-top: -18px;
}

.blog-style5 .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
}

    .blog-style5 .blog-link::after {
        position: absolute;
        content: "";
        height: 16px;
        width: 1px;
        background-color: #505050;
        right: 0;
    }

    .blog-style5 .blog-link:last-child {
        padding-right: 0;
        margin-right: 0;
    }

        .blog-style5 .blog-link:last-child::after {
            display: none;
        }

.offer-block {
    padding: 80px 65px 50px;
    border: 3px solid #505050;
    border-radius: 24px;
    min-height: 250px;
    margin-bottom: -125px;
    position: relative;
    z-index: 9;
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 991px) {
    .offer-block {
        padding: 80px 65px 50px;
    }
}

@media (max-width: 767px) {
    .offer-block {
        padding: 30px 30px 0;
        min-height: 100%;
        text-align: center;
    }
}

.footer-layout4,
.footer-layout5 {
    padding-top: 170px;
}

    .footer-layout4 .footer-newsletter2,
    .footer-layout5 .footer-newsletter2 {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .footer-layout4 .copyright-wrap,
    .footer-layout5 .copyright-wrap {
        text-align: center;
        padding: 12px 25px;
        position: relative;
        z-index: 2;
        border-top: 1px solid transparent;
        background: #ff681a;
    }

    .footer-layout4 .widget-area2,
    .footer-layout5 .widget-area2 {
        padding-top: 60px;
        padding-bottom: 0px;
    }

    .footer-layout4 .footer-widget.widget_nav_menu li {
        float: left;
        width: 50%;
    }

        .footer-layout4 .footer-widget.widget_nav_menu li a,
        .footer-layout5 .footer-widget.widget_nav_menu li a {
            padding-left: 0;
            margin-bottom: 10px;
        }

    .footer-layout4 .footer-widget .newsletter-form .form-control,
    .footer-layout5 .footer-widget .newsletter-form .form-control {
        margin-bottom: 25px;
        background-color: #505050;
        height: 60px;
        border: 1px solid transparent;
    }

    .footer-layout4 .copyright-menu li::after,
    .footer-layout5 .copyright-menu li::after {
        background-color: var(--theme-color2);
    }

    .footer-layout4 .footer-widget .newsletter-form .vs-btn,
    .footer-layout5 .footer-widget .newsletter-form .vs-btn {
        border-radius: 10px;
    }

    .footer-layout4 .social-style1 a,
    .footer-layout5 .social-style1 a {
        border: 1px solid var(--theme-color2);
    }

        .footer-layout4 .social-style1 a:hover,
        .footer-layout5 .social-style1 a:hover {
            border-color: var(--theme-color);
        }

    .footer-layout4 .copyright-text a {
        color: var(--white-color);
        text-decoration: underline;
    }

        .footer-layout4 .copyright-text a:hover {
            color: var(--theme-color);
        }

    .footer-layout4 .vs-widget-about .footer-text {
        max-width: 257px;
    }

.testimonial-style4 {
    padding-bottom: 317px;
}

.testi-style3 {
    position: relative;
    z-index: 1;
    min-height: 383px;
    max-width: 373px;
    z-index: 1;
    margin-bottom: 30px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .testi-style3 {
        background-color: var(--white-color);
        padding: 15px;
        min-height: 100%;
    }
}

.testi-style3 .testi-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    max-height: 373px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .testi-style3 .testi-bg {
        display: none;
    }
}

.testi-style3 .testi-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.testi-style3 .testi-avater {
    min-width: 114px;
    min-height: 114px;
    border-radius: 50%;
    border: 5px solid var(--white-color);
    overflow: hidden;
    filter: drop-shadow(4px 9px 4px rgba(0, 0, 0, 0.12));
    margin-left: 60px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .testi-style3 .testi-avater {
        margin-left: 0;
    }
}

.testi-style3 .testi-avater > img {
    min-width: 114px;
    min-height: 114px;
}

.testi-style3 .testi-client {
    text-align: right;
    padding-right: 28px;
}

.testi-style3 .testi-degi {
    display: inline-block;
    color: var(--theme-color2);
    margin-bottom: 6px;
    line-height: 1;
}

.testi-style3 .testi-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .testi-style3 .testi-name {
        font-size: 16px;
    }
}

.testi-style3 .testi-text {
    padding: 40px 55px 78px 63px;
    line-height: 30px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .testi-style3 .testi-text {
        padding: 20px 0px 0;
        margin-bottom: 0;
    }
}

.testi-style3 .testi-rating > i {
    color: var(--theme-color);
}

.testi-style3 .testi-icon {
    position: absolute;
    bottom: 15px;
    right: 50px;
}

@media (max-width: 1790px) {
    .header-layout4 .menu-style1 > ul > li {
        margin: 0 8px;
    }

    .header-layout4 .sticky-wrapper .header-box {
        padding: 0 15px 0 15px;
    }

    .item2 {
        padding: 24px 15px;
        margin-right: 15px;
        gap: 15px;
    }
}
/* Extra large devices */
@media (max-width: 1500px) {
    .header-layout4 .menu-style1 > ul > li {
        margin: 0 5px;
    }
}

.header-layout5 .menu-style1 > ul > li {
    padding: 26px 0;
}

    .header-layout5 .menu-style1 > ul > li > a {
        color: var(--white-color);
    }

        .header-layout5 .menu-style1 > ul > li > a:hover {
            color: #FFEB3B;
        }

.header-layout5 .vs-menu-toggle:hover {
    background-color: var(--theme-color2);
}

.header-layout5 .sticky-wrapper {
    /*margin-bottom: -47px;*/
    background-color: transparent;
    /* Large devices */
}

@media (max-width: 1199px) {
    .header-layout5 .sticky-wrapper {
        margin-bottom: -79px;
    }
}

.header-layout5 .header-box {
    background-color: ad8b3a;
    padding: 0px 10px 0px 30px;
}

.header-layout5 .will-sticky .sticky-active {
    background-color: var(--title-color);
}

.header-layout5 .header-top {
    background-color: #717171;
    padding: 4px;
}

.header-layout5 .items {
    display: flex;
    align-items: center;
}

.header-layout5 .item2 {
    border-right: none;
    margin-right: 0;
    padding-left: 0;
    max-width: 310px;
    /* Extra large devices */
}

@media (max-width: 1500px) {
    .header-layout5 .item2 {
        display: flex;
    }
}

.header-layout5 .item2__text {
    font-weight: 600;
    color: var(--title-color);
}

    .header-layout5 .item2__text > a {
        color: #000000;
    }

        .header-layout5 .item2__text > a:hover {
            color: var(--theme-color2);
        }

.header-layout5 .item2:last-child {
    padding-right: 0;
}

.header-layout5 .header-right > ul {
    gap: 40px;
}

.header-layout5 .header-dropdown .dropdown-toggle {
    background-color: transparent;
    height: 20px;
    padding-right: 20px;
}

    .header-layout5 .header-dropdown .dropdown-toggle:hover {
        color: var(--theme-color);
    }

    .header-layout5 .header-dropdown .dropdown-toggle::after {
        margin-left: 9px;
        border-top: 0;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        content: "\f107";
        font-family: var(--icon-font);
    }

    .header-layout5 .header-dropdown .dropdown-toggle > img {
        margin-right: 20px;
    }

.header-layout5 .vs-btn.style7 {
    min-height: 50px;
    padding: 15px 30px;
}

.hero-layout5 .hero-title {
    font-size: 84px;
    padding-right: 40px;
    /* Extra large devices */
    /* Small devices */
}

@media (max-width: 1500px) {
    .hero-layout5 .hero-title {
        font-size: 60px;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .hero-layout5 .hero-title {
        font-size: 36px;
    }
}

.hero-layout5 .hero-form {
    margin: 0 0;
}

.hero-layout5 .hero-content {
    /* Large devices */
}

@media (max-width: 1199px) {
    .hero-layout5 .hero-content {
        text-align: left;
    }
}

.hero-layout5 .icon-btn {
    /* Large devices */
}

@media (max-width: 1199px) {
    .hero-layout5 .icon-btn {
        left: 5%;
    }
}

.hero-layout5 .icon-btn.next-btn {
    /* Large devices */
}

@media (max-width: 1199px) {
    .hero-layout5 .icon-btn.next-btn {
        right: 5%;
    }
}

.hero-layout5 .hero-slide {
    min-height: 460px;
}

.img-box5 {
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    /* Large devices */
    padding-left: 20px;
}

@media (max-width: 1199px) {
    .img-box5 {
        margin-left: 0;
        justify-content: center;
    }
}

.img-box5 .img-box__img1 {
    display: flex;
    gap: 20px;
    align-items: end;
    /* Small devices */
}

@media (max-width: 767px) {
    .img-box5 .img-box__img1 {
        flex-direction: column;
        align-items: center;
    }
}

.img-box5 .img1 {
    min-width: 320px;
    max-height: 313px;
    border-radius: 0;
    border-top-left-radius: 115px;
}

.img-box5 .img2 {
    min-width: 317px;
    border-radius: 0;
    border-top-right-radius: 75px;
}

.img-box5 .img-box__img2 {
    text-align: center;
}

.img-box5 .img3 {
    border-radius: 0;
    margin-top: 0;
    border-bottom-left-radius: 80px;
}

.about--layout5 {
    z-index: 1;
}

    .about--layout5 .element {
        bottom: 0px;
        left: 0;
        position: absolute;
        width: 100%;
        min-height: 729px;
        background: linear-gradient(360deg, rgb(161 252 255 / 55%) -7.91%, #ffffff 100%);
        z-index: -2;
    }

    .about--layout5 .about-content {
        position: relative;
        padding-left: 60px;
        /* Medium devices */
    }

@media (max-width: 991px) {
    .about--layout5 .about-content {
        padding-left: 0;
    }
}

.about--layout5 .about-content .element {
    position: absolute;
    min-width: 950px;
    min-height: 900px;
    border-radius: 103px 103px 103px 0;
    background: var(--white-color);
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    left: -40%;
    /* Large devices */
}


@media (max-width: 1199px) {
    .about--layout5 .about-content .element {
        display: none;
    }
}

.about--layout5 .about-content .vs-btn {
    margin-top: 50px;
}

.vs-card {
    display: flex;
    align-items: center;
    gap: 0px;
}

.vs-card__img {
    min-width: 125px;
    min-height: 80px;
    overflow: hidden;
}

.vs-card .sec-subtitle {
    margin-bottom: 0;
    color: var(--title-color);
    font-size: 20px;
    line-height: 30px;
}

.item.style2 {
    gap: 20px;
    padding-right: 0;
}

    .item.style2 .item__icon {
        margin-top: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 90px;
        min-height: 90px;
        transition: all ease 0.4s;
    }

    .item.style2 .item__title {
        color: var(--title-color);
    }

    .item.style2 .item__text {
        padding-right: 10px;
    }

    .item.style2:hover .item__icon {
        /* background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODkiIGhlaWdodD0iODgiIHZpZXdCb3g9IjAgMCA4OSA4OCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CjxtYXNrIGlkPSJtYXNrMF84OF8zOCIgc3R5bGU9Im1hc2stdHlwZTphbHBoYSIgbWFza1VuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeD0iMCIgeT0iMCIgd2lkdGg9Ijg5IiBoZWlnaHQ9Ijg4Ij4KPHJlY3Qgd2lkdGg9Ijg5IiBoZWlnaHQ9Ijg3Ljk2ODIiIGZpbGw9InVybCgjcGF0dGVybjApIi8+CjwvbWFzaz4KPGcgbWFzaz0idXJsKCNtYXNrMF84OF8zOCkiPgo8cmVjdCB3aWR0aD0iODkuMDgxNyIgaGVpZ2h0PSI4Ny45NjgyIiBmaWxsPSIjMzdENEQ5Ii8+CjwvZz4KPGRlZnM+CjxwYXR0ZXJuIGlkPSJwYXR0ZXJuMCIgcGF0dGVybkNvbnRlbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHdpZHRoPSIxIiBoZWlnaHQ9IjEiPgo8dXNlIHhsaW5rOmhyZWY9IiNpbWFnZTBfODhfMzgiIHRyYW5zZm9ybT0ibWF0cml4KDAuMDA2MDYwNjEgMCAwIDAuMDA2MTMxNjkgMCAtMC4wMDU4NjQ1NykiLz4KPC9wYXR0ZXJuPgo8aW1hZ2UgaWQ9ImltYWdlMF84OF8zOCIgd2lkdGg9IjE2NSIgaGVpZ2h0PSIxNjUiIHhsaW5rOmhyZWY9ImRhdGE6aW1hZ2UvcG5nO2Jhc2U2NCxpVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBS1VBQUFDbENBWUFBQUE5S3ozYUFBQWE0a2xFUVZSNEFlMWRpMUhqeWhMZEVHNElEbUV6ZUdTd3JzS1NKZGVyZ2d3dUdiQVpRQWFRd1c0R2tBRTNBMjhHaEtEM3p1bnBVV3M4a21VakxyYlZWRkg2eTlMTW1kUGZhWDM3NW4vZUF0NEMzZ0xlQXQ0Q25SWm9pdUo3VTFXTFpybjhpLy9WY3RIVTViS3BWbGROVlYxeHVWeitoWXYwbk00TlBubWpxWmFMVC80SnYvMVh0d0NCUmRBVnQwMkYvd0M4OWVxdXFkZDN6V2J6WFo4UmdEZ0ZVRFFiTTNBY3BObzlsN05zYnBkL0VZaUIvZkJtd3BEQ2x2cW1PQzhlTStmcThYUVpXWlpBQnN2aVg0RXZiRGNGd09WM1ZsZE5lVTAyNXpPQzZjUHpwcy9sMnlmWUFnb0VnaEdNbzZJWTZ5cTZ1eUtiNGxKWXNnVXFyMWNSeitzVUdNc0Y3eVAzdWhYUlg0a0tBRVltKzVZL3VhekwxNllxbnBwMThYZERaaTZYd29JQThEZ3hyYyt2VFUzVkErQWZNWEQwR2wrZVdBdEVwZ0hBSXB0VlYzaE1IZ3ZBNVRyUHFSYnNlQVVpZ0xiWlJIQ25yeWRnYmdFMkJMYU9McnVwZ2pxeHVpTElLYkxiKzlqZjRmSEFsQTVHMnpJbnVxN3NwNCtIam8vckZOM0xCZGhKOStreTdWd0ZwUjdITWoxSGovRTM2K3VicGk0ZnlJUjE4ZGhVNVUvKzErVU5tVkZaV1pjWUVFWG1PU0NLd1h6cjhoZXYzNngva0dVQndnd2JScDA0YzYvNGZDTlpXTS8zNVVRdFFOWXJyNWU0SFVVdFJMSVIxeC81R1FLVVlJS09DTEFWVDAxVnZEUjF1VzAyNVh0VGw4MkIvMXRlajN0c3lyZW1LbjQzNi9LaEtZTTR4MitCcGNISTFFdlh2L2xiL04wVldUMzNQbVJlREx3TVFGTUd6MTN2K3lab0FYWmN0YnB2TmdCS3RhRHlUL0c2eTBCamY0NmRSNll6d0RzY2RJZUN0RDFmUVA0V1FQZ2lvQlF2QUZteExwOEpaREpwWGhjVnZiYjhhYTMyc2UvdjUzMmdCY2lNZGZFbUlxNzQzdFJ3NlJTUE9kR01uOG1KUHYxNTNtdU5hNDlpdlJaUW53cGV2R3Z4VzFoYUxmdWdJZ2h6MzZiNnExcm9NbmhiL1RROVQ5dkJsMGUyQUJzWXVoc0J0TG9Uc1ZRdHJIOVJieDJZTkN2dXpnT0l2V29CeEQ5RStrT1VEbUJRcUJiR1ZZUjJvQVJSL2JiYUZmM3VTbEswSExFVWdOSFJmVStSRnR3enVWdXhJM0pHQVMxYWl2dGo5TUIvaVJGN2dUajArd0RwRXdlYUFqQjVmd0duTW16TG1ybjI4MzE3V2lDdzNUMzllZ0JpUm9sUGJ5RzZWTnZ3b21QUk1CbnEyQXM0UmhGLzI0S3p1RVhiNU1RMTJ6VUJidHFPdnAxcEFZN3V1bnlEVmNyRzdXRkhGVUVVNWNIZEkyQXVuazViVHp5S0ZVY01udUtGZ3hpV081ejN0YlNmYldJQ0Y2SytMbTkwUDlwTTEzMFpXb0N1bk1DRWNiU1BZRWJiZ09FNldLaVhKcUpIZ0RFRmVmRWk3UUZ3d3U4cHpMblRYdkJZT0NCdHM4ZzZIZENNc01EOVFSZFAxa0N4VjBxRGkvSk9sb1FGL2FrV2NOcnBaN0t0MWpsY1oyRE80RXh2bHlFczZrNzJGbDdxNUJaeHZiNGJNMnJKcWtHY2l6dW8zRG9nOXd3UytIVGhtTjhVajdEUzJ4NEl4QkJJSWQwL3UyMWh5QkI5eVlUL2hocWtFY2U1aStuRHBNTTI1enJTZGxhQzBPM1pMU1Z1eTFqdms0cVNNWTNnekxpSEVVZUJ0TFhVdGMwaHFiQXVSbUtiTTZESEwzb1pmV2J3R3lJS0U1UnNOc2FBd3MzalVOaEhOZm9VSFRlRGUwRGFNTDdlZGF5bmZTRzY2SVdteUlrUE1hUm4xYXM3Ty9vVW5MbDliRGdrUURnZ2o3REM5d3d1SnBmQUFBcCtUZFhWbWJGVVhTbEFxUzRoaWpSQUhMYnZ6bUtkd0ZLWHo1NFhJNXRDS1VmbURCckN3VGc5R0x0dEtycm1CcTRqRTNnQU1FMWYwVWhhRjMrZkJlRDJQYVNJQ0hsWis1SzU2NXE2K0ErVmNjbFJkSGJzZ3VkendhbFpWL1YxZEtwckgybS9pZnExNi9QVTg4NWlLZjdFZHZRTlBUU05HSXFUT1lRRjk0alZmeE9NbmQ4cWtEcjMzR1NBcVgxSFlHYmNTbnI4cEplV0lZY2VGS093MlJSUExxWlBCcWhJOHNCc3o1aTVqLzZMYkJsRXVtNFA5ZTFKSFdNYTFRamZJMGNkY2lNeFdqMDgrTG5pdWNPSSt3WkE4VTQvc3RVcENWUkUzVlkwZ0FoVW80T2VGQURUaDZHVlBZTGVHWm1wbzZnK2RuckJDWFhrdm80K3crTUkreHBnYWwvVFRRUUp4N2xQK1N4NFBmZkxsMlMrdGJoNzlHWHc0TGtIbzhoR1RKWnhXWGY1bkt6NlVwVS9zLzFud0tvZ3paMzNwZnNJeUl5L0svZFFZZm9Da2lqZzhuRXIreURSK2dXTVc2M3VjLzJvKzBCQVNEYlc3Wk5ZOHFIcTRuSE13eENRTEFLd3VuTTk4Z3NBZHV3QUNCS3dyNDlENXRZZ2VQdXUvWlQ5TWo5a3YrdW4yYXp1ZVM0clNEaERucXpJN2dYdXJnL1RBb3BpZk1DZFpNLzkxSFc2RDhZWU5uU0lJeHZhR2ZMOHdHZ1lQVE1KelFMTTVqVFkvZi9hT3ZYSVRma0xQNmg1anJrZkYyb1BXZER1K2psemowSHhic09SdHIrcHhzRWlSNzJrQTJjTzJQdDhhUDMvWWNFWFBLRDhZOGJocmdnbmNEbjlFL1VmZzAreVZ6eVlFZW5ubkRKNHQ3bStWakNwMGFzZUdOMy82VXZxaDNDb2l1WEZtWFRwajhyRFlWNHk1bWV2N3M5YWJQa2dTUVpKOFpiMnQ5MVdNckw3UG5WZGdZZ2ZHWXB2TjV3N2d3b1crSGNXdk1BMmVMQkFTNW1ST0RIK1RIdnU1T3N3YmdoSUpPdjJPY2ZCb3JDeXlaSSt3L0FDQVNuTWFWeEZPdjhuQmVma0FFeHZpRENpN3N2cEZXcnd0UDVJZC8xY0xDQXAvVnJEaDMxdnB2UDJFWmJpWi9JbEdMRHZwcEpsN25ya1pZUFJxbU90ZnRraExWT1NrYUs4UjZyMjRlamcvWU9nUk5ZNHNrbGNqMHlNQTl1UkY3YmVGeU1QUG13U2xaR3lCd051NklKOStnS2Q2U2o2NlRIdCtRQlN5U2ZqbTZSSTE2a3d5UlNMSVp5Tk9xWmcxR1h1b3Vna2QvZlAvQUFKWUZiRlN4WVhnU0hwejU3S0dxYytFRzdHRy9mb2syUkppV3ZQczFPVU1lYThOTmI0RUVCenh3N2FaNjNzUHFZVXNLTGlSU21aNUhQdW1GbS9lL0hlaHhHQWp0STBJK1lQQXlSaW1ZWnljZFBjRFVJdFNQZ21uU1c5RFRwTzlSUXZUVlUrVzB5bHh3L2E3cGo3R1JIdStaRStJQ01wOWVSQkFIQk5WZDBpYWVNZzhPVk9UaGx5ZDVzUkhHZEpaMG5CUUkvUlExQnliazkrbWtVT2U3MzdOTFRJbThLMFQwYUN1NENjSlNOTDZzRHNVZldJSVg0ZVJyNzQxZ3U2OUlDVitZeGZteC9RWTNHSkg5QUg4YVZMQzhYQUVGdVMyUEl1cEJTTGNWdUQ2OWhoWTVoMlhVOTJsblNXN0NVbFEyYUtGMTN5OHl2R2lOYjl2VXNWejhxR3VSUEZEZVM2WkcrSEtHUE1lWm1aNWFpWW9udG9yTUdqZ0FRUWgyTGNQTzUrU1JmWGc0T3U5VnVxY2N6UVk3Qko4S0dBSE9FZHZZK2xQUVlmeU1XYXN5akNqMkpwVzRKVE5SQXBqa2NCVU9rMnZaaE9VQWVsTStWZURCVHZPOWdKYVd3VTRRTjZaM3JkNERZcDJHY21PaUQzQWpKSXl3UjR4SS9XSXhyTGxwWnFjK2dNeVJmZUtXTTdaZTduWlF3ZXhkVWtKVjhnemptOWR1NE43ZTkvQUNtMUJrOEVJOHFJRTB1U0ZLNzdlNWZXQXJjbmllWEVMMVVkOEVCdThMakJBNE5uTjVtSG9FVFljVWlFTTNvek1KZUNONUdaaWc1S1o4ckRNREFrd3V1QjZBNUJ4d0lEYmNYV0RsT3lJZ1kvaEg3WUEza0hlbnZWdTFZNHNNWDVPNHlGNzFaWWlkamJOOG5IVTlSY0hUbGFIY21KY0ltRFA5bWtud2hHWGFGVHZHZm1HZjFLem5yT2VzZGlvRy9XSTVONmVoenBCQjN6M1lSS0ljNUpzYnBFSGV4akg4aXZjekQzWkE2eHR1VW1rMk5KeXpwOG1EeUNNYUZiZHdXNTZQNHdLV1V5ZytqM050VTFWR3FIWWxXcnErNjBoKzdISWwyZmRGQitHSlFKMFZFU3MrNVV4cmlXVHg3TFJ6MTVJcHliZFJrL1d1NzZwQVB5dzRDRUNwZEpWd3ZKUFRjNy9uSDZLQUhFZ09UMFV4U2NzZWg2b2V1Rkg4VkFqNyt5MmV4KzZZeXp6SlFodVlSUlkrYmlzSkxhUngvSXIzZFExK1VXK0VyL0tJbFRmVE15cE5aK3FkZWRhWkJ1NUxqNG5rUjgxMldUQWhMYjlJL2JxZHNocHQwcE5HRDFTVjVVci85TTlWQituNWtEM0VoZ0JhamlMUnJhMUNjVHE4aUtiZ0hsekJ2U1ZZOHBWWTlvUUVkUUlyd2QvcmxQL1pKNkFrRm81THRQZmZBQk9hbDB5L2trSWNKRDNvV0FNbUZKQzA0QzFJdWdUc2tTZnErK2NDT2ppUlZyNm44REU2WkF0TnZ1RG5LbW5KZ3Blejh3aWxwRHhGNUhsbHMwaG5YNTdwNTN6S1FkTTJjZHRTcCtwekRUWE40SXl2UUV1eTFHa0NkaU9DQW5KS1dxZkxVWXc3cmFOUkdVdWlNOWtTZXpPcS9YQzNKUVRnaktIZ2M2OFJiRjkyYjFJd2RJbmtTTHFIejJUcG0wVStadTdHU2pPbDFRVnNObDJUeWE0NENjbUpUNlFhbEc5NDZqM0laN0lPOHJuNWN6Y2FjNFUvYUk1bDVQRUkwYjZ6eEhuZW81VzR2KzdsTVBvbDZtVkpVeFdqNDk0UDNtZFlOY2ZFOU1TdHZVdUxZTXlXUHBDU2s0SFpRT3ltbEJXYnczK0Z4aWtNWllha0lHbVRLVHNNRzZsS3BueXR3ZGR3bE4yeWtPY3BzL3lmVXd5NEY1RmxsUUpsVXlVR1BRTzhXQk5DRUc4Qkd3bUNsRVVBWVBVTE5aLzFCQ1RDVjJaOXZEakE3SUNRSFpOSktiYTBEWlRsQzBZTzJBVURjbzYxbXFwZkt2aWJrRlBwMEZEaGVqY1R2S0ZGc3BnTlhVNWJQaUw3dWtheWpNYXB4MnBEanp6TG85TjhWVEY1VGxUOWd1QUtHV28rNEFVaTBpT1VHbTNGTDVkS2FZamlubTNwYnIxUjJzYndVZWJaYXF1dEtDR0xvL0x1TWNDYUMyTG05RWhIdE55bGt6MjlTRENNYU1oaE9Kcy9XZGluQkxpaTBva1dXdS9xTzYvTld1KzhReEIrWkVhaGN3WnR3KzR0MVpkOWd6QWhJcnFrZkt1aWlkd1ZmNTRwMHlVYWRNelR6bmRqOHpSMGY4a3Z4STJISzRIR0M0eUZiSjhLaU9BM0lpVXRxaVJKQXlvVHJPQ1U2alorcnh1R3lxMWIwd1piWFFaZU5mRjNORFp3cEdyc3BYNjR1a1pBNGhSd0EwZ2pCZFVXT0hZaHR4U2RZWThreWhpWmhpM3VDdWlxZXVCRzZCcVBaTGlrZHVkNVJRVEh0a0JmLzFuWGVLaS9DUFkyQjExd0ZsdldKNUlES21FZXM3d0FRSWRTZHJ2RGdvNTgxdVU0aHR2UWUrTG1JTkhhM3lWMVczdzB4cGZVZ0FKT2ZwK0dlVVA4NFNNMmRhNkpNQXBjVVhzQlh3cFVTWVhkSWk2bVNlQzdwOVdzVE1RYVZzZC9TeWVLUVhSLzNna2ZDV2kyeDRNVVZuQjgyazNOVlZVNjhmblMwY21FZGpnRFZQeTU4cXBqWCtUUkxjRkwxVk0xSnNjcHNYMFF0Zi9uVFhrSVB5ZUZBaWtsTklXUllFYWphb0hMMWNOSnZWL1RpbXRLbEZ2Rmh1NkJWOUhaUkhnYklxWGdJanNtNlZSZzY1M0pTL0xGaXp6SWlkMWkzRTdicDhFRUJlM3h6MVVFZnJJUTZDaTJodlpnWmRMeFZYY0tCSHBxd0IyRGJLa3dWbHh5VVV5a3d6YUw1QkhmVGl4WXNUK0VBNWVLRHN1SUlrMjF6WXMzeFhzR1lCcVR0cHBzZG9Ea1MzRWQ4K1o4ZjlsZ2RKdnVLTnJpQVRSbFJ4M1pUWFN3QmNjVGQ2R2NPT2Rma2N3UG5rSDNweXRoek5saXE2MVJYRWp6bFI2dDZHUkorMzBXREVpUXd4YXFwNitIN2UvNU4vdDI3d09DakhnYko0VjFKVDRBbHJCcXNiakpzcERham5EaTdGNng2bVIvRDd6RDd0ZGx5bnpCMjh4VXYwUzJwa01IeklxY0ZjSFlMeVFCK2xJalhlR0FwcmplUU1OM2djbENNRzNNYjRKZVVUeXJDMEYwR1gzRW9iU2xLR1ltMzBNaG8rVUV5WmZsVDhFbkNPZUxDRGxHSy8zK1dBdlhpbnFHNTF5V2Qxa29zS3lMN2VXbS9QYUVDbUovS0d3ZUhwQm84UG90NUJCSXhzNUNNUGpOcHN4UFZEWTdrbHFtY2IwazZ4bHQxV3NhMEhHUmFDZXdpVHl1clZRd1BmWmZzRDdpcnh0aEFNQUpEdzF0RFNEck5oUTN5NzQrZE92Z0dxT0J0YzB2cTJHVVBJN0tBalZPUGdxenRuUzJmTEhXSXl6dkk0djB1cXJTeWk2RVlxMjdwNEhBUmczOEZkdGd4V09JMGVkdy90ZE1qYzJSSldkY3lYcUJaTWVWU1d0QVY0eVpKSWkxeHlMbGdmL2tidEozdTI4M2FlRzZGcUY5MXpCNk8rZnhESm91cFJoRzlsdlZQVVlzdlFkYy9YeDBZQk1UMUpJanZWb3RsNDdVcG55bzc2UXJBQkwwMGQ1dU1vU3pLcFI4OUZWUXdKWDZmWSt0QTIwUzhPMGQvZU1kcllzMTV1NlNZazJDU2JuRlkzcGFwaHlWRGdTdDFEUjRGUU00VFRpK2tFQlNqNUFTaDBCaHpxcys2VW1hc3dLNmtKUkJDdXJ1Z2doekhEaVljR0cwenNsUVRmRkZPanR5UDRqQldPaS9salRHVkRyaVYwaCtKZFhFVU96QmtPemkyOU1vajJJV0tEZnhTd2tHQkxXOSswS2w2SW5RUkxvOEZvVDRUODU4MU1SanEzcVRmUVp5bXVJVVo3WUpFN01HZlZCckMySlEyTmlidzZ4WUhHREJONGlJZlc0SmtFbE9xWk56ZFRWeEdOSFFtdXkvZDJQTjl5Ym1MOFFZeVc0bGFrSjRNcjJ3Qk13UVNpT1ZwNG9MeU90U2t0OFgxb1BZSVJ1Z0wwQjR3U2pvWTEyUEl0aUhIL0lOUThwQVVLVmkxb2FZTXBpWWZ5alNCbEFrWmdTSWFsWWZ4QXRFL2dsMHdSak5Hd3M0L2h4dUtSWVVlT2l1Q2Zta2ZIekkwWjVYM1J6OVFaNGRwQmhDOFFsRWI4eEZHK0pTYTRUMll2cE5qNTFHMWEzM1FIb0hBL1B1Qnp2ZlFRNUFYcjFncEVlRjNnaGFGN0VMa1FzTUlwd2h1SjdJQkpwVnJ2cHdJd2QvUHdJRElmZ3c4R053QWNxQmZjTWJOOU53Wk5NTC9tVi9SWGt6VWhub05PYVhSSTdqTnp2blA0K1pSOUhDbUk4TkRRNFVNL041aWY0VkdmU3hQdld3RVo1bXdWdCtoakFFcjgxU0FoWUtENExTeFozS3FJL3hUUTdic3BsRmg1T0RCa0tLNE93d2ZLcnp2V0x3V1l3YTJ6dW85aU9tYU9GYmVpVjhMU3ByT2NSUVlFd0o5ZzNPd0RwQjRYdlFJNlJQRVNGVnhZNWpHanlFWDUyYW96TVVrM1dOdm9VOGtHdWhmZ3FkaW1uL29CQlFhVXFCUWZYN0lraGRQQVFSZ0oweWp4VCsrK0dENnRJL1ZTbUdNKzc2RTZJMWtReHN3U3VaSDhHbTFJOW9hbERaZWdsR2doZzRyMC9CSXcyaC9scU9FTGNPUzBGRjVqVXZycXlpM3lNNVFXWUVWWTF3QWQ3QVN5b0ZhNUFEaERiRHM0eVhtdXFVTnA4ZkZsNnh4QkRNeGo5bU9ZTmtHcnpJRjVkdUliMG82QUxKN0VhSUhZaGs1WkxobkJrZUFKSk1ZV2VpWkFkeEppTzRkK0dqdjE5UTNGTjEwSHlESlduNVV6NWxtQVV3RUpLY2RrYnJJa2tpMStzUy9abjlRaFlUYzhVUkthenlibmNQSGwrNWc5eE5EVEJoWjQvTTR6RFo4WW5qeERjVFlILzZUYUEyQkFnbEJKcFh5SUJxMUU3N1lzTE1BNU9PM1hIcjRjZkgwUFFIcUh2a0ZSVHF1YzZVdzRuNHF5QS9NMERTWG9rQzBMb3JUS1QvYVpSbXZhZnFQSWhoWGVoNEdUM0UrM0FmMldHcEJ2Snd2RkVlZFcrV21BazI0ZmNlV0UrZjN2Q2tpQ0VtQUVXQ1dQbG1DRnlENUo0QTA5bERoVThUTHFYTjE4SjNPR0ZLWm1BOUdPSXBwd0o3Z28vOEkyRU1jNGdDZGlPVElrQVFsalJ3SWhtTk1kQUFrQW55RW80d3RoaE1sSW8xT1ZJTlh2UUlvNFFDelZVOTYrWkdEQ0t4SWttVWd0SkdxTEQ1SnV2T0s3U0xWUWxJcWhSSnpmZnZWNGlKaE85aGhlbWdBbC9TOFgxRGZoejhRTGh1UmhpZno0RE1sL2x5MmxJQUFCSmd6NVNvQ0NHZW1UWEYyRkhBYXBrcVpUSHJBMFNkOG5DN3loQnd1NlNQdzZnSjVMOWx3amlHOTBUcnl3NjVtZnEyZFNmd3dHamVxSWRma2FwQm4wUmlrcWdMNFJseEN6eDhVQXVnQkFSZ0NDSlRQcDhNS1FaU3gySkMvT3REZlJYNzVFcEYyMGZpdHNLS21GTXFkSzUyZWpqeWllNlV1V21RUUFNRmh6WGZ3Ti83UDI1MFV0TGUxVGpJTWxHVFBYZUhrUTlSc2tETE5Za2s5R20ySmdVanpIVkRQTVFtMW8xT2pualJIc2tEQWk0dHFvZm9JWnFtQnM2UHZMdlY5eHVDaVVodENVTUNTbjZ6SlpHTzhvWU9VOElEZUNQZ1pNWVVmcTlEWldYWElpbDJSMVJYZVFrVkFCeE9ldVA0NFpNQjIyVEY2WXVYb1NSWGhxZFUzb25Ddzk2S3g1Q0RnNzdHaXE1R0ZlRll3Wml1dVFRUzZHcDdqbWVOMEY2WTVqUUptZVEvRUFQNWdCS0VHby9reWtRcldONkt3NUJwZ0tQRW5FMVFvbXI1SllFVnc2d1lvV0gyU2NzLzlNTWtCL25GcTJUd3FjejlqdWdwRFJBbHJvQkNBYWs1WTRyUEgxblRXU1dsRi8wUWJKY1JZNDYvWEFVQWxCQzFqUEFtSUJtNGp3V0lZdnpLWENWejllWUhTaW42SHJmMFovbjhVOUNTNWxReGc4QUNMek1XV2REU1NOK0VRcm5lNGpVK0JkeEk4enA0RHVsYm9oMmsvYlVSSnZKUStTa2daVFhlV3pjL1JOR21mNVdRRG0zM3hJaGh1TjZNNzlkbkN1WXpRRG9BU3BuamRiNW9UdVY2MS9SNkFSZU13S3Z3bldzeGc0RU1VNitKbFNHSXlkT2pqUEFlUTk3YTl0UGV1bGl2QzBFWUpmVXcwZXhtejFIQU5PUFg2Y0NCeWpzMzNsT1FDajZvd0FJdjRCTEVvWkF1NVZNc1NoTzZxTGplSTg2SmJJa1R5ejdCN3Q1SzlZRWxqYWtDSDFQdmNjQnB4Yk9IYnRPUlJmTXIzM2NzQkpWc1RVMXZhcnJ4VEJGVExCcVRkQ0wzelQ0eEdNVEVWVFpvUU9YanlHOXVrWWxyYjlmTDJuQmFUQnhmakJlczlwM3pyZ1RDYTlrMEhZS2V2ZnhobDhadXk1L3NPQzlsWFZHb0VBSXQwMndkQURheUxqeXRUcVlidTBJVVM4ODVaTUdyd2NLcTdaUmk2NisrQzF1NThqbW5IeDRyZUF0SDhPY1FlY0NJbVpEc0tkeWNEb3ZOT1BxLzhqb2I2S0U3YjQ3QkRQOEVDc0VlSGlGR1pFVzZSV2ozSGJFR0QwV0VUM2pneEFGZlVoNjJlM3BYM1BRUzFBTUdGMDB3cVhXdGtLT094TGJ5WTVtaUdwQTJHemhBWFljZjlsYlBmckFTcHM5MG9RTXBTM1hQRDVNQkJwdENCcGdpQU0zNmJoZTczUzBBdkdDYytqTHJuRG5xSjNjbENIK3pGZjBuWEpGRE1mMmtZSDRBWUsxTGhPd0pyME9JQTQram4xczlCNUZjQ0FHSzZsZnpwaXNXUE1yUDhjbDFhRzYzanRxNGhoc3JXVVBRR3JJVkpGVUlVd0gwUXp4ZTc2ajRUL3hGaVJjNnlyRE5PWUkydTJLb2tBL1ZsQTNWWTdjOFBtUTlBNy9tSjJoQUkzWlVnWVRXQk9BaUg0Uk1uQW9kTnBWQVZnTXduQnBtMUZKejFtN3Iyd3Nod05qelUrUlBBYVFQZExzbWxDVFIwNHNTWDFDL1YxNE1xQzVSc01MK3FKVXJDQnowTVhGL1Jlc0hlbzlSaks2NW4zWWVTRms3cXM0UktmTFFBVHFZQ2gySlJhNW1IZXpmRXQ2MWQrcUFXVVRlMU4yTkVpNHE0SVhHVEdvS093RHlKTk81NmRDWkVwVG1hSmltQ2RIMDUvRWtBemUrbVova0V3SzBISnBhNi9OalduZC93S09xQVdmVUp1NG1NQTZvdGNqN3FlTXJIZlBpL1crWngxZWNON0NmdjFleEp3WFBWR0FERzhFOS9EWFQ5cDAzN2VkbDljTm1XSjlBbkVTdVdjSVlEbDF0NUhya1VSQmNtZTBXdmxtdXJLZ0RJNm00Vzk1RDRFQTVnT2h0Wm0vVU44aFdDdGFzSHp3TXpCTU5HQmdOOUkxemtJQklpdFdPNm9FcEVkd2RKUmIrYnZrLzBsektqUDc4c1RhZ0VCMllERlRqY0tRQmpLR0VvbUV2UTlDV3Vpd3luS3dheGlaT1ZlTDRJdXpGc2hBQmw3cnNSZ1VTYmViT0owVk9xOEFCQitvNVBoSFFHWEJ5VEJTaEV0SDBpZ1FTVFBwc3lmZTBiZmQ4SXRJUDY3UFVBRkVLc3ExbGZrdWdBVW92bTVRUUl5amhQTW1EcXcvdEZzVmorYXFvU1JBb3Y1VmtSK0VQczBYbFFGUUYxd3ExK09BQ0ZDaVJEUHhuR09KbGJ4ck9MNmhKdmRIMjFNQ3dpYkFVaVY2Sm5HTUtJK3AxRWxNQkVzZVRLbEFpNkFUa0FKWStjZk1YYU90ZEIzZ0NsdUlvQWJ2NjFNaTJlQUhvd0JFbGg1ekx2Nk9TZmFBdHF4ZUx3b2J0VW9FQWU5TUJ4MU11cVZOM29OQVV6ckhBeEpWOHhqdE9RRm1HSmR3N2tkTGUwWStrTWgyVCtzY0N2ellrSnA1dkRCQXJBZzZ5M0I4b2JodFFsVFdxR0xocEo3WkY2Wlo1Mnk1WWsydHovVzJCWlFrTm56c1E4Z3hUNkNBRVlKOXVGZkFSb3NkNzFPZEZYTVpVZG9Ed1pRTzQ4bGJtTy9IT2Y5NVA0c2tSaUIxOTVQbmVWd1QySHlGb3FEVWR6SHFJNmU2OHVadEVBME9pd2dyVGlIQ0ZXcmRpQU9iNXRMZ1kxOUJQdEE0cXdBVVFvQTJIdjR1cmRBYkFFQ2lucmtya0VrYmg4V1RSRGREaXhwNHMrNENhNlBOeHRZR1h2ZXdDMzhrTGRBZnd0WVp1dy95NC9zYTRIL0FlNVBkRXF3eXNvSUFBQUFBRWxGVGtTdVFtQ0MiLz4KPC9kZWZzPgo8L3N2Zz4K"); */
        transition: all ease 0.4s;
    }

.feature--layout5 {
    padding-top: 110px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .feature--layout5 {
        padding-top: 10px;
    }
}

.brand__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 40px;
    text-align: center;
    position: relative;
    /* Medium devices */
    /* Extra small devices */
}

@media (max-width: 991px) {
    .brand__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .brand__list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.brand__list .line {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    /* Small devices */
}

@media (max-width: 767px) {
    .brand__list .line {
        display: none;
    }
}

.brand__list .line.one, .brand__list .line.three {
    width: 1px;
    height: 100%;
    left: 33%;
    /* Medium devices */
}

@media (max-width: 991px) {
    .brand__list .line.one, .brand__list .line.three {
        left: 40%;
    }
}

.brand__list .line.two {
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    /* Medium devices */
}

@media (max-width: 991px) {
    .brand__list .line.two {
        display: none;
    }
}

.brand__list .line.three {
    right: 33%;
    left: auto;
    /* Medium devices */
}

@media (max-width: 991px) {
    .brand__list .line.three {
        right: 40%;
    }
}

.video--layout5 {
    padding: 195px 0 70px;
    position: relative;
    z-index: 1;
    /* Medium devices */
}

@media (max-width: 991px) {
    .video--layout5 {
        padding: 100px 0 200px;
    }
}

.video--layout5 .bg-overlay {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    /* background: linear-gradient(90deg, #000000 1.32%, #000000 100%); */
    opacity: 0.4;
}

.video-content {
    text-align: center;
}

    .video-content .sec-title {
        font-size: 64px;
        /* Medium devices */
    }

@media (max-width: 991px) {
    .video-content .sec-title {
        font-size: 24px;
    }
}

.video-content .play-btn {
    margin-bottom: 50px;
}

    .video-content .play-btn::before, .video-content .play-btn::after {
        background-color: rgba(255, 255, 255, 0.2);
        animation-name: ripple2;
        animation-duration: 3s;
    }

    .video-content .play-btn::after {
        animation-duration: 3.2s;
    }

    .video-content .play-btn > i {
        color: var(--white-color);
        background-color: #F44336;
        width: var(--icon-size, 100px);
        height: var(--icon-size, 100px);
        line-height: var(--icon-size, 100px);
    }

.cate--layout5 {
    margin-top: -162px;
    position: relative;
    z-index: 1;
}

    .cate--layout5 .cate__box {
        background-color: var(--theme-color);
        padding: 100px 80px 90px;
        background-size: contain;
        border-radius: 30px;
        /* Medium devices */
    }

@media (max-width: 991px) {
    .cate--layout5 .cate__box {
        padding: 20px;
        background-position: top;
    }
}

.cate__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .cate__list {
        gap: 15px;
    }
}

.cate-block {
    display: inline-flex;
    flex-direction: column;
    text-align: center;
    min-width: 180px;
    min-height: 180px;
    justify-content: center;
    background: var(--white-color);
    border-radius: 11px;
    transition: all ease 0.4s;
    /* Medium devices */
}

@media (max-width: 991px) {
    .cate-block {
        min-width: 160px;
        min-height: 160px;
    }
}

.cate-block > i {
    color: var(--theme-color);
    transition: all ease 0.4s;
    margin-bottom: 25px;
}

.cate-block > span {
    color: var(--title-color);
    font-size: 18px;
    font-weight: 500;
    display: block;
    transition: all ease 0.4s;
}

.cate-block:hover {
    background-color: var(--theme-color2);
}

    .cate-block:hover > i {
        color: var(--white-color);
    }

    .cate-block:hover > span {
        color: var(--white-color);
    }

.testimonial-slider5 {
    margin: -30px -10px;
}

.testi-style5 {
    background-color: var(--theme-color);
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
    border-radius: 15px 154px 15px 15px;
    padding: 40px 30px 40px 35px;
    margin: 30px 10px;
    position: relative;
}

    .testi-style5::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--white-color);
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 10px 180.5px 10px 10px;
    }

    .testi-style5 .testi-header {
        display: flex;
        align-items: flex-end;
        gap: 30px;
        margin-bottom: 45px;
        /* Small devices */
    }

@media (max-width: 767px) {
    .testi-style5 .testi-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }
}

.testi-style5 .testi-avater {
    min-width: 120px;
    min-height: 120px;
    border-radius: 75px 75px 15px 61px;
}

    .testi-style5 .testi-avater > img {
        width: 100%;
        border-radius: 75px 75px 15px 61px;
    }

.testi-style5 .testi-rating {
    display: inline-flex;
    align-items: center;
}

    .testi-style5 .testi-rating > i {
        font-size: 16px;
        color: var(--theme-color);
    }

.testi-style5 .testi-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.testi-style5 .testi-text {
    margin-bottom: 0;
    line-height: 2.25;
}

.testi-style5 .testi-body {
    position: relative;
    z-index: 1;
}

.offer-block.style2 {
    margin-top: -67px;
    margin-bottom: 0;
    /* Medium devices */
}

@media (max-width: 991px) {
    .offer-block.style2 {
        margin-top: -40px;
    }
}

.blog-style6,
.blog-style7 {
    background-color: var(--white-color);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

    .blog-style6 .blog-img,
    .blog-style7 .blog-img {
        overflow: hidden;
    }

        .blog-style6 .blog-img img,
        .blog-style7 .blog-img img {
            width: 100%;
            max-height: 285px;
            object-fit: cover;
            transition: all 1s ease-in-out 0s;
            /* Medium devices */
        }

@media (max-width: 991px) {
    .blog-style6 .blog-img img,
    .blog-style7 .blog-img img {
        max-height: 100%;
        height: 100%;
    }
}

.blog-style6 .blog-top,
.blog-style7 .blog-top {
    margin-bottom: 15px;
}

.blog-style6 .blog-content,
.blog-style7 .blog-content {
    padding: 30px 30px 40px;
}

.blog-style6 .blog-meta,
.blog-style7 .blog-meta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
}

    .blog-style6 .blog-meta::after,
    .blog-style7 .blog-meta::after {
        position: absolute;
        content: "";
        height: 16px;
        width: 1px;
        background-color: #505050;
        right: 0;
    }

    .blog-style6 .blog-meta:last-child,
    .blog-style7 .blog-meta:last-child {
        padding-right: 0;
        margin-right: 0;
    }

        .blog-style6 .blog-meta:last-child::after,
        .blog-style7 .blog-meta:last-child::after {
            display: none;
        }

.blog-style6 .blog-bottom,
.blog-style7 .blog-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffccb1;
}

    .blog-style6 .blog-bottom .blog-link,
    .blog-style7 .blog-bottom .blog-link {
        font-weight: 600;
        color: var(--theme-color);
    }

        .blog-style6 .blog-bottom .blog-link:hover,
        .blog-style7 .blog-bottom .blog-link:hover {
            color: var(--theme-color2);
        }

.blog-style6 .blog-date,
.blog-style7 .blog-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--theme-color);
    text-align: center;
    color: var(--white-color);
    min-width: 50px;
    min-height: 50px;
    font-size: 14px;
    line-height: 1;
}

    .blog-style6 .blog-date > span,
    .blog-style7 .blog-date > span {
        font-size: 24px;
        line-height: 1;
        font-weight: 700;
    }

.blog-style6:hover .blog-img img,
.blog-style7:hover .blog-img img {
    transform: scale(1.2) rotate(5deg);
    transition: all 1s ease-in-out 0s;
}

.blog-style7 {
    display: flex;
    /* Small devices */
}

@media (max-width: 767px) {
    .blog-style7 {
        flex-wrap: wrap;
    }
}

.blog-style7 .blog-img {
    min-width: 388px;
    /* Small devices */
}

@media (max-width: 767px) {
    .blog-style7 .blog-img {
        min-width: 100%;
    }
}

.blog-style7 .blog-top {
    margin-bottom: 5px;
}

.blog-style7 .blog-content {
    min-height: 285px;
    padding: 30px;
}

.blog-style7 .blog-title {
    margin-bottom: 5px;
}

.blog-style7 .blog-text {
    margin-bottom: 15px;
}

.footer-layout5 {
    /* Large devices */
}

@media (max-width: 1199px) {
    .footer-layout5 {
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .footer-layout5 {
        padding-top: 0px;
    }
}

.footer-layout5 .vs-widget-about .footer-text {
    text-transform: capitalize;
    max-width: 100%;
    padding-right: 15px;
    margin-bottom: 35px;
}
/* .footer-layout5 .widget_nav_menu .menu li { */
/* float: left; */
/* width: 50%; */
/* } */
.footer-layout5 .widget_nav_menu .menu li > a {
    padding-left: 0;
}

.vs-card.style2 {
    border-radius: 20px;
    flex-direction: column;
    position: absolute;
    min-width: 300px;
    bottom: 50px;
    min-height: 180px;
    right: 0;
    /* background-color: var(--white-color); */
    background-image: url(../img/upnahidekha.png);
    gap: 0;
    padding: 0 0 20px 0;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
    z-index: 9;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-card.style2 {
        position: relative;
    }
}

.vs-card.style2 .vs-card__icon {
    min-width: 99px;
    min-height: 109px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -48px;
    margin-bottom: 15px;
}

.vs-card.style2 > a {
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-color);
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.vs-card.style2 > p {
    font-size: 20px;
    color: var(--theme-color2);
    max-width: 80%;
    margin: 0 auto 0;
    text-align: center;
}

.destination-list {
    display: flex;
    /* Medium devices */
}

@media (max-width: 991px) {
    .destination-list {
        flex-direction: column;
    }
}

.destination-style3 {
    min-height: 404px;
    border-radius: 0;
    flex: 1;
    transition: all ease 0.4s;
    margin-bottom: 0;
}

    .destination-style3::before {
        background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
        opacity: 0;
        visibility: hidden;
        transition: all ease 0.4s;
        bottom: -15px;
    }

    .destination-style3 .destination-info {
        right: 0;
        min-width: 370px;
        opacity: 0;
        visibility: hidden;
        transition: all ease 0.4s;
    }

    .destination-style3:hover {
        flex: 1.5;
    }

        .destination-style3:hover::before,
        .destination-style3:hover .destination-info {
            opacity: 1;
            visibility: visible;
            transition: all ease 0.4s;
        }

.package-style3 .package-content {
    /* Large devices */
}

@media (max-width: 1199px) {
    .package-style3 .package-content {
        padding: 25px 15px 15px;
    }
}

/*# sourceMappingURL=style.css.map */


.menu-style1 {
    text-align: center;
}

.header-middle {
    background-image: url(../img/header_bg.png);
    background-size: 100% 100%;
    background-position: center;
}


.menu-style1 > ul > li {
    padding: 10px 0px !important;
}


.iam {
    color: #1c1c1c;
    font-size: 20px;
    text-align: center;
    line-height: 35px;
    font-weight: 800;
    font-family: cursive;
}

.text {
    color: white;
    border-right: 2px solid red;
    font-size: 22px;
    color: rgb(255, 30, 0);
    text-align: center;
}

.typed-cursor {
    display: none;
}

.responsive {
    height: auto !important;
    width: 90px;
}

.span_text {
    font-weight: 800;
    color: #ff681a;
}

.wrap_p_bg {
    background-image: url(../img/p1.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}

.packeges_wrap {
    color: #fff;
    font-weight: 600;
    padding: 4px 0px;
}


    .packeges_wrap:hover {
        color: #ff681a;
        font-weight: 600;
        padding: 4px 0px;
    }




.flip-container {
    background: transparent;
    display: inline-block;
}

.flip-this {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-container:hover .flip-this {
    transition: 0.9s;
    transform: rotateY(360deg);
}



.wrapper_red {
    color: #ff681a;
    font-weight: 600;
}

    .wrapper_red:hover {
        color: #fff;
    }

.top_setting {
    color: #fff;
    font-size: 14px;
    padding: 0px 7px;
    background: #ff681a;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-dropdown .dropdown-toggle {
    background-color: var(--theme-color);
    background-position: right 15px center;
    font-size: 14px;
    transition: all ease 0.5s;
    padding: 0 0px;
    margin-left: 0px;
    position: relative;
    border: 0px;
    border-radius: 0;
    width: unset;
    color: var(--white-color);
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1399px) {
    .header-layout5 .header-dropdown .dropdown-toggle {
        background-color: transparent;
        height: 20px;
        padding-right: 20px;
    }


    .mx-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .header-login a {
        display: inline-block;
        color: var(--white-color);
        line-height: 1;
        margin-right: 15px;
    }

    .top_setting {
        color: #fff;
        font-size: 14px;
        padding: 0px 7px;
        background: #ff681a;
    }

    .header-login .login-btn {
        display: inline-block;
        position: relative;
        background-color: #bc0000;
        padding: 6px 15px;
        text-align: center;
        border-radius: 4px;
        font-size: 15px;
        font-weight: 500;
    }

    a.tour_btn {
        text-transform: capitalize;
        line-height: 1;
        height: 0px;
        margin-top: 0;
        display: inline-block;
        font-size: 13px;
        background: tranparent;
        line-height: 13px;
        padding: 4px 18px;
        color: #fff;
        animation: animatetour 1.5s linear infinite;
        font-weight: 550;
    }
}

@media screen and (min-width: 1199px) {
    .header-dropdown {
        display: flex;
        align-items: center;
    }

        .header-dropdown a {
            margin-right: 5px;
        }

    .header-layout5 .header-dropdown .dropdown-toggle {
        background-color: transparent;
        height: 20px;
        padding-right: 0px;
    }


    .mx-3 {
        margin-right: 0rem !important;
        margin-left: 0rem !important;
    }

    .header-login a {
        margin-right: 5px !important;
    }

    .header-login .login-btn {
        padding: 6px 8px !important;
        font-size: 13px !important;
    }

    /* .header-top .time {
        font-size: 11px !important;
    }*/

    /* marquee a {
        font-size: 10px !important;
    }*/

    a.tour_btn {
        font-size: 13px !important;
        padding: 4px 0px !important;
    }
}


@media screen and (max-width: 768px) {
    .item.style2 .item__icon {
        margin-top: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 90px;
        min-height: 90px;
        transition: all ease 0.4s;
        display: none;
    }

    .mm2, .header-social {
        display: none;
    }
}

@media screen and (max-width: 767px) {

    .sticky-button {
        bottom: 75% !important;
    }

    .sticky-tour-button {
        bottom: 47% !important;
    }
}

.blink {
    padding: 11px 20px !important;
    background-color: rgb(23, 23, 1);
    -webkit-animation: blink 800ms step-end infinite;
    animation: blink 800ms step-end infinite;
}

@-webkit-keyframes blink {
    50% {
        background-color: #009688;
    }
}

@keyframes blink {
    50% {
        background-color: #ff681a;
    }
}

/*=============*/

.pulse {
    background-color: rgb(0, 0, 0);
    -webkit-animation: blink 800ms infinite;
    animation: blink 800ms infinite;
}

@-webkit-keyframes pulse {
    0% {
        background-color: red;
    }

    100% {
        background-color: yellow;
    }
}

@keyframes pulse {
    0% {
        background-color: red;
    }

    100% {
        background-color: yellow;
    }
}


.gdb {
    background: #ff681a;
    padding: 6px 20px;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 0px 20px;
}

    .gdb a {
        color: #fff;
    }

a.tour_btn {
    text-transform: capitalize;
    line-height: 1;
    height: 0px;
    margin-top: 0;
    display: inline-block;
    font-size: 13px;
    background: tranparent;
    line-height: 13px;
    padding: 4px 18px;
    color: #fff;
    animation: animatetour 1.5s linear infinite;
    font-weight: 550;
}

p#datetime {
    padding-top: 12px !important;
    padding-bottom: 0;
    margin-bottom: 0;
}

img.watches {
    max-width: 13px;
    margin-right: 3px;
    margin-top: -3px;
}

/*.header-top .time {
    float: left;
    color: #fff;
    text-decoration: none;
    padding: 5px 0px;
}*/

@keyframes animatetour {
    0% {
        opacity: 1;
        color: #fff;
    }

    50% {
        opacity: 1;
        color: yellow;
    }

    100% {
        opacity: 1;
        color: orangered;
    }
}

.header-login a {
    display: inline-block;
    color: var(--white-color);
    line-height: 1;
    margin-right: 15px;
}

.header-login .login-btn {
    display: inline-block;
    position: relative;
    background-color: #bc0000;
    padding: 6px 15px;
    text-align: center;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
}

.header-login .top-btn {
    display: inline-block;
    position: relative;
    background-color: #ad8b3a;
    padding: 6px 15px;
    text-align: center;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
}

.sticky-button {
    position: fixed;
    transform: rotate(270deg);
    right: -56px;
    bottom: 80%;
    padding: 1px 10px;
    background-color: #ff0022;
    color: white;
    border: none;
    border-radius: 10px 10px 0px 0px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    z-index: 99999999999;
}

    .sticky-button i {
        margin-right: 6px;
        background-color: #fff;
        border-radius: 100%;
        height: 25px;
        width: 25px;
        line-height: 25px;
        color: #bc0000;
        font-size: 12px;
    }

.booking-blink {
    background-color: #bc0000;
    -webkit-animation: booking-blink 800ms step-end infinite;
    animation: booking-blink 800ms step-end infinite;
}

.sticky-app-button {
    position: fixed;
    transform: rotate(270deg);
    right: -81px;
    bottom: 15%;
    padding: 2px 10px;
    background-color: #ad8b3a;
    color: white;
    border: none;
    border-radius: 10px 10px 0px 0px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    z-index: 99999999999;
}

    .sticky-app-button i {
        margin-right: 6px;
        background-color: #fff;
        border-radius: 100%;
        height: 25px;
        width: 25px;
        line-height: 25px;
        color: #bc0000;
        font-size: 14px;
    }

@keyframes booking-blink {
    50% {
        background-color: #dc3545;
    }
}

.sticky-tour-button {
    position: fixed;
    transform: rotate(270deg);
    right: -80px;
    bottom: 50%;
    padding: 2px 10px;
    background-color: #0a77b5;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px 10px 0px 0px;
    font-size: 14px;
    font-weight: 500;
    z-index: 99999999999;
}

    .sticky-tour-button i {
        margin-right: 6px;
        background-color: #fff;
        border-radius: 100%;
        height: 25px;
        width: 25px;
        line-height: 25px;
        color: #0a77b5;
        font-size: 13px;
    }

.text-black-50 {
    color: rgb(0 0 0) !important;
}

/*----------------------------mahakumbh------------------------*/
.bathing {
    border-radius: 10px box-shadow: 0px 0px 15px rgba(0, 0, 0, .2);
    padding: 30px;
    /*background-image: url(https://mir-s3-cdn-cf.behance.net/project_modules/max_1200/1a42cc194185897.65f84cac63d06.jpg);*/
    background-position: inherit;
    background: #ff681a;
    border-radius: 20px;
    box-shadow: 8px 8px 0px 0px #ff681a8c;
    transition: all 0.3s ease-out 0s;
    margin-bottom: 8px;
}

    .bathing:hover {
        box-shadow: none !important;
    }

    .bathing h1 {
        color: #fff;
        font-weight: 800;
        font-size: 25px;
        margin: 0px 0px 13px;
        border-bottom: 1px #ffffff73 solid;
        padding: 0px 0px 10px;
    }

    .bathing ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .bathing ul li {
            /* border-bottom: dashed 1px #fff; */
            line-height: 40px;
            color: #fff;
            display: flow-root;
            font-weight: 800;
        }
            /*.bathing ul li::before {
    content: "\f054";
    margin-right: 6px;
    position: relative;
    display: inline-block;
    font: normal normal normal 10px / 2 FontAwesome;
    color: #ffbc42;
}*/
            .bathing ul li i {
                margin-right: 8px;
            }

            .bathing ul li span {
                float: right;
                border: 1px #ffffff4a solid;
                padding: 1px;
                line-height: 30px;
                padding: 0 10px;
                border-radius: 100px;
                color: #eefc7e;
                font-weight: 800;
                width: 150px;
                text-align: center;
            }

.main_div_hc h3 {
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0;
    font-size: 15px;
    text-align: center;
    padding: 5px 0;
    color: #fff;
    background: #4a1010;
}

.main_div_hc .table > :not(caption) > * > * {
    padding: .5rem;
    background-color: var(--bs-table-bg);
    background-image: linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
    border-bottom-width: 1px;
}

.main_div_hc td, th {
    padding: 9px 12px;
    vertical-align: middle;
}
/*-----------------------------end-------------------------------*/

/*-----------------------tour varansi---------------------------*/
.var-tour {
    background-image: url('../img/about/vv.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    z-index: 99;
    background-attachment: fixed;
}

.var-tour {
    padding: 60px 20px 60px;
}

iframe {
    border: 9px solid #fff;
    border-radius: 8px;
}

.v-content {
    background: #0000008a;
    padding: 20px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

    .v-content p {
        color: #fff;
    }

.about-content p strong {
    color: #FF9800;
}

.textlist {
    padding-left: 0px;
}

    .textlist li {
        list-style: none;
        line-height: 35px;
    }
/*--------------------------end--------------------------------*/

/*--------------------about us Star Classification---------------*/
.bottom-head {
    background: #b50a0a;
    padding: 8px 0px 5px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    margin: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.hon-portfolio {
    margin-top: 10px;
}

    .hon-portfolio p {
        text-align: center;
        line-height: 17px;
        margin: 0;
        font-size: 14px;
        padding-top: 5px;
    }

.chief-img img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
/*.leader-bottom {
    padding: 80px 0px;
    background-image: url('../img/leaders/login-bg.jpg');
    background-size: cover;
    background-position: center;
}*/
.logins {
    text-align: center;
    padding: 20px 0px 20px;
    border-bottom: 3px solid red;
    border-radius: 8px;
    background-position: center;
    background: #fff;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    margin-bottom: 20px;
}

    .logins h5 {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .logins i {
        margin-right: 8px;
    }

.leader-bottom {
    padding: 80px 0px;
    position: relative;
}

.login-icon img {
    width: 45px;
    height: auto;
}

.login-icon {
    background-color: #faaf3c;
    display: inline-block;
    height: 80px;
    width: 80px;
    border-radius: 100%;
    line-height: 70px;
}

.red-bg {
    background-color: #c90606 !important;
}

.table-head .table > :not(caption) > * > * {
    padding: .5rem;
    background-color: var(--bs-table-bg);
    background-image: linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
    border-bottom-width: 1px;
}

.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
    transition: opacity .15s ease;
    background: none;
    border: none;
}

.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
    transition: opacity .15s ease;
    background: none;
    border: none;
}
/*-----------------------------end-----------------------------*/

/*------------------------------Hotel booking-------------------*/
/*.section .section-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}*/


#booking .main-booking {
    padding: 10px;
}

.booking-form {
    position: relative;
    max-width: 642px;
    width: 100%;
    margin: auto;
    overflow: hidden;
    /* background-image: url('https://i.imgur.com/8z1tx3u.jpg'); */
    background-size: cover;
    border-radius: 5px;
    z-index: 20;
    border: 1px solid #dddddd;
    background-color: #d7d7d7;
}

    .booking-form::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        /* background: rgb(227 227 227); */
        z-index: -1;
    }

    .booking-form .form-header {
        text-align: center;
        position: relative;
        margin-bottom: 30px;
    }

        .booking-form .form-header h1 {
            font-weight: 700;
            text-transform: capitalize;
            font-size: 42px;
            margin: 0px;
            color: #fff;
        }

    .booking-form .form-group {
        position: relative;
        margin-bottom: 30px;
    }

    .booking-form .form-control {
        background-color: rgb(255 255 255 / 59%);
        height: 45px;
        padding: 0px 25px;
        border: none;
        font-size: 13px;
        border-radius: 40px;
        color: #000000;
        -webkit-box-shadow: 0px 0px 0px 2px transparent;
        box-shadow: 0px 0px 0px 2px transparent;
        -webkit-transition: 0.2s;
        transition: 0.2s;
        border: 1px solid #c6c4c4;
        width: 300px;
    }

        .booking-form .form-control::-webkit-input-placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .booking-form .form-control:-ms-input-placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .booking-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .booking-form .form-control:focus {
            -webkit-box-shadow: 0px 0px 0px 2px #ff8846;
            box-shadow: 0px 0px 0px 2px #ff8846;
        }

    .booking-form input[type="date"].form-control {
        padding-top: 20px;
    }

        .booking-form input[type="date"].form-control:invalid {
            color: rgb(0 0 0);
        }

        .booking-form input[type="date"].form-control + .form-label {
            opacity: 1;
            top: 10px;
        }

    .booking-form select.form-control {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

        .booking-form select.form-control:invalid {
            color: rgba(255, 255, 255, 0.5);
        }

        .booking-form select.form-control + .select-arrow {
            position: absolute;
            right: 15px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            width: 32px;
            line-height: 32px;
            height: 32px;
            text-align: center;
            pointer-events: none;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

            .booking-form select.form-control + .select-arrow:after {
                content: '\279C';
                display: block;
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
            }

        .booking-form select.form-control option {
            color: #000;
        }

    .booking-form .form-label {
        position: absolute;
        top: -10px;
        left: 25px;
        opacity: 0;
        color: #ff8846;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.3px;
        height: 15px;
        line-height: 15px;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    .booking-form .form-group.input-not-empty .form-control {
        padding-top: 16px;
    }

    .booking-form .form-group.input-not-empty .form-label {
        opacity: 1;
        top: 10px;
    }

    .booking-form .submit-btn {
        color: #fff;
        background-color: #ff681a;
        font-weight: 700;
        height: 40px;
        padding: 8px 30px;
        /* width: 100%; */
        border-radius: 40px;
        border: none;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1.3px;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
        display: inline-block;
    }

        .booking-form .submit-btn:hover,
        .booking-form .submit-btn:focus {
            opacity: 0.9;
        }

.hotel-icon {
    height: 60px;
    width: 60px;
    line-height: 66px;
    border-radius: 100%;
    background-color: #ff681a;
    margin: 10px auto;
}

    .hotel-icon i {
        font-size: 25px;
        color: #fff;
    }

.all-none {
    /* background:none !important; */
    /* border:none !important; */
}
/*#booking .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link{
    border-bottom:2px solid #fff;
    margin-bottom:15px;
    color:#fff;
    font-size: 14px;*/
}

#booking .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff;
    background: none;
    border-color: none;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 2px solid #c90606;
    margin-bottom: 15px;
}
/*#booking .nav-tabs .nav-link:hover {
    border-color: #e9ecef00 ;
    border-bottom:2px solid #fff;
}*/
.form-head {
    background: #ff681a;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 0px 0px 30px 30px;
    box-shadow: 0px 4px 0px 0px #9E9E9E;
    font-size: 18px !important;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
}

#booking .nav-tabs {
    border-bottom: 0px solid #dee2e600;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 30px;
}

    #booking .nav-tabs .nav-link {
        margin-bottom: 15px;
        /* border: 1px solid #c906062e; */
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem;
        font-size: 14px;
        font-weight: 500;
        padding: 10px 10px;
        margin-right: 4px;
        background-color: none;
        /* background: #00000008; */
        border-radius: 6px;
    }

#nav-tabContent .destination-style2 .destination-info, .destination-style3 .destination-info {
    position: absolute;
    bottom: -6px;
    left: 0px;
    z-index: 2;
}

#nav-tabContent .destination-style2 .destination-img, .destination-style3 .destination-img {
    width: 100%;
    transition: all 1s ease-in-out 0s;
    min-height: 200px;
}

#nav-tabContent .destination-style2::before, .destination-style3::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 0px 0px 10px 10px;
    bottom: 0;
    z-index: 1;
}

#nav-tabContent .destination-style2 .destination-text, .destination-style3 .destination-text {
    margin-bottom: 18px;
    color: var(--white-color);
    font-size: 15px;
}

#nav-tabContent .destination-style2 .destination-name > a, .destination-style3 .destination-name > a {
    color: var(--white-color);
    font-size: 15px;
}

#nav-tabContent .destination-style2 .destination-name, .destination-style3 .destination-name {
    margin-bottom: 5px;
}

.info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

.info-btn {
    background-color: #ff681a;
    color: #fff;
    padding: 3px 15px;
    border-radius: 4px;
    font-size: 16px;
    display: inline-block;
    position: relative;
}

.left-menu-ser {
    background-color: #fff;
    box-shadow: 0 1px 16px 0 rgb(0 0 0 / 7%);
    /* padding: 30px; */
    position: -webkit-sticky !important;
    position: sticky !important;
    top: -60px;
    z-index: 2;
}

.right-menu-ser {
    background-color: #fff;
    box-shadow: 0 1px 16px 0 rgb(0 0 0 / 7%);
    /* padding: 30px; */
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 115px;
}

.b-tab-content {
    padding-left: 15px;
    padding-right: 15px;
}

    .b-tab-content .info-head h4 a {
        font-size: 16px !important;
        line-height: 20px;
    }

.destination-name span {
    margin-left: 15px;
    color: #fff;
    font-size: 13px;
}

#nav-tabContent label {
    margin-bottom: 0.5em;
    margin-top: -0.3em;
    display: inline-block;
    color: var(--title-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
}

#nav-tabContent .radioselect, .form-control, .form-select, textarea, input {
    height: 44px;
    padding: 0 30px 0 25px;
    padding-right: 20px;
    border-radius: 10px;
    color: var(--body-color);
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    font-size: 14px;
    width: 100%;
}

.ajax-contact {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}

.form-padding {
    padding: 0px 30px;
}

.form-top-head {
    background: #c90606;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 0px 0px 30px 30px;
    box-shadow: 0px 4px 0px 0px #9E9E9E;
    font-size: 20px !important;
    font-weight: 600;
    /* margin: 0; */
    margin-bottom: 10px;
}

.bookarea {
    border-right: 1px solid #e4e4e4;
    box-shadow: 0 0 25px rgba(0, 0, 0, .3);
    background: #fff;
    border-radius: 6px;
    padding: 10px 5px 10px !important;
    border: 2px solid #c80b0b;
    position: relative;
    bottom: 1px;
    right: 0px;
}

.bbsd {
    width: 400px;
    margin: 80px auto;
}

.kumbhbtn {
    background-color: #004A7F;
    -webkit-border-radius: 10px;
    border-radius: 0px;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    padding: 6px 15px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    -webkit-animation: glowing1 1500ms infinite;
    -moz-animation: glowing1 1500ms infinite;
    -o-animation: glowing1 1500ms infinite;
    animation: glowing1 1500ms infinite;
    border-radius: 0px 0px;
}

@keyframes glowing1 {
    0% {
        background-color: #B20000;
        -webkit-box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        -webkit-box-shadow: 0 0 5px #004A7F;
    }

    100% {
        background-color: #B20000;
        -webkit-box-shadow: 0 0 3px #B20000;
    }
}

.modal-header {
    padding: 0px;
    border-bottom: 1px solid #e5e5e500;
}

    .modal-header .btn-close {
        position: absolute;
        right: -18px;
        top: -12px;
    }

.btn-close {
    box-sizing: content-box;
    width: 12px;
    height: 12px;
    padding: .25em;
    color: #ffffff;
    background: #b50a0a;
    border: 0;
    border-radius: 100%;
    opacity: .9;
    font-size: 18px;
    font-weight: 500;
    line-height: 0px;
    display: flex;
    align-items: center;
}

.single-post-details-area .post-content .post-title {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    line-height: 1.5;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 600;
    margin: 25px 0px 0px 0px;
}

.single-post-details-area .post-content .post-title {
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    padding-top: 5px;
}

/*------------------------------end------------------------------*/


/*top button animation css start*/

.sermons-details-area .button a {
    padding: 15px 15px;
    background: radial-gradient(circle,#fa8f16 0,#ff6b12 50%);
    /*background: linear-gradient(126deg,#f5a623,#f76b1c);*/
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid transparent;
}

.sermons-details-area .button-desk a {
    background: #fff;
}

.glow-on-hover {
    cursor: pointer;
    position: relative;
    z-index: 0;
    color: #000 !important;
}

    .glow-on-hover:before {
        content: '';
        background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
        position: absolute;
        top: -2px;
        left: -2px;
        background-size: 400%;
        z-index: -1;
        filter: blur(5px);
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        animation: glowing 20s linear infinite;
        opacity: 0;
        transition: opacity .3s ease-in-out;
        border-radius: 10px;
    }

    .glow-on-hover:active {
        color: #000;
    }

        .glow-on-hover:active:after {
            background: transparent;
        }

    .glow-on-hover:before {
        opacity: 1;
    }

    .glow-on-hover:after {
        z-index: -1;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #fff;
        left: 0;
        top: 0;
        border-radius: 10px;
    }

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.hand-right {
    width: 50px;
    height: auto;
}

.low-heading {
    text-align: center;
    padding: 8px;
}

    .low-heading h4 {
        color: #fff;
        font-size: 18px;
        margin-bottom: 0px;
        margin-top: 0px;
    }
/*top button animation css end*/

.gallery-set {
    width: 300px;
    height: 190px !important;
}


/*------------------------tab media------------------------*/
@media (max-width: 1024px) {
    .top_setting {
        margin-right: 5px;
    }

    marquee {
        display: none;
    }

    .header-top .time {
        display: none;
    }

    a.tour_btn {
        display: none;
    }

    .bg_video {
        max-height: 28vh;
    }

    .header-layout5 .header-top {
        padding: 8px;
    }
}

.tab-bg {
    background-color: #f0f0f0;
    margin-right: 4px;
    margin-bottom: -1px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
/*--------------------------end------------------------------*/

/*--------------------------latest css-------------------------*/
.time-date-package {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.tourpackage {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    animation: animatetour 1.5s linear infinite;
}

.time-date-package .time {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

marquee {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
}

    marquee .marquee-btn {
        animation: animatetour 1.5s linear infinite;
        font-size: 16px;
    }

@media screen and (max-width: 1024px) {
    .nav-body {
        min-height: 180px;
    }

    .tab {
        margin: 0 50px;
    }

    .tabform {
        margin: 0px 10px;
    }

    .booking-form .submit-btn {
        margin-top: 10px;
    }
}

@media screen and (max-width: 1600px) {
    .time-date-package .time {
        font-size: 11px;
    }

    .tourpackage {
        font-size: 11px;
    }

    marquee .marquee-btn {
        font-size: 11px;
    }

    .header-dropdown .dropdown-toggle {
        font-size: 11px;
    }
}

@media screen and (max-width: 767px) {
    .time-date-package {
        display: none;
    }

        .time-date-package .time {
            display: none;
        }

    marquee {
        display: none;
    }

    .language {
        display: none;
    }
}

@media screen and (max-width: 991px) {

    .top-display {
        display: none;
    }

    .language {
        display: none;
    }
}
/*---------------------------------end---------------------*/


/*-----------------------------maha kumbh------------------*/
.main-box {
    border-radius: 20px;
    border: 1px solid #C9E4E9;
    background: #F1FDFF;
    box-shadow: 8px 8px 0px 0px #C9E4E9;
    padding: 20px 30px 20px 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    margin-top: 20px;
    transition: all 0.3s ease-out 0s;
}

    .main-box:hover {
        box-shadow: none !important;
    }

.bg-cyan {
    border: 1px solid #C8C1ED;
    background: #EDEAFF;
    box-shadow: 8px 8px 0px 0px #D9D5F1;
}

.bg-light-yellow {
    border: 1px solid #EBE0C4;
    background: #FFF7E2;
    box-shadow: 8px 8px 0px 0px #E5DECB;
}

.bg-light-red {
    border: 1px solid #ebc4c4;
    background: #ffe2e2;
    box-shadow: 8px 8px 0px 0px #e5cbcb;
}

.main-box h4 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 0px;
}

.box-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed #00000017;
    padding: 6px;
}

    .box-text span {
        font-size: 15px;
        font-weight: 600;
        color: #000;
    }

    .box-text h5 {
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 0px;
        margin-top: 0px;
    }



.Buttonsticky {
    position: sticky;
    top: 48px;
    z-index: 99;
}

.ppc {
    text-align: right;
    padding: 5px 10px;
    border-radius: 0px 0px 10px 10px;
    margin-bottom: 20px;
}

.bda {
    background: #fffbf7;
    padding: 10px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}



@media only screen and (max-width: 600px) {
    .ppc {
        text-align: center;
        padding: 5px 10px;
        border-radius: 0px 0px 10px 10px;
        margin-bottom: 20px;
    }
}





/*---------------------------------end----------------------*/
