* {
    margin: 0px;
    padding: 0px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    outline: none;
}

:root {
    --theme-color: #8abe3f;
    --secondary-color: #015285;
    --text-color: #5f6366;
    --title-color: #053655;
    --text-font: "Mona Sans", sans-serif;
    --title-font: "Mona Sans", sans-serif;
    --secondary-font: "Merienda", cursive;
}

body {
    font-size: 17px;
    color: var(--text-color);
    line-height: 28px;
    font-weight: 400;
    background: center top / cover no-repeat rgb(255, 255, 255);
    font-family: var(--text-font);
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0px 15px;
    }
}

.large-container {
    max-width: 1550px;
    padding: 0px 15px;
    margin: 0px auto;
}

.container-fluid {
    padding: 0px;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0px auto;
}

.small-container {
    max-width: 680px;
    margin: 0px auto;
}

.boxed_wrapper {
    position: relative;
    margin: 0px auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden !important;
}

a {
    text-decoration: none;
    transition: 500ms;
}

a:hover {
    text-decoration: none;
    outline: none;
}

input, button, select, textarea {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 16px;
    background: transparent;
}

::-webkit-input-placeholder {
    color: inherit;
}

ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

input {
    transition: 500ms;
}

button:focus, input:focus, textarea:focus {
    outline: none;
    box-shadow: none;
    transition: 500ms;
}

p {
    position: relative;
    font-size: 17px;
    line-height: 28px;
    font-family: var(--text-font);
    color: var(--text-color);
    font-weight: 400;
    margin: 0px;
    transition: 500ms;
}

h1, h2, h3, h4, h5, h6 {
    position: relative;
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--title-color);
    margin: 0px;
    transition: 500ms;
}

.handle-preloader {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    background: var(--secondary-color);
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 9999999;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
    animation: 1.5s linear 0s infinite normal none running spinner;
    border-radius: 50%;
    height: 70px;
    margin: 0px auto;
    width: 70px;
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading::before {
    animation: 4s ease 0s infinite normal none running letters-loading;
    content: attr(data-text-preloader);
    left: 0px;
    opacity: 0;
    top: 0px;
    position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-family: var(--title-font);
    font-weight: 500;
    letter-spacing: 15px;
    display: inline-block;
    position: relative;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2)::before {
    animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3)::before {
    animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4)::before {
    animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5)::before {
    animation-delay: 0.8s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6)::before {
    animation-delay: 1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7)::before {
    animation-delay: 1.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8)::before {
    animation-delay: 1.4s;
}

.handle-preloader .loader-section {
    background-color: rgb(255, 255, 255);
    height: 100%;
    position: fixed;
    top: 0px;
    width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading::before {
    color: rgb(255, 255, 255);
}

.handle-preloader .animation-preloader .spinner {
    border-width: 4px;
    border-style: solid;
    border-color: transparent rgb(255, 255, 255) rgb(255, 255, 255);
    border-image: initial;
}

@keyframes spinner {
    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 30px;
        letter-spacing: 10px;
    }
}

.centred {
    text-align: center;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

figure {
    margin: 0px;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
}

.theme-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
    font-family: var(--title-font);
    text-align: center;
    padding: 5px 5px 5px 20px;
    background-color: rgb(239, 100, 52);
    border-radius: 40px;
    text-transform: capitalize;
    color: rgb(255, 255, 255);
    z-index: 1;
    transition: 300ms linear;
}

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

.theme-btn i {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 48px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    border-radius: 5px 40px 40px 5px;
    font-size: 22px;
    color: rgb(240, 99, 53);
    transition: 300ms linear;
}

.theme-btn:hover i {
    color: var(--theme-color);
    border-radius: 50%;
}

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

.pagination {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pagination-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pagination li a {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 54px;
    min-width: 54px;
    border: 1px solid rgb(222, 230, 234);
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    color: rgb(160, 169, 174);
    font-weight: 600;
    
}

.pagination li a img {
    position: relative;
    display: inline-block;
    top: -2px;
}

.pagination li a:hover, .pagination li a.current {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.mr-0 {
    margin: 0px !important;
}

.scroll-top {
    position: fixed;
    width: 60px;
    height: 60px;
    line-height: 60px;
    bottom: 0px;
    right: 40px;
    z-index: 99;
    border: 1px solid var(--theme-color);
    border-radius: 50%;
    font-size: 30px;
    color: var(--theme-color);
    background-color: rgb(255, 255, 255);
    text-align: center;
    cursor: pointer;
    opacity: 0;
    transition: 400ms linear;
}

.scroll-top i {
    position: relative;
    display: inline-block;
    transform: rotate(-90deg);
    left: 3px;
}

.scroll-top.open {
    bottom: 80px;
    right: 10px;
    opacity: 1;
}

.sec-title {
    position: relative;
    display: block;
    margin-bottom: 48px;
}

.sec-title .sub-title {
    margin-bottom: 8px;
}

.sec-title h2 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
}

.sec-title.light h2 {
    color: rgb(255, 255, 255);
}

.sec-pad {
    padding: 113px 0px 120px;
}

.sec-pad-2 {
    padding: 113px 0px 90px;
}

.sub-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 18px;
    line-height: 28px;
    font-family: var(--secondary-font);
    color: rgb(239, 100, 52);
    font-weight: 700;
}

.main-header {
    position: relative;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: 999;
    width: 100%;
    transition: 500ms;
}

.sticky-header {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 0;
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: 500ms linear;
}

.fixed-header .sticky-header {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    animation-name: fadeInDown;
    animation-duration: 500ms;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

.header-top {
    position: relative;
}

.header-top .bg-layer {
    position: absolute;
    left: -20px;
    top: 0px;
    width: calc(100% + 40px);
    height: 100%;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1563' height='50' viewBox='0 0 1563 50'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='1563' height='50'/%3E%3C/svg%3E") center bottom / cover no-repeat;
    background-color: var(--secondary-color);
}

.header-top .top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 30px;
}

.header-top .top-inner p {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgb(255, 255, 255);
}

.header-top .top-inner p a {
    color: rgb(255, 255, 255);
}

.header-top .top-inner p a:hover {
    color: var(--theme-color);
}

.header-top .top-inner p span {
    font-size: 14px;
    font-weight: 500;
    color: rgb(167, 193, 209);
    text-transform: uppercase;
}

.header-top .right-column {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top .right-column .info-list {
    position: relative;
    padding-right: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-top .right-column .info-list::before {
    position: absolute;
    content: "";
    background-color: rgb(39, 115, 162);
    width: 1px;
    height: 20px;
    top: 4px;
    right: 0px;
}

.header-top .right-column .info-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-top .right-column .info-list li a {
    display: inline-block;
    color: rgb(255, 255, 255);
}

.header-top .right-column .info-list li a:hover {
    color: var(--theme-color);
}

.header-top .right-column .social-links {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top .right-column .social-links li a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: rgb(255, 255, 255);
}

.header-top .right-column .social-links li a:hover {
    color: var(--theme-color);
}

.main-header .outer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
}

.menu-right-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-right-content .language-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgb(237, 242, 245);
    border-radius: 40px;
    padding: 13px 20px;
}

.menu-right-content .language-box .nice-select {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 28px;
    color: var(--title-color);
    cursor: pointer;
    padding-right: 18px;
}

.menu-right-content .language-box .nice-select::before {
    position: absolute;
    content: "Ã¯â€žâ€¦";
    font-family: flaticon;
    font-size: 10px;
    top: 0px;
    right: 0px;
    color: var(--title-color);
    transition: 200ms linear;
}

.menu-right-content .language-box .icon {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    color: rgb(160, 169, 174);
    top: 2px;
}

.menu-right-content .language-box .nice-select .list {
    left: inherit;
    right: -20px;
    margin-top: 15px;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: rgb(237, 242, 245);
}

.menu-right-content .sidebar-toggler {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--secondary-color);
    cursor: pointer;
}

.sidebar-popup {
    position: fixed;
    right: 0px;
    top: 0px;
    width: 425px;
    height: 100%;
    z-index: 99999;
    transform: scaleX(0);
    transform-origin: right center;
    background: var(--secondary-color);
    opacity: 0;
    visibility: hidden;
    transition: 400ms linear;
}

.sidebar-popup.popup-visible {
    transform: scaleX(1);
    opacity: 1;
    visibility: visible;
}

.sidebar-popup .popup-inner {
    position: relative;
    display: block;
    padding: 50px 50px 120px;
    height: 100%;
    overflow-y: scroll;
}

.theme-btn.secondary-bg {
    background-color: var(--secondary-color);
}

.theme-btn.secondary-bg:hover {
    background-color: var(--theme-color);
}

.sidebar-popup .message-btn .theme-btn:hover {
    background-color: rgb(255, 255, 255);
    color: var(--theme-color);
}

.sidebar-popup .message-btn .theme-btn:hover i {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
}

.sidebar-popup .close-popup {
    position: absolute;
    top: 30px;
    right: 30px;
    display: inline-block;
    font-size: 30px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    text-align: center;
    transition: 500ms;
}

.check-box-one input {
    display: none;
}

.check-box-one label {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--title-font);
    font-weight: 500;
    color: rgb(255, 255, 255);
    padding-left: 24px;
    display: inline-block;
    cursor: pointer;
}

.check-box-one label::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(205, 213, 221);
    background: transparent;
}

.check-box-one label::after {
    position: absolute;
    content: "";
    left: 4px;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--theme-color);
    opacity: 0;
    transition: 500ms;
}

.check-box-one input:checked + label::after {
    opacity: 1;
}

.sidebar-popup .logo-box {
    position: relative;
    margin-bottom: 30px;
}

.sidebar-popup .logo-box a {
    position: relative;
    display: inline-block;
    filter: brightness(0) invert(1);
}

.sidebar-popup .form-inner {
    position: relative;
    display: block;
    padding-bottom: 45px;
    border-bottom: 3px solid rgb(205, 213, 221);
    margin-bottom: 54px;
}

.sidebar-popup .form-inner::before {
    position: absolute;
    content: "";
    background-color: rgb(205, 213, 221);
    width: 70px;
    height: 1px;
    left: 0px;
    bottom: -7px;
}

.sidebar-popup .form-inner .form-group {
    position: relative;
    display: block;
    margin-bottom: 18px;
}

.sidebar-popup .form-inner .form-group label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--title-font);
    color: rgb(255, 255, 255);
    font-weight: 500;
    margin-bottom: 8px;
}

.sidebar-popup .form-inner .form-group label i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    top: 2px;
    color: var(--theme-color);
}

.sidebar-popup .form-inner .form-group input[type="email"], .sidebar-popup .form-inner .form-group input[type="password"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    border: 1px solid rgb(219, 223, 227);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
}

.sidebar-popup .form-inner .form-group input:focus {
    border-color: var(--theme-color);
}

.sidebar-popup .form-inner .forgot-password {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.sidebar-popup .form-inner .forgot-password button {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
    color: rgb(255, 255, 255);
    border-bottom-style: dashed;
    border-width: 1px;
    border-color: var(--theme-color);
    transition: 500ms;
}

.sidebar-popup .form-inner .forgot-password button:hover {
    color: var(--theme-color);
}

.sidebar-popup .form-inner .text-box p {
    color: rgb(255, 255, 255);
}

.sidebar-popup .form-inner .text-box p a {
    display: inline-block;
    color: var(--theme-color);
}

.sidebar-popup .form-inner .text-box p a:hover {
    text-decoration: underline;
}

.sidebar-popup .inner-box {
    position: relative;
    display: block;
    background-color: var(--theme-color);
    padding: 40px;
    overflow: hidden;
    margin-bottom: 40px;
}

.sidebar-popup .inner-box .icon-box {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 56px;
    background-color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
    color: var(--theme-color);
    margin-bottom: 18px;
}

.sidebar-popup .inner-box h3 {
    display: block;
    font-size: 24px;
    line-height: 32px;
    color: rgb(255, 255, 255);
    margin-bottom: 24px;
}

.sidebar-popup .inner-box h3 span {
    font-weight: 400;
}

.sidebar-popup .copyright p a, .sidebar-popup .copyright p {
    display: inline-block;
    color: rgb(255, 255, 255);
}

.sidebar-popup .copyright p a:hover {
    text-decoration: underline;
}
.copyright img{
    vertical-align: middle;
}

.sidebar-popup .inner-box .light-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 170px;
    color: rgba(255, 255, 255, 0.1);
}

.main-menu .navbar-collapse {
    padding: 0px;
    display: block !important;
}

.main-menu .navigation {
    margin: 0px;
}

.main-menu .navigation > li {
    position: inherit;
    float: left;
    margin: 0px 20px;
    transition: 500ms;
}

.header-style-one .main-menu .navigation > li {
    margin-right: 4px;
    margin-left: 0px;
    text-align: left;
}

.main-menu .navigation > li:last-child {
    margin-right: 0px !important;
}

.main-menu .navigation > li:first-child {
    margin-left: 0px !important;
}

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 17px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--title-font);
    opacity: 1;
    color: var(--title-color);
    z-index: 1;
    text-transform: capitalize;
    padding: 12px 0px;
    transition: 200ms linear;
}

.main-menu .navigation > li.dropdown > a {
    padding-right: 20px;
}

.main-menu .navigation > li.dropdown > a::before {
    position: absolute;
        content: "\f105";
    font-size: 10px;
    top: 12px;
    right: 0px;
    transition: 200ms linear;
    font-family: flaticon !important;
}

.main-menu .navigation > li.dropdown.current > a::before, .main-menu .navigation > li:hover > a::before {
}

.header-style-one .main-menu .navigation > li.current > a, .header-style-one .main-menu .navigation > li:hover > a, .header-style-one .main-menu .navigation > li.dropdown.current > a::before, .header-style-one .main-menu .navigation > li:hover > a::before {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
}

.main-menu .navigation > li.current > a, .main-menu .navigation > li:hover > a {
    color: rgb(35, 169, 224) !important;
}

.main-menu .navigation > li > ul, .main-menu .navigation > li > .megamenu {
    position: absolute;
    left: inherit;
    top: 100%;
    width: max-content;
    z-index: 100;
    border-radius: 20px;
    display: none;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 30px 0px;
    visibility: hidden;
    transition: 300ms linear;
}

.main-menu .navigation > li > ul::before, .main-menu .navigation > li > .megamenu::before {
    position: absolute;
    content: "";
    background-color: transparent;
    width: 100%;
    height: 30px;
    left: 0px;
    top: -30px;
}

.main-menu .navigation > li > .megamenu {
    background: rgb(33, 34, 38);
}

.main-menu .navigation > li > .megamenu a {
    display: inline-block !important;
}

.main-menu .navigation > li > ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation > li > ul > li {
    position: relative;
    width: 100%;
}

.main-menu .navigation > li > ul > li:last-child {
    margin-bottom: 0px;
}

.main-menu .navigation > li > ul > li > a {
    position: relative;
    display: block;
    line-height: 28px;
    font-size: 17px;
    font-family: var(--text-font);
    color: var(--text-color);
    text-transform: capitalize;
    background-color: rgb(255, 255, 255);
    padding: 13px 30px;
    border-bottom: 1px solid rgb(222, 229, 233);
    transition: 300ms linear;
}

.main-menu .navigation > li > ul > li:last-child > a {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.main-menu .navigation > li > ul > li:first-child > a {
    border-radius: 20px 20px 0px 0px;
}

.main-menu .navigation > li > ul > li:last-child > a {
    border-radius: 0px 0px 20px 20px;
}

.main-menu .navigation > li > ul > li > a:hover {
    padding-left: 49px;
    color: rgb(255, 255, 255);
    background-color: rgb(35, 169, 224);
    border-color: var(--theme-color);
}

.main-menu .navigation > li > ul > li > a::before {
    position: absolute;
    content: "\f108";
    font-family: flaticon;
    left: 25px;
    top: 13px;
    opacity: 0;
    font-size: 20px;
    color: rgb(255, 255, 255);
    transition: 400ms linear;
}

.main-menu .navigation > li > ul > li > a:hover::before {
    opacity: 1;
}

.main-menu .navigation > li > .megamenu li > a {
    padding-left: 0px;
    padding-right: 0px;
}

.main-menu .navigation > li > .megamenu h4 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: rgb(255, 255, 255);
}

.main-menu .navigation > li > ul > li:last-child > a, .main-menu .navigation > li > .megamenu li:last-child > a {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.main-menu .navigation > li > ul > li.dropdown > a::after {
    font-family: flaticon;
    content: "Ã¯â€žÂ»";
    position: absolute;
    right: 0px;
    top: 14px;
    color: rgb(169, 176, 180);
    display: block;
    line-height: 24px;
    font-size: 10px;
    text-align: center;
    z-index: 5;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-menu .navigation > li > ul > li.dropdown > a:hover::after {
    color: var(--theme-color);
}

.main-menu .navigation > li > ul > li.dropdown.current > a::after, .main-menu .navigation > li > ul > li.dropdown > a:hover::after {
}

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0%;
    margin-top: 15px;
    margin-left: 10px;
    width: 270px;
    z-index: 100;
    display: none;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px 0px;
    background: rgb(255, 255, 255);
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-menu .navigation > li > ul > li > ul::before {
    position: absolute;
    content: "";
    left: -10px;
    top: 0px;
    width: 10px;
    height: 100%;
}

.main-menu .navigation > li > ul > li > ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    width: 100%;
    padding: 0px 25px;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.main-menu .navigation > li > ul > li > ul > li > a {
    position: relative;
    display: block;
    line-height: 24px;
    font-weight: 400;
    font-size: 17px;
    font-family: var(--text-font);
    color: var(--title-color);
    text-align: left;
    padding: 14px 0px;
    text-transform: capitalize;
    border-bottom: 1px solid rgb(228, 233, 236);
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover {
    color: var(--theme-color);
    padding-left: 20px;
}

.main-menu .navigation > li > ul > li > ul > li > a::before {
    position: absolute;
    content: "Ã¯â€¦â€º";
    font-family: flaticon;
    left: 0px;
    color: var(--theme-color);
    font-size: 14px;
    top: 14px;
    opacity: 0;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-menu .navigation > li > ul > li > ul > li > a:hover::before {
    opacity: 1;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a::after {
    font-family: "Font Awesome 5 Pro";
    content: "Ã¯â€žâ€¦";
    position: absolute;
    right: 20px;
    top: 12px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
}

.main-menu .navigation > li.dropdown:hover > ul, .main-menu .navigation > li.dropdown:hover > .megamenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(-16px);
    top: 100%;
}

.main-menu .navigation > li.dropdown:hover > .megamenu {
    margin-top: 0px;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 0%;
    margin-top: 0px;
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: -32px;
    top: 66px;
    width: 34px;
    height: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    color: rgb(59, 59, 59);
    cursor: pointer;
    display: none;
    z-index: 5;
    transition: 500ms;
}

.main-menu .navigation li.current.dropdown .dropdown-btn, .main-menu .navigation li:hover .dropdown-btn {
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
    display: none;
}

.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 60px;
    cursor: pointer;
    background-color: var(--theme-color);
    display: none;
    padding: 19px;
    border-radius: 40px;
}

.menu-area .mobile-nav-toggler .icon-bar {
    position: relative;
    height: 3px;
    width: 32px;
    display: block;
    margin-bottom: 5px;
    background-color: rgb(255, 255, 255);
    transition: 300ms;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
    margin-bottom: 0px;
}

.main-menu .navigation > li.dropdown > .megamenu {
    position: absolute;
    width: 100%;
    padding: 40px 50px 10px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: rgb(255, 255, 255);
}

.main-menu .navigation > li.dropdown > .megamenu ::-webkit-scrollbar {
    display: none !important;
}

.main-menu .navigation li.dropdown .megamenu li h4 {
    margin-bottom: 10px;
}

.main-menu .navigation > li > .megamenu .single-item {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.main-menu .navigation > li > .megamenu .single-item .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 30px 0px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.main-menu .navigation > li > .megamenu .single-item .image-box img {
    width: 100%;
    border-radius: 10px;
}

.main-menu .navigation > li > .megamenu .single-item h4 {
    position: relative;
    display: block;
    padding-top: 22px;
    font-size: 20px;
    line-height: 28px;
}

.main-menu .navigation > li > .megamenu .single-item h4 a {
    display: inline-block;
    color: var(--title-color);
}

.main-menu .navigation > li > .megamenu .single-item h4 a:hover {
    color: var(--theme-color);
}

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    color: rgb(55, 134, 255);
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0px;
    top: 0px;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: 900ms;
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 50px 25px 100px;
    text-align: left;
    filter: brightness(0)  invert(1);
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    left: 0%;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: 900ms;
    background-color: rgb(0, 0, 0);
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.7;
    visibility: visible;
    right: 100%;
    transition: 0.8s ease-out;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: var(--secondary-color);
    padding: 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    transform: translateX(100%);
    transition: 900ms !important;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    transition: 0.7s;
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 25px;
    top: 10px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    font-size: 16px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    z-index: 10;
    transition: 0.9s;
}

.mobile-menu-visible .mobile-menu .close-btn {
    transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
    transform: rotate(90deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > ul > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    transition: 500ms;
}

.mobile-menu .navigation li ul li > a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu .navigation li > a::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    height: 0px;
    border-left: 5px solid rgb(255, 255, 255);
    transition: 500ms;
}

.mobile-menu .navigation li.current > a::before {
    height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    border-radius: 2px;
    transition: 500ms;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    color: rgb(255, 255, 255);
    transform: rotate(90deg);
}

.mobile-menu .navigation li > ul, .mobile-menu .navigation li > ul > li > ul, .mobile-menu .navigation > li.dropdown > .megamenu {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    padding: 0px 25px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    transition: 500ms;
}

.mobile-menu .social-links li a:hover {
}

div#mCSB_1_container {
    top: 0px !important;
}

.mobile-menu .contact-info {
    position: relative;
    padding: 120px 30px 20px;
}

.mobile-menu .contact-info h4 {
    position: relative;
    font-size: 20px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
    position: relative;
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-menu .contact-info ul li a:hover {
}

.mobile-menu .contact-info ul li:last-child {
    margin-bottom: 0px;
}

.main-header .outer-box {
    position: relative;
}

.outer-box .logo {
    width: 100%;
    max-width: 120px;
}

.nice-select {
    position: relative;
    background: transparent;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.nice-select::before {
    position: absolute;
    content: "Ã¯â€¦â€°";
    font-family: flaticon;
    top: 0px;
    right: 25px;
    font-size: 10px;
    color: rgb(184, 188, 196);
}

.nice-select .list {
    min-width: max-content;
}

.tabs-box .tab {
    position: relative;
    display: none;
    transform: translateY(20px);
    transition: 400ms linear;
}

.tabs-box .tab.active-tab {
    display: block;
    transform: translateY(0px);
}

.special-text {
    font-family: Carattere, cursive;
}

.search-popup {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 99999;
    overflow: auto;
    background: rgb(255, 255, 255);
    transform: scaleY(0);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px 0px;
    transform-origin: center top;
    transition: 400ms linear;
}

.search-popup.popup-visible {
    transform: scaleY(1);
}

.search-popup .popup-inner {
    position: relative;
    padding: 60px;
}

.search-popup .popup-inner .upper-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.search-popup .popup-inner .upper-box .close-search {
    position: relative;
    display: inline-block;
    font-size: 30px;
    line-height: 30px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-popup .popup-inner .upper-box .close-search:hover {
    color: var(--theme-color);
}

.search-popup .popup-inner .search-form {
}

.search-popup .popup-inner .search-form .form-group {
    position: relative;
    margin-bottom: 0px;
}

.search-popup .popup-inner .search-form .form-group input[type="search"] {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    font-size: 20px;
    color: var(--text-color);
    background-color: rgb(245, 245, 245);
    border: 1px solid rgb(245, 245, 245);
    padding: 10px 30px;
    border-radius: 5px;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-popup .popup-inner .search-form .form-group button[type="submit"] {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 60px;
    height: 60px;
    line-height: 64px;
    text-align: center;
    background-color: var(--secondary-color);
    font-size: 24px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-popup .popup-inner .search-form .form-group input:focus + button, .search-popup .popup-inner .search-form .form-group button:hover {
    background-color: var(--theme-color);
}

.search-popup .popup-inner .search-form .form-group input:focus {
    border-color: var(--theme-color);
}

.swiper-initialized {
    height: 100%;
}

.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
    overflow: hidden;
}

.banner-carousel .slide-item {
    position: relative;
    width: 100%;
}

.banner-carousel .slide-item img {
    display: block;
    width: 100%;
    height: auto;
}

.banner-section .banner-carousel .banner-navigation {
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.banner-section .banner-carousel .banner-navigation button {
    position: absolute;
    top: 0px;
    width: 70px;
    height: 70px;
    border: 0px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    color: rgb(255, 255, 255);
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: 200ms linear;
}

.banner-section .banner-carousel .banner-navigation button:hover {
    background-color: var(--theme-color);
}

.banner-section .banner-carousel .banner-navigation .banner-prev-btn {
    left: 50px;
}

.banner-section .banner-carousel .banner-navigation .banner-next-btn {
    right: 50px;
}

.banner-section .banner-carousel .banner-navigation .banner-prev-btn i {
    transform: rotate(180deg);
}

.booking-section {
    position: relative;
}

.booking-section .customer-box {
    position: relative;
    display: block;
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 21px 15px;
    text-align: center;
}

.booking-section .customer-box .special-text {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 50px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    margin-bottom: 15px;
}

.booking-section .customer-box .image-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
}

.booking-section .customer-box .image-list li {
    position: relative;
    display: inline-block;
    margin: 0px -5px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.booking-section .customer-box .image-list li img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
}

.booking-section .customer-box .image-list li i {
    position: absolute;
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    align-items: center;
    justify-content: center;
    background-color: rgba(138, 190, 63, 0.75);
    border-radius: 50%;
    line-height: 60px;
    font-size: 30px;
    color: rgb(255, 255, 255);
}

.booking-section .customer-box .image-list li:nth-child(2) {
    z-index: 1;
}

.booking-section .customer-box p {
    color: rgb(255, 255, 255);
}

.booking-section .rotate-box {
    position: relative;
    display: block;
    text-align: right;
    padding-right: 17px;
}

.booking-section .rotate-box .image {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.booking-section .rotate-box .image img {
    width: 100%;
    border-radius: 50%;
}

.booking-section .rotate-box .curve-text {
    position: absolute;
    top: -29px;
    right: 77px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--title-color);
}

.booking-form {
    position: relative;
    display: block;
    background-color: rgb(236, 242, 245);
    border-radius: 20px;
    padding: 20px;
}

.booking-form::before {
    position: absolute;
    content: "";
    background-color: rgb(255, 255, 255);
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    left: 20px;
    top: 20px;
    border-radius: 10px;
}

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

.booking-form .form-group .icon {
    position: absolute;
    right: 20px;
    bottom: 16px;
    z-index: 1;
}

.booking-form .form-group label {
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 28px;
    color: var(--title-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.booking-form .form-group .select-box {
    min-height: 60px;
}

.booking-form .form-group input, .booking-form .form-group textarea, .booking-form .form-group .nice-select {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border: 1px solid rgb(222, 229, 233);
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 0px 20px;
    font-size: 17px;
    color: var(--text-color);
    /* cursor: pointer; */
    box-shadow: rgb(237, 242, 245) 0px 4px 0px 0px;
}

.booking-form .form-group .nice-select::before {
    position: absolute;
        content: "\f105";
    font-family: flaticon;
    font-size: 10px;
    top: 0px;
    right: 20px;
    color: rgb(95, 99, 102);
}

.ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev {
    cursor: pointer;
    border-width: medium !important;
    border-style: none !important;
    border-color: currentcolor !important;
    border-image: initial !important;
}

.booking-section .inner-box .image img {
    max-width: none;
    float: left;
}

.booking-section .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.categories-section {
    position: relative;
    background-color: rgba(115, 154, 200, 0.18);
}

.categories-section .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    clip-path: polygon(0px 0px, 100% 0px, 100% 70%, 50% 100%, 0px 70%);
}

.categories-section .bg-layer::before {
    position: absolute;
    content: "";
    background-color: var(--secondary-color);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.75;
}

.categories-section .sec-title.light p {
    color: rgb(176, 191, 200);
}

.link-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 17px;
    line-height: 28px;
    font-weight: 600;
    color: var(--title-color);
}

.link-box.light a {
    color: rgb(255, 255, 255);
}

.link-box a:hover {
    color: var(--theme-color);
}

.link-box a i {
    position: relative;
    display: inline-block;
    font-size: 22px;
    color: var(--theme-color);
    top: 3px;
}

.categories-section .sec-title .link-box {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.categories-block-one {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.categories-block-one::before {
    position: absolute;
    content: "";
    border-width: 1px 1px medium;
    border-style: solid solid none;
    border-color: rgb(65, 118, 155) rgb(65, 118, 155) currentcolor;
    border-image: initial;
    border-radius: 20px 20px 0px 0px;
    background-color: transparent;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 50%;
    transition: 300ms linear;
}

.categories-block-one::after {
    position: absolute;
    content: "";
    background-color: rgb(237, 242, 245);
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
    z-index: -1;
    border-radius: 0px 0px 20px 20px;
    transition: 300ms linear;
}

.categories-block-one:hover::before {
    border-color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
}

.categories-block-one .title-box {
    position: relative;
    display: block;
}

.categories-block-one .title-box h3 {
    font-size: 19px;
    line-height: 30px;
}

.categories-block-one .title-box h3 a {
    display: inline-block;
    color: rgb(255, 255, 255);
}

.categories-block-one:hover .title-box h3 a {
    color: var(--title-color);
}

.categories-block-one .title-box h3 a:hover {
    color: var(--theme-color);
}

.categories-block-one .image-box {
    position: relative;
    display: block;
    border-radius: 20px 20px 0px 0px;
    overflow: hidden;
}

.categories-block-one .image-box img {
    width: 100%;
    transition: 400ms linear;
}

.categories-block-one .lower-content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    padding: 18px 15px 19px 25px;
    border-radius: 0px 20px 20px;
    z-index: 1;
    margin-top: -37px;
}

.categories-block-one .lower-content::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
}

.categories-block-one .lower-content p {
    margin-bottom: 4px;
}

.categories-block-one .lower-content .price {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: var(--theme-color);
}

.categories-block-one .lower-content .link {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.categories-block-one .lower-content .link a {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 48px;
    background-color: rgb(33, 82, 156);
    text-align: center;
    border-radius: 5px 40px 40px 5px;
    font-size: 22px;
    color: rgb(255, 255, 255);
    z-index: 1;
}

.categories-block-one .lower-content .link a:hover {
    border-radius: 50%;
    color: rgb(255, 255, 255);
    background-color: rgb(239, 100, 52);
}

.categories-section .shape {
    position: absolute;
    width: 100px;
    height: 198px;
    right: 140px;
    bottom: 30px;
}

.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.float-bob-x {
    animation-name: float-bob-x;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.destinations-section {
    position: relative;
}

.destinations-block-one {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.destinations-block-one .image-box {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.destinations-block-one .image-box .image {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.destinations-block-one .image-box .image::before {
    position: absolute;
    content: "";
    background-color: rgb(0, 0, 0);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.1;
    z-index: 1;
}

.destinations-block-one .image-box .image img {
    width: 100%;
    border-radius: 20px;
    transition: 300ms linear;
}

.destinations-block-one:hover .image-box .image img {
    transform: scale(1.2);
}

.swiper-horizontal {
    overflow: hidden;
}

.destinations-block-one .location {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    left: 20px;
    bottom: 20px;
}

.destinations-block-one .location h3 {
    font-size: 22px;
    line-height: 30px;
    color: rgb(255, 255, 255);
}

.destinations-block-one .location i {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.destinations-block-one .lower-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    border: 1px solid rgb(222, 229, 233);
    padding: 4px 4px 4px 19px;
    box-shadow: rgb(237, 242, 245) 0px 4px 0px 0px;
}

.destinations-block-one .lower-content p span {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-color);
}

.destinations-block-one .lower-content a {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 48px;
    background-color: rgb(219, 227, 232);
    text-align: center;
    border-radius: 5px 40px 40px 5px;
    font-size: 22px;
    color: var(--title-color);
    z-index: 1;
}

.destinations-block-one .lower-content a:hover {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
    border-radius: 50%;
}

.dots-style-one .swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    margin: 0px 5px;
    width: 50px;
    height: 8px;
    border: 1px solid rgb(222, 229, 233);
    background-color: transparent;
    border-radius: 5px;
    cursor: pointer;
    opacity: 1;
    transition: 500ms;
}

.dots-style-one .swiper-pagination-bullet-active {
    background-color: var(--theme-color);
    border-color: var(--theme-color) !important;
}

.destinations-section .dots-style-one {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 25px;
}

.destinations-section .shape-box .shape-1 {
    position: absolute;
    left: 0px;
    top: -120px;
    width: 375px;
    height: 305px;
    background-repeat: no-repeat;
}

.destinations-section .shape-box .shape-2 {
    position: absolute;
    right: 345px;
    top: 120px;
    width: 92px;
    height: 54px;
    background-repeat: no-repeat;
}

.bg-color-1 {
    background-color: rgb(237, 241, 245);
}

.journeys-section {
    position: relative;
}

.journeys-section .image-box {
    position: relative;
    display: block;
    margin-right: 32px;
    padding-right: 78px;
    padding-bottom: 216px;
    padding-left: 96px;
}

.journeys-section .image-box .image {
    border-radius: 20px;
    border: 2px solid rgb(237, 242, 245);
}

.journeys-section .image-box .image img {
    width: 100%;
    border-radius: 20px;
}

.journeys-section .image-box .image-2 {
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.journeys-section .image-box .image-3 {
    position: absolute;
    right: 0px;
    bottom: 58px;
}

.journeys-section .image-box .image-shape {
    position: absolute;
    left: -50px;
    top: 50px;
    width: 119px;
    height: 129px;
    background-repeat: no-repeat;
}

.journeys-section .content-box {
    position: relative;
    display: block;
}

.journeys-section .content-box .text-box {
    margin-bottom: 38px;
}

.journeys-section .content-box .single-item {
    position: relative;
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.journeys-section .content-box .single-item:last-child {
    margin-bottom: 0px;
}

.journeys-section .content-box .single-item h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 23px;
}

.journeys-section .content-box .single-item .icon-box {
    position: relative;
    display: inline-block;
    float: right;
    width: 90px;
    height: 90px;
    line-height: 90px;
    background-color: rgb(219, 227, 232);
    text-align: center;
    border-radius: 50%;
}

.journeys-section .content-box .single-item .icon-shape {
    position: absolute;
    left: 0px;
    bottom: 85px;
    width: 60px;
    height: 50px;
    background-repeat: no-repeat;
}

.journeys-section .content-box .single-item .inner-box {
    position: relative;
    display: block;
    border-radius: 2px;
    padding: 25px 30px;
    min-width: 370px;
}

.journeys-section .content-box .single-item .inner-box .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 20px;
}

.journeys-section .content-box .single-item .inner-box .bg-layer::before {
    position: absolute;
    content: "";
    background-color: var(--secondary-color);
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.92;
}

.journeys-section .content-box .single-item .inner-box p {
    color: rgb(203, 220, 230);
    margin-bottom: 13px;
}

.journeys-section .content-box .single-item .inner-box .list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}

.journeys-section .content-box .single-item .inner-box .list li:last-child {
    margin-bottom: 0px;
}

.journeys-section .content-box .single-item .inner-box .list {
    margin-bottom: 12px;
}

.vibes-section .pattern-layers {
    position: absolute;
    top: 135px;
    filter: sepia(20%) saturate(180%) hue-rotate(-10deg);
    right: 375px;
    width: 278px;
    height: 120px;
    background-repeat: no-repeat;
}
.package-section {
    position: relative;
    padding: 70px 0px;
    background-color: rgb(249, 252, 253);
}

/* Left Sidebar Tabs */
.package-sidebar {
    position: sticky;

    z-index: 2;
}

.package-sidebar.mr_20 {
    margin-right: 20px;
}

.package-sidebar .sidebar-widget {
    position: relative;
    display: block;
    background-color: #fff;
    border: 1px solid rgb(222, 229, 233);
    border-radius: 20px;
    padding: 26px 24px;
    margin-bottom: 20px;
}

.package-sidebar .sidebar-widget .widget-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px dashed var(--theme-color);
}

.package-sidebar .sidebar-widget .widget-title h3 {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 30px;
    color: var(--title-color);
    margin: 0;
}

.package-sidebar .sidebar-widget .widget-title i {
    position: relative;
    display: inline-block;
    color: rgb(146, 166, 180);
    font-size: 14px;
}

.package-tab-widget .widget-content {
    position: relative;
    display: block;
}

.package-tab-widget .package-tab-list {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
}

.package-tab-widget .package-tab-list li {
    position: relative;
    display: block;
    list-style: none;
    padding: 14px 0px 14px 22px;
    border-bottom: 1px solid rgb(222, 229, 233);
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    cursor: pointer;
    transition: 300ms linear;
}

.package-tab-widget .package-tab-list li:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 21px;
    width: 10px;
    height: 10px;
    border: 2px solid rgb(207, 214, 219);
    border-radius: 50%;
    transition: 300ms linear;
}

.package-tab-widget .package-tab-list li:hover,
.package-tab-widget .package-tab-list li.active {
    color: var(--theme-color);
}

.package-tab-widget .package-tab-list li:hover:before,
.package-tab-widget .package-tab-list li.active:before {
    border-color: var(--theme-color);
    background-color: var(--theme-color);
}

.package-tab-widget .package-tab-list li:last-child {
    border-bottom: none;
}

/* Tab Content */
.package-tab-content {
    position: relative;
    display: block;
}

.package-tab-pane {
    display: none;
}

.package-tab-pane.active-tab {
    display: block;
}

/* Card CSS */
.package-block-one {
    position: relative;
    display: block;
    border: 1px solid rgb(222, 229, 233);
    border-radius: 20px;
    padding: 9px;
    margin-bottom: 34px;
    box-shadow: rgb(237, 242, 245) 0px 4px 0px 0px;
    transition: 300ms linear;
    background-color: #fff;
}

.package-block-one:hover {
    border-color: var(--theme-color);
}

.package-block-one .title-box {
    position: relative;
    display: block;
    text-align: center;
    align-items: center;
}

.package-block-one .title-box .location {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.package-block-one .title-box .location i {
    color: var(--theme-color);
}

.package-block-one .title-box h3 {
    font-size: 18px;
    line-height: 32px;
    margin: 0;
}

.package-block-one .title-box h3 a {
    display: inline-block;
    color: var(--title-color);
}

.package-block-one .title-box h3 a:hover {
    color: var(--theme-color);
}

.package-block-one .image-box {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: rgb(173 208 113);
    height: 260px;
    border-radius: 20px 20px 0px 0px;
}

.package-block-one .image-box .image {
    position: relative;
    display: block;
    margin: 0;
}

.package-block-one .image-box .image img {
    width: 100%;
    display: block;
    transition: 400ms linear;
}

.package-block-one:hover .image-box .image img {
    transform: scale(1.05);
}

.package-block-one .lower-content {
    position: relative;
    display: block;
    background-color: rgb(237, 242, 245);
    border-radius: 0px 0px 20px 20px;
    z-index: 1;
    height: 87px;
    /* margin-top: -20px; */
    padding: 17px 20px 20px;
}

.package-block-one .lower-content .price-rating {
    position: relative;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    padding-bottom: 18px;
    /* margin-bottom: 14px; */
    border-bottom: 1px solid rgb(206, 214, 218);
}

.package-block-one .lower-content .price-rating .price {
    position: relative;
    /* display: flex; */
    align-items: center;
    text-align: center;
    /* gap: 5px; */
}

.package-block-one .lower-content .price-rating .price .special-text {
    font-size: 22px;
    line-height: 28px;
    color: var(--theme-color);
    font-weight: 700;
}

.package-block-one .lower-content .price-rating .rating {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: var(--theme-color);
    border-radius: 30px;
    padding: 2px 10px;
    font-size: 15px;
    line-height: 20px;
    color: rgb(255, 255, 255);
}

.package-block-one .lower-content .price-rating .rating i {
    position: relative;
    display: inline-block;
    top: 1px;
}

.package-block-one .lower-content .lower-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-block-one .lower-content .lower-box .duration-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.package-block-one .lower-content .lower-box .duration-box .icon-box {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 46px;
    border: 1px solid rgb(207, 214, 219);
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    color: var(--theme-color);
}

.package-block-one .lower-content .lower-box .duration-box span {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    color: var(--title-color);
}

.package-block-one .lower-content .lower-box .duration-box p {
    color: rgb(1, 82, 133);
    margin: 0;
}

.package-block-one .lower-content .lower-box .link a {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 48px;
    background-color: rgb(219, 227, 232);
    text-align: center;
    border-radius: 5px 40px 40px 5px;
    font-size: 22px;
    color: var(--title-color);
    z-index: 1;
}

.package-block-one .lower-content .lower-box .link a:hover {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
    border-radius: 50%;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .package-sidebar {
        position: relative;
        top: 0;
        margin-right: 0px;
        margin-bottom: 40px;
    }

    .package-sidebar.mr_20 {
        margin-right: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .package-section {
        padding: 50px 0px;
    }

    .package-sidebar .sidebar-widget {
        padding: 22px 20px;
    }

    .package-block-one .lower-content {
        height: auto;
        min-height: 87px;
    }

    .package-block-one .lower-content .price-rating {
        gap: 12px;
    }

    .package-block-one .lower-content .price-rating .price .special-text {
        font-size: 20px;
    }
}
.chooseus-section {
    position: relative;
}

.chooseus-block-one {
    position: relative;
    display: block;
    border: 1px solid rgb(205, 213, 217);
    border-radius: 20px;
    padding: 20px;
    height: 360px;
    background-color: rgb(237, 241, 245);
    margin-bottom: 30px;
    transition: 300ms linear;
    overflow: hidden;
    isolation: isolate;
}

.chooseus-block-one::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: #015285;
    opacity: 1;
    z-index: -1;
    transition: height 500ms ease;
}

.chooseus-block-one:hover {
    border-color: var(--theme-color);
}

.chooseus-block-one:hover::after {
    height: 100%;
}

.chooseus-block-one .icon-box,
.chooseus-block-one h3,
.chooseus-block-one p {
    position: relative;
    z-index: 1;
    transition: 300ms ease;
}

.chooseus-block-one .icon-box {
    display: inline-block;
    margin-bottom: 30px;
}

.chooseus-block-one .icon-box::before {
    position: absolute;
    content: "";
    background-color: rgb(219, 227, 231);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: -10px;
    right: -7px;
    z-index: -1;
    transition: 300ms ease;
}

.chooseus-block-one:hover h3,
.chooseus-block-one:hover h3 a,
.chooseus-block-one:hover .icon-box img,
.chooseus-block-one:hover p {
    color: #ffffff;
    filter: brightness(0) invert(1);
}

.chooseus-block-one:hover .icon-box::before {
    background-color: rgba(255, 255, 255, 0.2);
}

.chooseus-block-one h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
}

.chooseus-block-one h3 a {
    display: inline-block;
    color: var(--title-color);
    transition: 300ms ease;
}

.chooseus-block-one h3 a:hover {
    color: #ffffff;
}

.chooseus-block- img:hover{
    filter: brightness(0) invert(1);
}

.chooseus-block-two {
    position: relative;
    border: 1px solid rgb(205, 213, 217);
    background-color: rgb(237, 241, 245);
    border-radius: 20px;
    padding: 32px 29px 33px;
    margin-bottom: 30px;
    transition: 300ms linear;
    overflow: hidden;
    isolation: isolate;
}

.chooseus-block-two::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: var(--theme-color);
    opacity: 1;
    z-index: -1;
    transition: height 500ms ease;
}

.chooseus-block-two:hover {
    border-color: var(--theme-color);
}

.chooseus-block-two:hover::after {
    height: 100%;
}

.chooseus-block-two .icon-box,
.chooseus-block-two .inner-box,
.chooseus-block-two h3,
.chooseus-block-two p {
    position: relative;
    z-index: 1;
    transition: 300ms ease;
}

.chooseus-block-two .icon-box {
    display: inline-block;
    margin-bottom: 30px;
    padding-top: 10px;
}

.chooseus-block-two .icon-box::before {
    position: absolute;
    content: "";
    background-color: rgb(219, 227, 231);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 0px;
    right: -7px;
    z-index: -1;
    transition: 300ms ease;
}

.chooseus-block-two:hover h3,
.chooseus-block-two:hover h3 a,
.chooseus-block-two:hover p,
.chooseus-block-two:hover h2 {
    color: #ffffff;
}

.chooseus-block-two:hover .icon-box::before {
    background-color: rgba(255, 255, 255, 0.2);
}

.chooseus-block-two h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 4px;
}

.chooseus-block-two h3 a {
    display: inline-block;
    color: var(--title-color);
    transition: 300ms ease;
}

.chooseus-block-two h3 a:hover {
    color: #ffffff;
}

.chooseus-block-two h2 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    color: var(--title-color);
    font-family: var(--secondary-font);
    margin-bottom: 6px;
    transition: 300ms ease;
}

.chooseus-section .bg-image .bg-image-1 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.chooseus-section .bg-image .bg-shape-1 {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 645px;
    height: 728px;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.chooseus-section .bg-image .bg-shape-2 {
    position: absolute;
    left: 95px;
    top: 50%;
    margin-top: -69px;
    width: 131px;
    height: 138px;
    background-repeat: no-repeat;
}
.news-section {
    position: relative;
    padding: 112px 0px;
}

.news-block-one {
    position: relative;
    display: block;
    margin-bottom: 30px;
    background-color: #ffffff;
}

.news-block-one .image-box {
    position: relative;
    display: block;
}

.news-block-one .image-box .image {
    position: relative;
    display: block;
    /* border-radius: 20px; */
    overflow: hidden;
    background-color: var(--secondary-color);
}

.news-block-one .image-box .image img {
    width: 100%;
    /* border-radius: 20px; */
    transition: 300ms linear;
}

.news-block-one:hover .image-box .image img {
    /* opacity: 0.2; */
    transform: scale(1.1);
}

.news-block-one .image-box .view-btn {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-block-one .image-box .view-btn a {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: rgb(255, 255, 255);
    top: -35px;
    transform: scale(0, 0);
    transition: 300ms linear;
}

.news-block-one .image-box .view-btn a:hover {
    color: var(--theme-color);
}

.news-block-one:hover .image-box .view-btn a {
    transform: scale(1, 1);
}

.news-block-one .lower-content {
    position: relative;
    height: 280px;
    display: block;
    background-color: rgb(255, 255, 255);
    /* border-radius: 20px; */
    border: 1px solid rgb(221, 229, 233);
    padding: 20px;
    margin-top: 0px;
    z-index: 1;
    /* margin-left: 10px; */
    /* margin-right: 10px; */
}

.news-block-one .lower-content .category-box {
    position: absolute;
    left: -1px;
    top: -23px;
    background-color: var(--secondary-color);
    border-radius: 20px 30px 30px 0px;
    padding: 8px 20px;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 300ms linear;
}

.news-block-one .lower-content .category-box i {
    position: relative;
    display: inline-block;
    top: 2px;
    color: var(--theme-color);
    transition: 300ms linear;
}

.news-block-one:hover .lower-content .category-box {
    background-color: var(--theme-color);
}

.news-block-one:hover .lower-content .category-box i {
    color: rgb(255, 255, 255);
}

.news-block-one .lower-content h3 {
    display: block;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.news-block-one .lower-content p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: justify;
        margin-bottom: 10px;
}
.news-block-one .lower-content h3 a {
    display: inline-block;
    color: var(--title-color);
}

.news-block-one .lower-content h3 a:hover {
    color: var(--theme-color);
}

.news-block-one .lower-content .lower-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.news-block-one .lower-content .lower-box .post-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgb(1 82 133);
    padding: 8px 38px 8px 0px;
    /* border-radius: 30px; */
}

.news-block-one .lower-content .lower-box .post-info::before {
    position: absolute;
    content: "";
    background-color: rgb(1 82 133);
    width: 50px;
    height: 100%;
    left: -24px;
    top: 0px;
}

.news-block-one .lower-content .lower-box .post-info li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.news-block-one .lower-content .lower-box .post-info li i {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
}

.news-block-one .lower-content .lower-box .post-info li a {
    display: inline-block;
    color: #fff;
}

.news-block-one .lower-content .lower-box .post-info li a:hover {
    color: var(--theme-color);
}

.news-block-one .lower-content .lower-box .link a {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 48px;
    min-width: 44px;
    background-color: rgb(1 82 133);
    text-align: center;
    border-radius: 5px 40px 40px 5px;
    font-size: 22px;
    color: #ffffff;
    z-index: 1;
}

.news-block-one .lower-content .lower-box .link a:hover {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
    border-radius: 50%;
}

.news-section .dots-style-one {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 20px;
}

.news-section .lower-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.testimonial-section {
    position: relative;
    padding: 112px 0px 105px;
}

.testimonial-section .testimonial-content {
    position: relative;
    display: block;
    margin-right: -600px;
}

.testimonial-block-one {
    position: relative;
    display: block;
    border-radius: 20px;
    background-color: rgb(219, 227, 231);
    padding: 50px 40px 37px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.testimonial-block-one .icon-box {
    position: absolute;
    left: 40px;
    top: -30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: rgb(237, 241, 245);
    text-align: center;
    border-radius: 50%;
}

.testimonial-block-one p {
    margin-bottom: 33px;
}

.testimonial-block-one .lower-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-block-one .lower-box .rating-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--title-color);
    background-color: rgb(237, 241, 245);
    border-radius: 30px;
    padding: 5px 5px 5px 20px;
}

.testimonial-block-one .lower-box .rating-box i {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 44px;
    background-color: rgb(219, 227, 231);
    text-align: center;
    border-radius: 50%;
    font-size: 22px;
    color: var(--theme-color);
}

.testimonial-block-one .lower-box .clients-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-block-one .lower-box .clients-box .clients-image {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-block-one .lower-box .clients-box .clients-image img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-block-one .lower-box .clients-box h4 {
    font-size: 20px;
    line-height: 30px;
}

.testimonial-block-one .lower-box .clients-box .designation {
    position: relative;
    display: block;
    color: var(--theme-color);
}

.testimonial-section .dots-style-one .swiper-pagination-bullet {
    border-color: rgb(205, 213, 217);
}

.testimonial-section .dots-style-one {
    max-width: 1170px;
    width: 100%;
    text-align: right;
    padding-top: 20px;
}

.testimonial-section .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.testimonial-section .sec-title {
    margin-bottom: 30px;
}

.accordion-box .block .acc-content {
    display: none;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.faq-section {
    position: relative;
}

.accordion-style-one .accordion {
    position: relative;
    margin-bottom: 10px;
}

.accordion-style-one .accordion:last-child {
    margin-bottom: 0px;
}

.accordion-style-one .accordion.active-block {
    border-radius: 20px;
}

.accordion-style-one .accordion .acc-btn {
    position: relative;
    padding: 19px 30px 19px 63px;
    cursor: pointer;
    border: 1px solid rgb(221, 229, 233);
    border-radius: 40px;
    transition: 300ms linear;
}

.accordion-style-one .accordion .acc-btn.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 20px 20px 0px 0px;
}

.accordion-style-one .accordion .acc-btn.active h4 {
    color: rgb(255, 255, 255);
}

.accordion-style-one .accordion .acc-btn h4 {
    font-size: 20px;
    line-height: 30px;
}

.accordion-style-one .accordion .acc-btn .icon-box {
    position: absolute;
    left: 20px;
    top: 23px;
    font-size: 24px;
    color: rgb(160, 169, 174);
}

.accordion-style-one .accordion .acc-btn.active .icon-box {
    color: var(--theme-color);
}

.accordion-style-one .accordion .acc-content {
    border: 1px solid rgb(221, 229, 233);
    border-radius: 0px 0px 20px 20px;
    padding: 22px 29px;
}

.faq-sidebar {
    position: relative;
    display: block;
    border-radius: 20px;
    border: 1px solid rgb(221, 229, 233);
    padding: 9px 9px 34px;
}

.faq-sidebar .inner-box {
    position: relative;
    display: block;
    background-color: rgb(237, 241, 245);
    border-radius: 20px;
    padding: 30px 30px 23px;
    margin-bottom: 26px;
    text-align: left;
}

.faq-sidebar .inner-box .icon-box {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.faq-sidebar .inner-box h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px;
}

.faq-sidebar .inner-box a {
    display: inline-block;
    color: var(--text-color);
    font-family: var(--text-font);
}

.faq-sidebar .inner-box a:hover {
    color: var(--theme-color);
}

.faq-sidebar p {
    margin-bottom: 20px;
}

.award-section {
    position: relative;
    padding: 75px 0px;
}

.award-section .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.award-section .bg-layer::before {
    position: absolute;
    content: "";
    background-color: var(--secondary-color);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.7;
}

.award-section h2 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 7px;
}

.award-section p {
    color: rgb(255, 255, 255);
}

.award-section .award-content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 40px;
    max-width: 570px;
}

.award-section .award-content .award-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.award-section .award-content .award-list li {
    position: relative;
    padding-right: 25px;
    border-right: 1px solid rgb(221, 229, 233);
}

.award-section .award-content .award-list li:last-child {
    padding: 0px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}
.main-footer {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.main-footer::before {
    content: "";
    position: absolute;
    background: #000000b5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.main-footer .widget-section {
    padding: 103px 0px 75px;
}

.main-footer .logo-widget .footer-logo {
    margin-bottom: 23px;
}

.main-footer .logo-widget p {
    margin-bottom: 23px;
    color: #fff;
}

.main-footer .logo-widget .download-list {
    position: relative;
    max-width: 250px;
}

.main-footer .logo-widget .download-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.main-footer .logo-widget .download-list li:last-child {
    margin-bottom: 0px;
}

.main-footer .logo-widget .download-list li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 60px 13px 20px;
    border-radius: 40px;
    border: 1px solid rgb(205, 213, 217);
    font-size: 17px;
    line-height: 26px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
}

.main-footer .logo-widget .download-list li a i {
    position: absolute;
    top: 4px;
    right: 4px;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 48px;
    min-width: 44px;
    background-color: rgb(219, 227, 231);
    text-align: center;
    border-radius: 5px 40px 40px 5px;
    font-size: 22px;
    color: var(--theme-color);
    transition: 300ms linear;
}

.main-footer .logo-widget .download-list li a:hover i {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
    border-radius: 50%;
}

.main-footer .logo-widget .download-list li a:hover {
    border-color: var(--theme-color);
}

.footer-widget .widget-title {
    position: relative;
    display: block;
    margin-bottom: 22px;
}

.footer-widget .widget-title h3{
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 30px;
    font-weight: 689;
    color: #fff;
    padding-bottom: 12px;
}
.footer-widget .widget-title h3::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: var(--theme-color);
    border-radius: 30px;
    animation: footerLine 2s linear infinite;
}

/* Small Moving Dot */
.footer-widget .widget-title h3::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: footerDot 2s linear infinite;
}

@keyframes footerLine{
    0%{
        width: 20px;
    }
    50%{
        width: 60px;
    }
    100%{
        width: 20px;
    }
}

@keyframes footerDot{
    0%{
        left: 0;
    }
    50%{
        left: 55px;
    }
    100%{
        left: 0;
    }
}

.footer-widget .links-list li {
    position: relative;
    display: block;
    margin-bottom: 9px;
}

.footer-widget .links-list li:last-child {
    margin-bottom: 0px;
}

.footer-widget .links-list li a {
    position: relative;
    display: inline-block;
    color: rgb(255 255 255);
    padding-left: 23px;
}

.footer-widget .links-list li a:hover, .footer-widget .links-list li a:hover::before {
    color: #ef6434;
}

.footer-widget .links-list li a::before {
    position: absolute;
    /* content: "Ã¯â€žâ€¢"; */
    content: "\f104";
    font-family: flaticon;
    left: 0px;
    top: 0px;
    font-size: 20px;
    color: rgb(255 255 255);
    transition: 300ms linear;
}

footer .subscribe-widget p {
    margin-bottom: 27px;
}

footer .subscribe-widget form .form-group {
    position: relative;
    margin-bottom: 0px;
}

footer .subscribe-widget form .form-group input[type="email"] {
    position: relative;
    width: 100%;
    height: 60px;
    border: 1px solid rgb(205, 213, 217);
    border-radius: 5px;
    font-size: 17px;
    color: rgb(160, 169, 174);
    padding: 10px 20px;
    box-shadow: rgb(219, 227, 232) 0px 4px 0px 0px;
    margin-bottom: 20px;
    transition: 300ms linear;
}

footer .subscribe-widget form .form-group input:focus {
    border-color: var(--theme-color);
}

.main-footer .footer-info .row {
    --bs-gutter-x: 6px;
}

.main-footer .footer-info .single-info-box {
    position: relative;
    display: flex;
    margin-bottom: 6px;
    background-color: rgb(219, 227, 231);
    border-radius: 20px;
    align-items: center;
    /* justify-content: space-between; */
    gap: 20px;
    padding: 10px;
    height: 140px;
}

.main-footer .footer-info .single-info-box .icon-box {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    min-width: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
}

.main-footer .footer-info .single-info-box span {
    position: relative;
    display: block;
    color: var(--title-color);
    margin-bottom: 5px;
}

.main-footer .footer-info .single-info-box p a {
    color: var(--text-color);
}

.main-footer .footer-info .single-info-box p a:hover {
    color: var(--theme-color);
}

.main-footer .footer-bottom {
    padding-bottom: 44px;
}

.footer-bottom .bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom .bottom-inner .copyright p {
    color: #ffffff;
}

.footer-bottom .bottom-inner .copyright p a {
    color: var(--theme-color);
}

.footer-bottom .bottom-inner .copyright p a:hover {
    text-decoration: underline;
}

footer .social-links {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

footer .social-links li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 54px;
    border: 1px solid rgb(208, 215, 219);
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    color: rgb(160, 169, 174);
    box-shadow: rgb(204, 215, 223) 0px 4px 0px 0px;
}

footer .social-links li a:hover {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    box-shadow: none;
}

.footer-bottom .right-column {
    position: relative;
    display: flex;
    align-items: center;
    gap: 70px;
}

footer .language-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

footer .language-box .text {
    position: relative;
    display: inline-block;
    color: var(--title-color);
}

footer .language-box .nice-select {
    font-size: 17px;
    color: var(--text-color);
    padding-right: 20px;
}

footer .language-box .nice-select::before {
    position: absolute;
    content: "Ã¯â€žâ€¦";
    font-family: flaticon;
    font-size: 10px;
    top: 0px;
    right: 0px;
    transition: 200ms linear;
}

footer .language-box .nice-select .list {
    bottom: 0%;
    top: inherit;
}

footer .language-box::before {
    position: absolute;
    content: "";
    background-color: rgb(205, 213, 217);
    width: 30px;
    height: 2px;
    top: 13px;
    right: -50px;
}

.header-style-two {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
}

.header-style-two .outer-container {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}

.header-top-two .top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    padding: 20px 60px 20px 0px;
}

.header-top-two .top-inner .language-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-top-two .top-inner .language-box .text {
    position: relative;
    display: inline-block;
    color: var(--title-color);
}

.header-top-two .top-inner .language-box .nice-select {
    position: relative;
    font-size: 17px;
    color: var(--text-color);
    padding-right: 20px;
}

.header-top-two .top-inner .language-box .nice-select::before {
    position: absolute;
    content: "Ã¯â€žâ€¦";
    font-family: flaticon;
    font-size: 10px;
    top: 0px;
    right: 0px;
    color: rgb(95, 99, 102);
}

.header-style-two .main-menu .navigation > li {
    margin: 0px 18px;
}

.search-popup {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 99999;
    overflow: auto;
    background: rgb(255, 255, 255);
    transform: scaleY(0);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px 0px;
    transform-origin: center top;
    transition: 400ms linear;
}

.search-popup.popup-visible {
    transform: scaleY(1);
}

.search-popup .popup-inner {
    position: relative;
    padding: 60px;
}

.search-popup .popup-inner .upper-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.search-popup .popup-inner .upper-box .close-search {
    position: relative;
    display: inline-block;
    font-size: 30px;
    line-height: 30px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-popup .popup-inner .upper-box .close-search:hover {
    color: var(--theme-color);
}

.search-popup .popup-inner .search-form {
}

.search-popup .popup-inner .search-form .form-group {
    position: relative;
    margin-bottom: 0px;
}

.search-popup .popup-inner .search-form .form-group input[type="search"] {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    font-size: 20px;
    color: var(--text-color);
    background-color: rgb(245, 245, 245);
    border: 1px solid rgb(245, 245, 245);
    padding: 10px 30px;
    border-radius: 5px;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-popup .popup-inner .search-form .form-group button[type="submit"] {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 60px;
    height: 60px;
    line-height: 64px;
    text-align: center;
    background-color: var(--secondary-color);
    font-size: 24px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-popup .popup-inner .search-form .form-group input:focus + button, .search-popup .popup-inner .search-form .form-group button:hover {
    background-color: var(--theme-color);
}

.search-popup .popup-inner .search-form .form-group input:focus {
    border-color: var(--theme-color);
}

.header-style-two .menu-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-style-two .menu-area .main-menu {
    border: 1px solid rgb(205, 213, 217);
    border-radius: 40px;
    padding: 0px 54px;
    background-color: rgb(237, 241, 245);
}

.header-style-two .menu-area .search-toggler {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 60px;
    background-color: rgb(219, 227, 232);
    text-align: center;
    border-radius: 50%;
    min-width: 56px;
    font-size: 22px;
    color: var(--title-color);
    cursor: pointer;
    transition: 300ms linear;
}

.header-style-two .menu-area .search-toggler:hover {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
}

.header-style-two .outer-box {
    padding: 0px;
}

.header-style-two .menu-right-content {
    gap: 20px;
}

.header-style-two .menu-right-content .text {
    position: relative;
    display: block;
    font-weight: 500;
    color: rgb(255, 255, 255);
}

.header-style-two .menu-right-content .support-box {
    position: relative;
    display: flex;
    gap: 10px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.header-style-two .menu-right-content .support-box .icon-box {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 50px;
    min-width: 54px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    text-align: center;
}

.header-style-two .menu-right-content .support-box a {
    position: relative;
    display: inline-block;
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.header-style-two .menu-right-content .support-box a:hover {
    text-decoration: underline;
}

.header-style-two .menu-right-content .sidebar-toggler {
    background-color: transparent;
    width: auto;
    height: auto;
}

.header-style-two .sticky-header {
    background-color: var(--secondary-color);
}

.header-style-two .sticky-header .outer-container {
    padding: 15px 30px;
}

.banner-style-two {
    position: relative;
    background-color: rgb(237, 241, 245);
}

.banner-style-two .left-column {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    padding: 260px 60px 120px;
}

.banner-style-two .right-column {
    position: relative;
    float: right;
    width: 50%;
    padding: 20px 20px 20px 0px;
}

.banner-style-two .right-column .right-content {
    position: relative;
    padding: 597px 60px 93px;
    min-height: 900px;
}

.banner-style-two .right-column .right-content .bg-layer {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 20px;
}

.banner-style-two .right-column .right-content .bg-layer::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 20px;
    background: -webkit-linear-gradient(-90deg, rgba(5, 48, 76, 0.9) 0%, rgba(5, 48, 76, 0.1) 50%);
}

.banner-style-two .left-column .left-content .icon-box {
    position: relative;
    display: block;
    font-size: 70px;
    line-height: 70px;
    color: var(--title-color);
    margin-bottom: 20px;
}

.banner-style-two .left-column .left-content h3 {
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 25px;
    padding: 25px 0px;
}

.banner-style-two .left-column .left-content h3::before, .banner-style-two .left-column .left-content h3::after {
    position: absolute;
    content: "";
    background-image: url("../images/shape/shape-12.png");
    width: 100%;
    height: 100%;
    left: 0px;
    background-repeat: no-repeat;
}

.banner-style-two .left-column .left-content h3::before {
    top: 0px;
    background-position: center top;
}

.banner-style-two .left-column .left-content h3::after {
    bottom: 0px;
    background-position: center bottom;
}

.banner-style-two .left-column .left-content h2 {
    display: block;
    font-size: 60px;
    line-height: 75px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-style-two .left-column .left-content h2 span {
    font-weight: 600;
}

.banner-style-two .left-column .left-content p {
    position: relative;
    display: block;
    padding-bottom: 35px;
    border-bottom: 2px dashed var(--theme-color);
    margin-bottom: 40px;
}

.banner-style-two .left-column .left-content .btn-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.banner-style-two .left-column .left-content .btn-box .download-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
    font-family: var(--title-font);
    text-align: center;
    padding: 5px 5px 5px 20px;
    background-color: var(--secondary-color);
    border-radius: 40px;
    text-transform: capitalize;
    color: rgb(255, 255, 255);
    z-index: 1;
    transition: 300ms linear;
}

.banner-style-two .left-column .left-content .btn-box .download-btn span {
    padding-right: 15px;
}

.banner-style-two .left-column .left-content .btn-box .download-btn a {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 40px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    border-radius: 5px 40px 40px 5px;
    transition: 300ms linear;
}

.banner-style-two .booking-form {
    padding: 0px;
    background-color: transparent;
}

.banner-style-two .booking-form::before {
    display: none;
}

.banner-style-two .booking-form form {
    position: relative;
    padding-right: 80px;
}

.banner-style-two .booking-form .form-group {
    float: left;
    width: 33.333%;
}

.banner-style-two .booking-form form .message-btn {
    position: absolute;
    top: 0px;
    right: 0px;
}

.banner-style-two .booking-form input, .banner-style-two .booking-form .nice-select {
    box-shadow: rgb(237, 242, 245) 0px 4px 0px 0px;
    border-radius: 0px;
    height: 70px;
    line-height: 70px;
    color: var(--text-color);
    font-size: 17px;
}

.banner-style-two .booking-form .form-group:first-child .nice-select {
    border-radius: 40px 0px 0px 40px;
}

.banner-style-two .booking-form .form-group:nth-child(3) .nice-select {
    border-radius: 0px 40px 40px 0px;
}

.banner-style-two .booking-form .message-btn button[type="submit"] {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 74px;
    text-align: center;
    background-color: var(--theme-color);
    border-radius: 5px 40px 40px 5px;
    font-size: 30px;
    color: rgb(255, 255, 255);
    transition: 300ms linear;
}

.banner-style-two .booking-form .message-btn button:hover {
    background-color: var(--secondary-color);
}

.banner-style-two .booking-form .form-group .icon {
    bottom: 20px;
}

.banner-style-two .right-content .image-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
}

.banner-style-two .right-content .image-list li {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0px -5px;
}

.banner-style-two .right-content .image-list li img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
}

.banner-style-two .right-content p {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    gap: 0px;
}

.banner-style-two .right-content p i {
    position: relative;
    display: inline-block;
    color: rgb(229, 175, 20);
    font-size: 16px;
    top: 2px;
}

.banner-style-two .booking-form .form-group {
    margin-bottom: 0px;
}

.banner-style-two .booking-form {
    margin-bottom: 40px;
}

.about-section {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: no-repeat rgb(255, 255, 255);
}

.about-section .about-content {
    position: relative;
}

.about-section .image-column {
    position: relative;
}

.about-section .image-box.about-five-images {
    position: relative;
    display: block;
    width: 100%;
    min-height: 650px;
    padding: 0px;
}

.about-section .image-box.about-five-images::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgb(227, 244, 251);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.about-section .image-box.about-five-images::after {
    position: absolute;
    content: "";
    left: 35px;
    bottom: 55px;
    width: 150px;
    height: 150px;
    border: 18px solid rgba(0, 92, 143, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.about-section .image-box.about-five-images .image {
    position: absolute;
    display: block;
    margin: 0px;
    overflow: hidden;
    border-radius: 24px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 47, 74, 0.14) 0px 20px 55px;
    z-index: 1;
}

.about-section .image-box.about-five-images .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: 500ms;
}

.about-section .image-box.about-five-images .image:hover img {
    transform: scale(1.06);
}

.about-section .image-box.about-five-images .image-1 {
    left: 0px;
    top: -30px;
    width: 100%;
    height: 295px;
}

.about-section .image-box.about-five-images .image-2 {
    right: 15px;
    top: 0px;
    width: 40%;
    height: 210px;
}

.about-section .image-box.about-five-images .image-3 {
    left: 21%;
    top: 195px;
    width: 58%;
    height: 255px;
    z-index: 3;
    border: 8px solid rgb(255, 255, 255);
}

.about-section .image-box.about-five-images .image-4 {
    left: 10px;
    bottom: -30px;
    width: 100%;
    height: 295px;
}

.about-section .image-box.about-five-images .image-5 {
    right: 0px;
    bottom: 75px;
    width: 43%;
    height: 230px;
}

.about-section .content-column {
    position: relative;
}

.about-section .content-box {
    position: relative;
    display: block;
    /* padding-left: 35px; */
    margin-top: 20px;
}

.about-section .content-box .sec-title {
    margin-bottom: 28px;
}

.about-section .content-box .sec-title .sub-title {
    margin-bottom: 14px;
}

.about-section .content-box .sec-title h2 {
    margin-bottom: 0px;
}

.about-section .content-box .inner-box {
    position: relative;
    display: block;
    /* max-width: 610px; */
    margin-bottom: 42px;
}

.about-section .content-box .inner-box .text-box {
    position: relative;
    margin-top: 0px;
}

.about-section .content-box .inner-box .text-box p {
    margin-bottom: 0px;
    font-size: 17px;
    line-height: 30px;
    margin-top: 20px;
    text-align: justify;
}

.about-section .content-box .feature-box {
    position: relative;
    margin-bottom: 14px;
}

.feature-block-one {
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding: 28px 24px 24px;
    border: 1px solid rgb(231, 238, 242);
    border-radius: 18px;
    background: rgb(255, 255, 255);
    transition: 300ms;
}

.feature-block-one:hover {
    transform: translateY(-6px);
    box-shadow: rgba(0, 47, 74, 0.1) 0px 18px 45px;
    border-color: transparent;
}

.feature-block-one .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(126, 190, 53, 0.12);
}

.feature-block-one .icon-box img {
    max-width: 34px;
}

.feature-block-one h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
}

.feature-block-one p {
    margin-bottom: 0px;
}

.about-section .content-box .theme-btn {
    margin-top: 8px;
}

.about-section .funfact-box {
    position: relative;
    background-color: rgb(237, 241, 245);
    border-radius: 20px;
    overflow: hidden;
}

.funfact-block-one {
    position: relative;
    display: block;
    padding: 37px 30px 32px;
    border-right: 1px solid rgb(205, 213, 217);
}

.funfact-block:last-child .funfact-block-one {
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
}

.funfact-block-one .count-outer {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 58px;
    font-family: var(--secondary-font);
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 0px;
}

.funfact-block-one h3 {
    font-size: 22px;
    line-height: 30px;
}

.funfact-block-one .light-icon {
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 50px;
    color: rgb(206, 214, 218);
    transform: rotate(-15deg);
}

@media only screen and (max-width: 1199px) {
    .about-section .image-box.about-five-images {
        min-height: 600px;
    }

    .about-section .image-box.about-five-images .image-1 {
        height: 225px;
    }

    .about-section .image-box.about-five-images .image-2 {
        height: 195px;
    }

    .about-section .image-box.about-five-images .image-3 {
        top: 195px;
        height: 240px;
    }

    .about-section .image-box.about-five-images .image-4, .about-section .image-box.about-five-images .image-5 {
        height: 215px;
    }

    .about-section .content-box {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .about-section {
        padding: 80px 0px 73px;
    }

    .about-section .image-box.about-five-images {
        max-width: 650px;
        min-height: 650px;
        margin: 0px auto 55px;
    }

    .about-section .content-box {
        padding-left: 0px;
        margin-top: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .about-section {
        padding: 70px 0px 63px;
    }

    .about-section .image-box.about-five-images {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .about-section .image-box.about-five-images::before, .about-section .image-box.about-five-images::after {
        display: none;
    }

    .about-section .image-box.about-five-images .image {
        position: relative;
        inset: auto;
        width: 100%;
        height: 190px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
    }

    .about-section .image-box.about-five-images .image-3 {
        grid-column: span 2;
        height: 230px;
    }

    .feature-block-one {
        padding: 24px 20px 22px;
    }

    .funfact-block-one {
        border-right-width: medium;
        border-right-style: none;
        border-right-color: currentcolor;
        border-bottom: 1px solid rgb(205, 213, 217);
    }

    .funfact-block:last-child .funfact-block-one {
        border-bottom-width: medium;
        border-bottom-style: none;
        border-bottom-color: currentcolor;
    }
}

@media only screen and (max-width: 499px) {
    .about-section .image-box.about-five-images {
        grid-template-columns: 1fr;
    }

    .about-section .image-box.about-five-images .image, .about-section .image-box.about-five-images .image-3 {
        grid-column: span 1;
        height: 220px;
    }
}

.travel-section {
    position: relative;
    padding-bottom: 113px;
}

.travel-block-one {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.travel-block-one .image-box {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.travel-block-one .image-box .image {
    position: relative;
    display: block;
}

.travel-block-one .image-box .image img {
    width: 100%;
    border-radius: 20px;
    transition: 300ms linear;
}

.travel-block-one:hover .image-box .image img {
    transform: scale(1.1);
}

.travel-block-one .image-box .icon-box {
    position: absolute;
    left: 40px;
    bottom: 0px;
    z-index: 1;
    padding: 10px 10px 0px;
}

.travel-block-one .image-box .icon-box .icon {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: rgb(237, 241, 245);
    border-radius: 10px;
}

.travel-block-one .image-box .icon-box .icon-shape {
    position: absolute;
    left: -19px;
    top: 0px;
    width: 118px;
    height: 70px;
    background-repeat: no-repeat;
}

.travel-block-one .image-box .text {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 17px;
    color: var(--text-color);
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    padding: 3.5px 17px;
    transition: 300ms linear;
}

.travel-block-one:hover .image-box .text {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
}

.travel-block-one .lower-content {
    position: relative;
    display: block;
    padding-top: 23px;
}

.travel-block-one .lower-content h3 {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 30px;
}

.travel-block-one .lower-content h3 a {
    position: relative;
    display: inline-block;
    color: var(--title-color);
    padding-right: 27px;
}

.travel-block-one .lower-content h3 a i {
    position: absolute;
    top: 3px;
    right: -3px;
    color: var(--theme-color);
    opacity: 0;
    transition: 300ms linear;
}

.travel-block-one .lower-content h3 a:hover {
    color: var(--theme-color);
}

.travel-block-one .lower-content h3 a:hover i {
    opacity: 1;
}

.travel-section .lower-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.travel-section .four-column-pagination {
    padding-top: 15px;
    padding-bottom: 23px;
}

.travel-section .shape-box .shape-1 {
    position: absolute;
    left: 120px;
    top: 50px;
    width: 114px;
    height: 140px;
    background-repeat: no-repeat;
}

.travel-section .shape-box .shape-2 {
    position: absolute;
    top: 50%;
    margin-top: -41px;
    right: 120px;
    width: 150px;
    height: 83px;
    background-repeat: no-repeat;
}

.popular-section {
    position: relative;
}

.popular-section .outer-container {
    position: relative;
    padding: 112px 0px;
    background-color: rgb(238, 242, 246);
    border-radius: 20px;
    overflow: hidden;
    max-width: 1680px;
    width: 100%;
    margin: 0px auto;
}

.popular-section .outer-container .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.popular-block-one {
    position: relative;
    display: block;
}

.popular-section .inner-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0px 0px 0px 20px;
}

.popular-block-one {
    position: relative;
    display: block;
    min-height: 570px;
    width: 236px;
    margin: 0px -20px 30px;
    transition: 400ms linear;
}

.popular-block-one.active {
    width: 370px;
    z-index: 1;
}

.popular-block-one .image-box {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.popular-block-one .image-box img {
    width: 100%;
    min-height: 570px;
    border-radius: 20px;
    filter: blur(3px);
    transition: 300ms linear;
}

.popular-block-one.active .image-box img {
    filter: blur(0px);
}

.popular-block-one .content-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 400ms linear;
}

.popular-block-one .content-box .text {
    position: absolute;
    display: inline-block;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 17px;
    color: var(--text-color);
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    width: 70px;
    text-align: center;
    padding: 3.5px 15px;
    height: 35px;
    overflow: hidden;
    transition: 300ms linear;
}

.popular-block-one.active .content-box .text {
    width: auto;
    background-color: var(--theme-color);
    color: rgb(255, 255, 255);
}

.popular-block-one .content-box .text-box {
    position: absolute;
    left: 0px;
    bottom: 40px;
    width: 100%;
    text-align: center;
}

.popular-block-one .content-box .link a {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 76px;
    background-color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 5px 40px 40px 5px;
    font-size: 30px;
    color: var(--theme-color);
    opacity: 0;
}

.popular-block-one .content-box .link a:hover {
    background-color: var(--secondary-color);
}

.popular-block-one .content-box .text-box h3 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 6px;
}

.popular-block-one .content-box .text-box h3 a {
    display: inline-block;
    color: rgb(255, 255, 255);
    opacity: 0;
}

.popular-block-one.active .content-box h3 a {
    opacity: 1;
}

.popular-block-one .content-box .text-box h3 a:hover {
    color: var(--theme-color);
}

.popular-block-one .content-box .text-box .short-title {
    position: absolute;
    left: 0px;
    top: 35px;
    width: 100%;
    text-align: center;
    display: block;
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    transition: 400ms linear;
}

.popular-block-one.active .content-box .text-box .short-title {
    opacity: 0;
}

.popular-block-one .content-box .text-box .special-text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: var(--theme-color);
    opacity: 0;
    transition: 400ms linear;
}

.popular-block-one.active .content-box .text-box .special-text {
    opacity: 1;
}

.common-lower-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.popular-section .common-lower-text {
    padding-top: 53px;
}

.travel-style-two {
    position: relative;
    padding: 112px 0px 105px;
}

.travel-style-two .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.travel-block-two {
    position: relative;
    display: block;
    padding-top: 25px;
    margin-bottom: 35px;
}

.travel-block-two .location-box {
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgb(222, 228, 233);
    border-radius: 30px 30px 30px 0px;
    background-color: rgb(255, 255, 255);
    z-index: 1;
    padding: 5px 14px;
}

.travel-block-two .location-box i {
    position: relative;
    display: inline-block;
    top: 2px;
    color: var(--theme-color);
}

.travel-block-two .inner-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid rgb(222, 228, 233);
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 0px 0px;
    padding: 29px 29px 26px;
}

.travel-block-two .inner-box .image-box {
    position: relative;
    display: block;
    width: 150px;
    min-width: 150px;
    border-radius: 10px;
}

.travel-block-two .inner-box .image-box .image {
    position: relative;
    border-radius: 10px;
    transition: 300ms linear;
}

.travel-block-two:hover .inner-box .image-box .image {
    background-color: var(--secondary-color);
}

.travel-block-two .inner-box .image-box img {
    width: 100%;
    border-radius: 10px;
    transition: 300ms linear;
}

.travel-block-two:hover .inner-box .image-box img {
    opacity: 0.2;
}

.travel-block-two .inner-box .image-box .link-btn {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.travel-block-two .inner-box .image-box .link-btn a {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 48px;
    background-color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 5px 40px 40px 5px;
    font-size: 22px;
    color: var(--title-color);
    transform: scale(0, 0);
}

.travel-block-two .inner-box .image-box .link-btn a:hover {
    background-color: var(--theme-color);
    border-radius: 50%;
    color: rgb(255, 255, 255);
}

.travel-block-two:hover .inner-box .image-box .link-btn a {
    transform: scale(1, 1);
}

.travel-block-two .inner-box .content-box {
    position: relative;
    display: block;
    width: 100%;
    margin-top: -7px;
}

.travel-block-two .inner-box .content-box .title-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 9px;
    justify-content: space-between;
}

.travel-block-two .inner-box .content-box .title-box h3 {
    font-size: 22px;
    line-height: 32px;
    max-width: 170px;
}

.travel-block-two .inner-box .content-box .title-box h3 a {
    display: inline-block;
    color: var(--title-color);
}

.travel-block-two .inner-box .content-box .title-box h3 a:hover {
    color: var(--theme-color);
}

.travel-block-two .inner-box .content-box .title-box .rating {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgb(237, 241, 245);
    border-radius: 30px;
    font-size: 15px;
    line-height: 24px;
    color: var(--title-color);
    padding: 0px 7px;
    min-width: 58px;
    top: 7px;
}

.travel-block-two .inner-box .content-box .title-box .rating i {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
    top: 2px;
}

.travel-block-two .inner-box .content-box .price-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.travel-block-two .inner-box .content-box .price-box .price {
    position: relative;
    display: flex;
    gap: 5px;
}

.travel-block-two .inner-box .content-box .price-box .price .special-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--theme-color);
}

.travel-block-two .inner-box .content-box .price-box .duration-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--title-color);
}

.travel-block-two .inner-box .content-box .price-box .duration-box i {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--theme-color);
    top: 2px;
}

.travel-block-two .inner-box .content-box .upper-content {
    position: relative;
    padding-bottom: 18px;
    border-bottom: 1px solid rgb(221, 229, 233);
    margin-bottom: 15px;
}

.travel-block-two .inner-box .content-box .upper-content::before {
    position: absolute;
    content: "";
    background-color: rgb(221, 229, 233);
    width: 100%;
    height: 1px;
    left: -30px;
    bottom: -1px;
}

.travel-block-two .inner-box .content-box .highlights-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.travel-style-two .lower-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 23px;
}

.travel-style-two .lower-box .dots-style-one {
    width: auto;
}

.travel-style-two .common-lower-text p {
    color: rgb(255, 255, 255);
}

.gallery-section {
    position: relative;
    padding: 112px 0px;
}

.gallery-block-one {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
}

.gallery-block-one .image-box {
    position: relative;
    display: block;
    transition: 300ms linear;
}

.gallery-block-one:hover .image-box {
    background-color: var(--secondary-color);
}

.gallery-block-one .image-box img {
    width: 100%;
    border-radius: 20px;
    transition: 300ms linear;
}

.gallery-block-one:hover .image-box img {
    opacity: 0.2;
    transform: scale(1.05);
}

.gallery-block-one .view-btn {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.gallery-block-one .view-btn a {
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 40px;
    color: rgb(255, 255, 255);
    transform: scale(0, 0);
}

.gallery-block-one .view-btn a:hover {
    color: var(--theme-color);
}

.gallery-block-one:hover .view-btn a {
    transform: scale(1, 1);
}

.gallery-section .common-lower-text {
    padding-top: 23px;
}

.working-section {
    position: relative;
    padding: 112px 0px;
}

.working-section::before {
    position: absolute;
    content: "";
    background-color: var(--secondary-color);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.9;
    z-index: 1;
}

.working-section .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
    background-attachment: fixed;
}

.working-block-one {
    position: relative;
    display: flex;
    gap: 30px;
}

.working-block-one .count-box {
    position: relative;
    display: inline-block;
    width: 72px;
    height: 72px;
    line-height: 72px;
    min-width: 72px;
    border: 2px dashed var(--theme-color);
    border-radius: 50%;
    text-align: center;
    font-size: 36px;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--theme-color);
    font-weight: 900;
}

.working-block-one h3 {
    font-size: 22px;
    line-height: 30px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 11px;
}

.working-block-one p {
    color: rgb(255, 255, 255);
}

.working-block-one .icon-box {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 100px;
    line-height: 100px;
    text-align: center;
}

.working-block-one .icon-box .icon-shape {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.working-block:nth-child(2n+1) .working-block-one .icon-box {
    margin-top: 33px;
    line-height: 120px;
}

.working-block:nth-child(2n) .working-block-one .icon-box {
    margin-bottom: 33px;
    line-height: 80px;
}

.working-block:nth-child(2n) .working-block-one {
    align-items: flex-end;
}

.working-block:nth-child(2n) .working-block-one .count-box {
    bottom: 10px;
}

.working-block:nth-child(2n+1) .working-block-one .count-box {
    top: 7px;
}

.working-block-one .icon-box .icon {
    position: relative;
    display: inline-block;
}

.sec-title.light p {
    color: rgb(255, 255, 255);
}

.working-section .outer-container .shape {
    position: absolute;
    left: 0px;
    top: -40px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.team-section {
    position: relative;
    padding: 112px 0px;
}

.team-block-one {
    position: relative;
    display: block;
    background-color: rgb(237, 241, 245);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 30px;
}

.team-block-one .image-box {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.team-block-one .image-box .image {
    position: relative;
}

.team-block-one .image-box .image::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: -webkit-linear-gradient(90deg, rgb(5, 48, 76) 0%, rgba(5, 48, 76, 0) 100%);
    z-index: 1;
    opacity: 0;
    transition: 300ms linear;
}

.team-block-one:hover .image-box .image::before {
    opacity: 1;
}

.team-block-one .image-box img {
    width: 100%;
    transition: 300ms linear;
}

.team-block-one:hover .image-box img {
    transform: scale(1.05);
}

.team-block-one .image-box .social-links {
    position: absolute;
    left: 0px;
    bottom: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 2;
    opacity: 0;
    transition: 300ms linear;
}

.team-block-one:hover .image-box .social-links {
    bottom: 60px;
    opacity: 1;
}

.team-block-one .image-box .social-links li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 55px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50%;
    font-size: 18px;
    color: rgb(255, 255, 255);
    text-align: center;
}

.team-block-one .image-box .social-links li a:hover {
    background-color: rgb(255, 255, 255);
    color: var(--theme-color);
}

.team-block-one .lower-content {
    position: relative;
    display: block;
    background-color: rgb(237, 241, 245);
    padding: 23px 30px;
    margin-top: -29px;
    z-index: 3;
    border-radius: 0px 20px 20px;
}

.team-block-one .lower-content h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 4px;
}

.team-block-one .lower-content h3 a {
    display: inline-block;
    color: var(--title-color);
}

.team-block-one .lower-content h3 a:hover {
    color: var(--theme-color);
}

.team-block-one .lower-content .designation {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.team-block-one .lower-content .other-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.team-block-one .lower-content .other-link a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-color);
}

.team-block-one .lower-content .other-link a:first-child {
    font-size: 15px;
}

.team-block-one .lower-content .other-link a i {
    position: relative;
    display: inline-block;
    top: 2px;
    color: var(--title-color);
}

.team-block-one .lower-content .other-link a:hover {
    color: var(--theme-color);
}

.team-section .common-lower-text {
    padding-top: 23px;
}

.testimonial-style-two {
    position: relative;
}

.testimonial-style-two .outer-container {
    background-color: rgb(237, 241, 245);
    border-radius: 20px;
    overflow: hidden;
    max-width: 1660px;
    width: 100%;
    margin: 0px auto;
}

.testimonial-style-two .swiper-horizontal {
    position: relative;
    display: block;
    overflow: visible;
    max-width: 630px;
    margin: 0px auto;
    width: 100%;
    text-align: center;
}

.testimonial-block-two {
    position: relative;
    display: block;
}

.testimonial-block-two .testimonial-image {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    transition: 300ms linear;
}

.swiper-slide .testimonial-block-two .testimonial-image {
    opacity: 0;
}

.swiper-slide .testimonial-block-two {
    opacity: 0.2;
}

.swiper-slide.swiper-slide-active .testimonial-block-two .testimonial-image {
    opacity: 1;
}

.swiper-slide.swiper-slide-active .testimonial-block-two {
    opacity: 1;
}

.testimonial-block-two .testimonial-image .image {
    position: relative;
    display: inline-block;
    width: 169px;
    height: 170px;
    border-radius: 20px;
}

.testimonial-block-two .testimonial-image .image img {
    width: 100%;
    border-radius: 20px;
    border: 5px solid rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 0px 0px;
}

.testimonial-block-two .testimonial-image .image-1 {
    transform: rotate(-20deg);
    top: 30px;
    left: -25px;
}

.testimonial-block-two .testimonial-image .image-3 {
    transform: rotate(20deg);
    top: 30px;
    right: -25px;
}

.testimonial-block-two .icon-box {
    position: relative;
    display: block;
    margin-bottom: 33px;
}

.testimonial-block-two h4 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 21px;
}

.testimonial-block-two h4 span {
    font-size: 17px;
    font-weight: 400;
    color: var(--theme-color);
}

.testimonial-block-two p {
    margin-bottom: 33px;
}

.testimonial-block-two .rating {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(219, 227, 231);
    border-radius: 40px;
    padding: 5px 5px 5px 20px;
    gap: 15px;
    color: var(--title-color);
    font-weight: 500;
}

.testimonial-block-two .rating i {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 44px;
    background-color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    color: var(--theme-color);
}

.news-style-two {
    position: relative;
}

.news-block-two {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.news-block-two {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.news-block-two .image-box {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.news-block-two .image-box .image {
    position: relative;
    transition: 300ms linear;
}

.news-block-two:hover .image-box .image {
    background-color: var(--secondary-color);
}

.news-block-two .image-box .image img {
    width: 100%;
    border-radius: 20px;
    transition: 300ms linear;
}

.news-block-two:hover .image-box .image img {
    opacity: 0.2;
    transform: scale(1.1);
}

.news-block-two .image-box .calendar-box {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 8px 10px;
    text-align: center;
    width: 70px;
}

.news-block-two .image-box .calendar-box h3 {
    font-size: 22px;
    line-height: 30px;
}

.news-block-two .image-box .calendar-box span {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 24px;
    color: var(--title-color);
}

.news-block-two .image-box .view-btn {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.news-block-two .image-box .view-btn a {
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 40px;
    color: rgb(255, 255, 255);
    transform: scale(0, 0);
}

.news-block-two .image-box .view-btn a:hover {
    color: var(--theme-color);
}

.news-block-two:hover .image-box .view-btn a {
    transform: scale(1, 1);
}

.news-block-two .lower-content {
    position: relative;
    padding-top: 23px;
}

.news-block-two .lower-content h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 23px;
}

.news-block-two .lower-content h3 a {
    display: inline-block;
    color: var(--title-color);
}

.news-block-two .lower-content h3 a:hover {
    color: var(--theme-color);
}

.news-block-two .lower-content .lower-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-block-two .lower-content .lower-box .link-btn a {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 48px;
    background-color: rgb(237, 241, 245);
    text-align: center;
    border-radius: 5px 40px 40px 5px;
    font-size: 22px;
    color: var(--title-color);
}

.news-block-two:hover .lower-content .lower-box .link-btn a {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
    border-radius: 50%;
}

.news-block-two .lower-content .lower-box .category {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: var(--text-color);
    font-weight: 500;
    border: 1px solid rgb(237, 241, 245);
    border-radius: 30px;
    padding: 7px 18px;
    transition: 300ms linear;
}

.news-block-two .lower-content .lower-box .category i {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
    font-size: 16px;
    top: 2px;
}

.news-block-two:hover .lower-content .lower-box .category {
    background-color: rgb(237, 241, 245);
}

.news-style-two .shape-box .shape-1 {
    position: absolute;
    left: 100px;
    top: 350px;
    width: 131px;
    height: 138px;
    background-repeat: no-repeat;
}

.news-style-two .shape-box .shape-2 {
    position: absolute;
    right: 70px;
    bottom: 0px;
    width: 240px;
    height: 224px;
    background-repeat: no-repeat;
}

.cta-section {
    position: relative;
}

.cta-section .inner-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 53px 60px 60px;
}

.cta-section .bg-color-1 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
}

.cta-section .inner-container .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.cta-section .inner-container .bg-layer::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: -webkit-linear-gradient(0deg, rgb(1, 83, 133) 20%, rgba(1, 83, 133, 0.1) 100%);
}

.cta-section .content-box h3 {
    display: block;
    font-size: 22px;
    line-height: 32px;
    color: rgb(255, 255, 255);
}

.cta-section .content-box h2 {
    font-size: 36px;
    line-height: 46px;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
}

.cta-section .content-box .text {
    position: relative;
    display: block;
    padding-left: 60px;
    color: rgb(173, 196, 210);
    margin-bottom: 33px;
}

.cta-section .content-box .text::before {
    position: absolute;
    content: "";
    background-color: var(--theme-color);
    width: 50px;
    height: 1px;
    left: 0px;
    top: 13px;
}

.cta-section .content-box .btn-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-section .content-box .btn-box .theme-btn:hover {
    color: var(--theme-color);
    background-color: rgb(255, 255, 255);
}

.cta-section .content-box .btn-box .theme-btn:hover i {
    background-color: var(--theme-color);
    color: rgb(255, 255, 255);
}

.cta-section .content-box .btn-box .support-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-section .content-box .btn-box .support-box .icon-box {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 48px;
    min-width: 54px;
    border: 1px solid rgb(38, 114, 160);
    border-radius: 50%;
    text-align: center;
}

.cta-section .content-box .btn-box .support-box span {
    position: relative;
    display: block;
    color: var(--theme-color);
    margin-bottom: 4px;
}

.cta-section .content-box .btn-box .support-box h4 {
    font-size: 20px;
    line-height: 28px;
}

.cta-section .content-box .btn-box .support-box h4 a {
    display: inline-block;
    color: rgb(255, 255, 255);
}

.cta-section .content-box .btn-box .support-box h4 a:hover {
    color: var(--theme-color);
}

.footer-style-two {
    position: relative;
}

.footer-style-two .widget-section {
    position: relative;
    padding: 93px 0px 85px;
    border-bottom: 1px solid rgb(206, 214, 218);
}

.footer-style-two .footer-widget .links-list li a {
    padding-left: 0px;
    padding-right: 23px;
    display: block;
}

.footer-style-two .footer-widget .links-list li a::before {
    left: inherit;
    right: 0px;
}

.footer-style-two .instagram-widget .widget-content .image-list {
    position: relative;
    margin: 0px -7.5px;
}

.footer-style-two .instagram-widget .widget-content .image-list li {
    position: relative;
    display: inline-block;
    float: left;
    margin: 0px 7.5px 15px;
}

.footer-style-two .instagram-widget .widget-content .image-list li .image {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    transition: 300ms linear;
}

.footer-style-two .instagram-widget .widget-content .image-list li:hover .image {
    background-color: var(--secondary-color);
}

.footer-style-two .instagram-widget .widget-content .image-list li .image img {
    width: 100%;
    border-radius: 20px;
    transition: 300ms linear;
}

.footer-style-two .instagram-widget .widget-content .image-list li:hover .image img {
    opacity: 0.2;
}

.footer-style-two .instagram-widget .widget-content .image-list li .image a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 2;
    left: 0px;
    top: 0px;
    font-size: 22px;
    color: rgb(255, 255, 255);
    transform: scale(0, 0);
}

.footer-style-two .instagram-widget .widget-content .image-list li:hover .image a {
    transform: scale(1, 1);
}

.footer-style-two .contact-widget .single-item {
    position: relative;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-style-two .contact-widget .single-item:last-child {
    margin-bottom: 0px;
}

.footer-style-two .contact-widget .single-item .icon-box {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 46px;
    min-width: 50px;
    border: 1px solid rgb(206, 214, 218);
    border-radius: 50%;
    text-align: center;
}

.footer-style-two .contact-widget .single-item .text {
    position: relative;
    display: block;
    color: var(--title-color);
    margin-bottom: 3px;
}

.footer-style-two .contact-widget .single-item p a {
    color: var(--text-color);
}

.footer-style-two .contact-widget .single-item p a:hover {
    color: var(--theme-color);
}

.footer-style-two .chat-widget .chat-box {
    position: relative;
    display: block;
    background-color: rgb(219, 227, 231);
    border-radius: 20px;
    padding: 18px 25px 25px;
}

.footer-style-two .chat-widget .chat-box .image {
    position: absolute;
    top: 25px;
    right: 25px;
    display: inline-block;
    width: 70px;
    height: 70px;
    border-radius: 50px;
}

.footer-style-two .chat-widget .chat-box .image img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 0px;
}

.footer-style-two .chat-widget .chat-box h4 {
    font-size: 20px;
    line-height: 30px;
}

.footer-style-two .chat-widget .chat-box p {
    margin-bottom: 6px;
}

.footer-style-two .chat-widget .chat-box .status {
    position: relative;
    display: block;
    font-size: 17px;
    padding-left: 15px;
    margin-bottom: 16px;
}

.footer-style-two .chat-widget .chat-box .status::before {
    position: absolute;
    content: "";
    background-color: rgb(40, 167, 69);
    width: 10px;
    height: 10px;
    left: 0px;
    top: 9px;
    border-radius: 50%;
}

.footer-style-two .footer-bottom {
    padding: 35px 0px;
}

.footer-style-two .footer-bottom .left-column {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-style-two .footer-bottom .left-column .footer-logo {
    padding-right: 30px;
    border-right: 1px solid rgb(206, 214, 218);
}

.footer-style-two .footer-bottom .left-column p {
    color: var(--title-color);
}

.footer-style-two .footer-bottom .left-column p a {
    display: inline-block;
    color: var(--theme-color);
}

.footer-style-two .footer-bottom .left-column p a:hover {
    text-decoration: underline;
}

.footer-style-two .footer-bottom .scroll-to-target {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--title-color);
    cursor: pointer;
    transition: 500ms;
}

.footer-style-two .footer-bottom .scroll-to-target i {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 32px;
    background-color: rgb(219, 227, 232);
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
}

.header-style-three {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
}

.header-top-three {
    padding: 11px 30px;
    border-bottom: 1px solid rgb(206, 214, 218);
}

.header-top-three p {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.header-top-three p a {
    display: inline-block;
    color: var(--title-color);
}

.header-top-three p a:hover {
    color: var(--theme-color);
}

.header-top-three p i {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
    top: 2px;
    padding-right: 5px;
}

.main-header .menu-right-content .cart-box a, .header-style-three .menu-right-content .sidebar-toggler {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 52px;
    border: 1px solid rgb(206, 214, 218);
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    color: var(--title-color);
    background-color: transparent;
    transition: 300ms linear;
}

.header-style-three .menu-right-content .sidebar-toggler {
    line-height: 44px;
}

.main-header .menu-right-content .cart-box a:hover, .header-style-three .menu-right-content .sidebar-toggler:hover {
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.main-header .menu-right-content .user-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 30px;
    margin-right: 20px;
    border-right: 1px solid rgb(205, 213, 217);
    padding-top: 5px;
    padding-bottom: 5px;
}

.main-header .menu-right-content .user-box .icon {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 39px;
    background-color: rgb(219, 227, 231);
    border-radius: 50%;
    font-size: 16px;
    color: var(--title-color);
    text-align: center;
}

.main-header .menu-right-content .user-box .nice-select {
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    color: var(--title-color);
    padding-right: 20px;
}

.main-header .menu-right-content .user-box .nice-select::before {
    position: absolute;
    content: "Ã¯â€žâ€¦";
    font-family: flaticon;
    font-size: 10px;
    top: 0px;
    right: 0px;
    color: rgb(160, 169, 174);
    transition: 200ms linear;
}

.banner-style-three {
    position: relative;
    padding: 223px 0px 120px;
}

.banner-style-three .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner-style-three .bg-layer::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: -webkit-linear-gradient(-90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.banner-style-three .content-box {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 43px 50px 30px;
}

.banner-style-three h2 {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 46px;
}

.banner-style-three .content-box p {
    margin-bottom: 23px;
}

.banner-style-three .content-box .image-box {
    position: relative;
    display: block;
    border-radius: 20px;
    margin-top: -37px;
}

.banner-style-three .content-box .image-box img {
    width: 100%;
    border-radius: 20px;
}

.banner-style-three .content-box .btn-box {
    position: relative;
    display: inline-block;
    background-color: rgb(255, 255, 255);
    padding: 10px;
    border-radius: 50px;
    z-index: 1;
}

.banner-style-three .content-box .booking-form {
    padding: 0px;
    margin-top: 30px;
    background-color: transparent;
    border: 1px solid rgb(221, 229, 233);
    border-radius: 50px;
}

.banner-style-three .content-box .booking-form::before {
    display: none;
}

.banner-style-three .content-box .booking-form .form-group {
    float: left;
    width: 25%;
}

.banner-style-three .content-box .booking-form .form-group {
    margin-bottom: 0px;
}

.banner-style-three .content-box .booking-form .form-group input, .banner-style-three .content-box .booking-form .form-group .nice-select {
    border-width: medium 1px medium medium;
    border-style: none solid none none;
    border-color: currentcolor rgb(221, 229, 233) currentcolor currentcolor;
    border-image: initial;
    box-shadow: none;
    background-color: transparent;
    height: 68px;
    line-height: 68px;
}

.banner-style-three .content-box .booking-form form {
    position: relative;
    padding-right: 160px;
}

.banner-style-three .content-box .booking-form .message-btn {
    position: absolute;
    top: 7px;
    right: 7px;
}

.banner-style-three .content-box .booking-form .message-btn .theme-btn {
    background-color: rgb(237, 241, 245);
    color: var(--title-color);
}

.banner-style-three .content-box .booking-form .message-btn .theme-btn:hover {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
}

.banner-style-three .booking-form .form-group .icon {
    bottom: 22px;
}

.wedo-section {
    position: relative;
    padding: 112px 0px;
}

.feature-block-two {
    position: relative;
    display: block;
}

.feature-block-two {
    position: relative;
    display: block;
    padding: 0px 25px;
    margin-bottom: 30px;
}

.feature-block-two .icon-box {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(205, 213, 217);
    border-radius: 50%;
    z-index: 1;
    margin-bottom: 33px;
    transition: 400ms linear;
}

.feature-block-two:hover .icon-box {
    border-color: var(--secondary-color);
}

.feature-block-two .icon-box::before {
    position: absolute;
    content: "";
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-color: rgb(219, 227, 231);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    transition: 400ms linear;
}

.feature-block-two:hover .icon-box::before {
    background-color: var(--secondary-color);
    opacity: 1;
}

.feature-block-two .icon-box .static-icon {
    position: relative;
    transition: 400ms linear;
}

.feature-block-two:hover .icon-box .static-icon {
    opacity: 0;
}

.feature-block-two .icon-box .overlay-icon {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    transition: 400ms linear;
}

.feature-block-two:hover .icon-box .overlay-icon {
    opacity: 1;
}

.feature-block-two h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 23px;
    padding-bottom: 33px;
}

.feature-block-two h3::before {
    position: absolute;
    content: "";
    background-image: url("../images/shape/shape-22.png");
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: 0px;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.feature-block:nth-child(2) .feature-block-two h3::before {
    background-image: url("../images/shape/shape-23.png");
}

.feature-block:nth-child(3) .feature-block-two h3::before {
    background-image: url("../images/shape/shape-24.png");
}

.feature-block-two p {
    margin-bottom: 23px;
}

.wedo-section .inner-container {
    position: relative;
    padding-top: 100px;
}

.wedo-section .inner-container::before {
    position: absolute;
    content: "";
    background-color: rgb(237, 241, 245);
    left: -90px;
    top: 0px;
    width: calc(100% + 180px);
    height: calc(100% - 130px);
    border-radius: 20px;
}

.wedo-section .inner-container .shape {
    position: absolute;
    left: -90px;
    top: 0px;
    width: calc(100% + 180px);
    height: calc(100% - 130px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 20px;
    opacity: 0.05;
}

.award-block-one {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 40px 30px 33px;
    border: 1px solid rgb(221, 229, 233);
}

.award-block-one .award-image {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.award-block-one .rating-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgb(229, 175, 20);
    margin-bottom: 2px;
}

.award-block-one .rating-box span {
    position: relative;
    display: inline-block;
    color: var(--title-color);
    padding-right: 10px;
}

.wedo-section .highlights-box {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 36px 35px 33px;
    border: 1px solid rgb(221, 229, 233);
    text-align: left;
}

.wedo-section .highlights-box .single-item {
    position: relative;
    display: block;
}

.wedo-section .highlights-box .single-item .icon-box {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: var(--theme-color);
    margin-bottom: 23px;
}

.wedo-section .highlights-box .single-item h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 11px;
}

.vibes-section {
    position: relative;
    padding-bottom: 113px;
    background: linear-gradient(45deg, rgba(204, 235, 247, 0.29) 25%, transparent 25%) 0px 0px / 40px 40px, linear-gradient(-45deg, rgba(204, 235, 247, 0.29) 25%, transparent 25%) 0px 20px, linear-gradient(45deg, transparent 75%, rgba(204, 235, 247, 0.29) 75%) 20px -20px, linear-gradient(-45deg, transparent 75%, rgba(204, 235, 247, 0.29) 75%) -20px 0px;
}

.vibes-block-one {
    position: relative;
    display: block;
    padding-top: 30px;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.vibes-block-one .image-box {
    position: relative;
    display: block;
}

.vibes-block-one .image-box .image {
    position: relative;
    display: block;
    overflow: hidden;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='270' height='422' viewBox='0 0 270 422'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='270' height='422'/%3E%3C/svg%3E") center center / cover;
    z-index: 1;
}

.vibes-block-one .image-box .image::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
}

.vibes-block-one .image-box .image img {
    width: 100%;
    transition: 500ms;
}

.vibes-block-one:hover .image-box .image img {
    transform: scale(1.05);
}

.vibes-block-one .image-box .link {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.vibes-block-one .image-box .link a {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 64px;
    text-align: center;
    border-radius: 5px 40px 40px 5px;
    font-size: 30px;
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
    transform: scale(0, 0);
}

.vibes-block-one .image-box .link a:hover {
    border-radius: 50%;
}

.vibes-block-one:hover .image-box .link a {
    transform: scale(1, 1);
}

.vibes-block-one .title-text {
    position: absolute;
    left: 0px;
    top: 18px;
    transform: rotate(-12deg);
    z-index: 3;
}

.vibes-block-one .title-text h3 {
    font-size: 22px;
    line-height: 32px;
}

.vibes-block-one .title-text h3 a {
    position: relative;
    display: inline-block;
    color: var(--title-color);
    padding-left: 60px;
}

.vibes-block-one .title-text h3 a::before {
    position: absolute;
    content: "";
    background-color: var(--theme-color);
    width: 50px;
    height: 1px;
    left: 0px;
    top: 16px;
}

.vibes-block-one .title-text h3 a:hover {
    color: var(--theme-color);
}

.vibes-block-one .text {
    position: absolute;
    right: 0px;
    bottom: 20px;
    transform: rotate(-12deg);
}

.vibes-section .dots-style-one {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 20px;
}

.vibes-section .pattern-layer .pattern-1 {
    position: absolute;
    left: 100px;
    top: -40px;
    width: 200px;
    height: 194px;
    background-repeat: no-repeat;
}

.vibes-section .pattern-layer .pattern-2 {
    position: absolute;
    right: 0px;
    bottom: 120px;
    width: 200px;
    height: 284px;
    background-repeat: no-repeat;
}

.journey-section {
    position: relative;
    padding: 112px 0px 105px;
}

.journey-block-one {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    padding: 33px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.journey-block-one .text {
    position: relative;
    display: block;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    color: rgb(95, 99, 102);
    font-weight: 500;
    margin-bottom: 2px;
}

.journey-block-one h3 {
    display: block;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
}

.journey-block-one .list-item li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.journey-block-one .list-item li:last-child {
    margin-bottom: 0px;
}

.journey-block-one .list-item li i {
    position: relative;
    display: inline-block;
    top: 1px;
}

.journey-block-one .shape {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 20px;
}

.journey-section .dots-style-one {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 15px;
}

.journey-section .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center top;
}

.package-style-two {
    position: relative;
}

.package-style-two .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.7;
}

.package-style-two .tabs-box {
    position: relative;
    padding: 40px 0px 40px 40px;
    border-radius: 20px;
    overflow: hidden;
}

.package-style-two .tabs-box .tab {
    position: inherit;
}

.package-style-two .tabs-box .inner-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-style-two .tabs-box .bg-layer {
    position: absolute;
    right: 0px;
    top: -40px;
    width: 100%;
    height: 100%;
    min-width: 1170px;
    min-height: 551px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.package-style-two .tabs-box .bg-layer::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: -webkit-linear-gradient(135deg, rgba(1, 83, 133, 0.8) 0%, rgba(1, 83, 133, 0.1) 60%);
}

.package-style-two .tab-btns {
    position: relative;
    max-width: 370px;
    width: 100%;
}

.package-style-two .tab-btns .tab-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-radius: 20px;
    width: 100%;
    padding: 22px 30px 23px;
    margin-bottom: 10px;
    z-index: 1;
}

.package-style-two .tab-btns .tab-btn::after {
    position: absolute;
    content: "";
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 20px;
    z-index: -1;
    transition: 300ms linear;
}

.package-style-two .tab-btns .tab-btn::before {
    position: absolute;
    content: "";
    background-color: var(--theme-color);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: 300ms linear;
}

.package-style-two .tab-btns .tab-btn.active-btn::before {
    opacity: 1;
    transform: rotate(2deg);
}

.package-style-two .tab-btns .tab-btn:last-child {
    margin-bottom: 0px;
}

.package-style-two .tab-btns .tab-btn h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 4px;
    transition: 300ms linear;
}

.package-style-two .tab-btns .tab-btn.active-btn h3 {
    color: var(--theme-color);
}

.package-style-two .tab-btns .tab-btn .location {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-style-two .tab-btns .tab-btn .location i {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--theme-color);
    top: 2px;
}

.package-style-two .content-box {
    position: relative;
    display: block;
}

.package-style-two .content-box .tabs-box .tab {
    position: inherit;
}

.package-style-two .content-box .lower-box {
    margin-top: 230px;
    padding-right: 40px;
    text-align: right;
}

.package-style-two .content-box .upper-box {
    text-align: right;
}

.package-style-two .content-box .text {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: rgb(255, 255, 255);
    border-radius: 30px 0px 0px 30px;
    background-color: var(--theme-color);
    padding: 6px 20px;
    margin-bottom: 10px;
}

.package-style-two .content-box .text:last-child {
    margin-bottom: 0px;
}

.cs-countdown {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 23px;
}

.count-col {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50%;
    padding: 14px 0px 19px;
    text-align: center;
}

.count-col:last-child {
    margin-bottom: 0px;
}

.cs-countdown .count-col span {
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 0px;
    color: rgb(255, 255, 255);
}

.cs-countdown .count-col h6 {
    position: relative;
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-transform: capitalize;
}

.chooseus-style-two {
    position: relative;
    padding: 113px 0px;
}

.chooseus-style-two .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: repeat-x;
    background-position: center top;
    animation: slide 90s linear infinite;
}

@keyframes slide {
    0% {
        background-position: 0px 0px;
    }

    100% {
        background-position: 1920px 0px;
    }
}

.chooseus-style-two .row.align-items-center {
    align-items: stretch !important;
}

.chooseus-style-two .single-item {
    position: relative;
    display: block;
    margin-bottom: 0px;
}

.chooseus-style-two .single-item .icon-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    left: auto !important;
    right: auto !important;
    top: auto;
    width: 100%;
    height: 100%;
    line-height: 78px;
    margin-bottom: 24px;
    text-align: center;
    background-color: #f3f7fa;
    border-radius: 50%;
    box-shadow: 0px 10px 25px rgba(0, 61, 96, 0.12);
    transition: 300ms linear;
}

.chooseus-style-two .single-item:hover .icon-box {
    background-color: #94b76526;
}

.chooseus-style-two .single-item .icon-box .static-icon {
    position: relative;
    transition: 300ms linear;
}

.chooseus-style-two .single-item:hover .icon-box .static-icon {
    opacity: 0;
}

.chooseus-style-two .single-item .icon-box .overlay-icon {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 300ms linear;
}

.chooseus-style-two .single-item:hover .icon-box .overlay-icon {
    opacity: 1;
}

.chooseus-style-two .single-item h3 {
    position: relative;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 18px;
    color: var(--title-color);
}

.chooseus-style-two .single-item p {
    font-size: 16px;
    line-height: 29px;
    color: #5f6973;
    margin-bottom: 0px;
}

.chooseus-style-two .vision-mission-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.chooseus-style-two .vision-mission-content .single-item {
    width: 100%;
    min-height: 430px;
    padding: 36px 28px 34px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 61, 96, 0.12);
    border-radius: 18px;
    box-shadow: 0px 18px 45px rgba(0, 61, 96, 0.08);
    transition: 300ms ease;
}

.chooseus-style-two .vision-mission-content .single-item:hover {
    transform: translateY(-8px);
    border-color: #f6f8fa;
    box-shadow: 0px 24px 60px rgba(0, 61, 96, 0.16);
}

.chooseus-style-two .vision-mission-content .single-item p {
    text-align: center;
}

.chooseus-style-two .image-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.chooseus-style-two .image-box .image {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    max-width: 620px;
    margin-left: 0px;
    border-radius: 34px;
    box-shadow: 0px 25px 70px rgba(0, 61, 96, 0.16);
}

.chooseus-style-two .image-box .image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.chooseus-style-two .shape-layer .shape-1 {
    position: absolute;
    left: 40px;
    top: 360px;
    width: 91px;
    height: 99px;
    background-repeat: no-repeat;
}

.chooseus-style-two .shape-layer .shape-2 {
    position: absolute;
    left: 80px;
    bottom: 110px;
    width: 180px;
    height: 134px;
    background-repeat: no-repeat;
}

.chooseus-style-two .shape-layer .shape-3 {
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 270px;
    height: 482px;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 991px) {
    .chooseus-style-two {
        padding: 80px 0px;
    }

    .chooseus-style-two .vision-mission-content {
        min-height: auto;
        margin-bottom: 35px;
    }

    .chooseus-style-two .vision-mission-content .single-item {
        min-height: auto;
    }

    .chooseus-style-two .image-box {
        min-height: auto;
        margin-bottom: 35px;
    }

    .chooseus-style-two .image-box .image {
        max-width: 520px;
    }

    .chooseus-style-two .image-box .image img {
        min-height: auto;
    }
}
.gallery-style-two {
    position: relative;
    padding: 113px 0px 105px;
}

.gallery-block-two {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.gallery-block-two .image-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    transition: 300ms linear;
}

.gallery-block-two:hover .image-box {
    background-color: rgb(5, 53, 85);
}

.gallery-block-two .image-box img {
    width: 100%;
    border-radius: 20px;
    transition: 300ms linear;
}

.gallery-block-two:hover .image-box img {
    opacity: 0.2;
    transform: scale(1.05);
}

.gallery-block-two .image-box::before {
    position: absolute;
    content: "";
    background-color: rgb(0, 0, 0);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.2;
    z-index: 1;
    transition: 300ms linear;
}

.gallery-block-two:hover .image-box::before {
    opacity: 0;
}

.gallery-block-two .content-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-block-two .content-box h3 {
    position: absolute;
    left: 0px;
    top: 32px;
    width: 100%;
    font-size: 26px;
    line-height: 36px;
    padding-left: 40px;
}

.gallery-block-two .content-box h3 a {
    display: inline-block;
    color: rgb(255, 255, 255);
}

.gallery-block-two .content-box h3 a:hover {
    color: var(--theme-color);
}

.gallery-block-two .content-box p {
    position: absolute;
    left: 0px;
    bottom: 33px;
    width: 100%;
    color: rgb(255, 255, 255);
    padding-left: 40px;
}

.gallery-block-two .content-box .view-btn a {
    position: relative;
    display: inline-block;
    font-size: 50px;
    line-height: 50px;
    color: rgb(255, 255, 255);
    transform: scale(0, 0);
}

.gallery-block-two .content-box .view-btn a:hover {
    color: var(--theme-color);
}

.gallery-block-two:hover .content-box .view-btn a {
    transform: scale(1, 1);
}

.gallery-style-two .four-column-pagination {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 15px;
}

.testimonial-style-three {
    position: relative;
}

.testimonial-style-three .outer-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 113px 15px 105px;
    max-width: 1670px;
    width: 100%;
    margin: 0px auto;
}

.testimonial-style-three .outer-container::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 1;
    background: -webkit-linear-gradient(90deg, rgb(237, 241, 245) 0%, rgba(237, 241, 245, 0) 100%);
}

.testimonial-style-three .outer-container .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    mix-blend-mode: luminosity;
    opacity: 0.15;
}

.testimonial-block-three {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
}

.testimonial-block-three .image-box {
    position: absolute;
    display: inline-block;
    border-radius: 50%;
    top: 40px;
    right: 30px;
}

.testimonial-block-three .image-box img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-block-three .icon-box {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
}

.testimonial-block-three h4 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 3px;
}

.testimonial-block-three .designation {
    position: relative;
    display: block;
    color: var(--theme-color);
    margin-bottom: 26px;
}

.testimonial-block-three p {
    margin-bottom: 32px;
}

.testimonial-block-three .rating-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 4px 4px 20px;
    border: 1px solid rgb(221, 229, 233);
    border-radius: 30px;
    color: var(--title-color);
}

.testimonial-block-three .rating-box i {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 44px;
    background-color: rgb(237, 241, 245);
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    color: var(--theme-color);
}

.testimonial-style-three .three-item-pagination {
    position: relative;
    display: block;
    text-align: center;
    z-index: 9;
    padding-top: 15px;
}

.testimonial-style-three .dots-style-one .swiper-pagination-bullet {
    border-color: rgb(205, 213, 217);
}

.news-style-three {
    position: relative;
    padding: 112px 0px;
}

.news-block-three {
    position: relative;
    display: block;
    margin-bottom: 42px;
}

.news-block-three .category-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: var(--text-color);
    font-weight: 500;
    border: 1px solid rgb(237, 241, 245);
    border-radius: 30px 30px 30px 0px;
    padding: 7px 18px;
    margin-bottom: 23px;
    transition: 300ms linear;
}

.news-block-three .category-box i {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
    font-size: 16px;
    top: 2px;
}

.news-block-three h3 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 32px;
}

.news-block-three h3 a {
    display: inline-block;
    color: var(--title-color);
}

.news-block-three h3 a:hover {
    color: var(--theme-color);
}

.news-block-three .post-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    background-color: rgb(237, 241, 245);
    padding: 8px 25px 8px 20px;
    border-radius: 5px 30px 30px 5px;
    margin-bottom: 33px;
}

.news-block-three .post-info li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-block-three .post-info li i {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
}

.news-block-three .post-info li a {
    display: inline-block;
    color: var(--text-color);
}

.news-block-three .post-info li a:hover {
    color: var(--theme-color);
}

.news-block-three p {
    margin-bottom: 22px;
}

.news-block-three .image-box {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.news-block-three .image-box .image {
    position: relative;
    transition: 300ms linear;
}

.news-block-three:hover .image-box .image {
    background-color: var(--secondary-color);
}

.news-block-three .image-box .image img {
    width: 100%;
    border-radius: 20px;
    transition: 300ms linear;
}

.news-block-three:hover .image-box .image img {
    opacity: 0.2;
    transform: scale(1.1);
}

.news-block-three .image-box .view-btn {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.news-block-three .image-box .view-btn a {
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 40px;
    color: rgb(255, 255, 255);
    transform: scale(0, 0);
}

.news-block-three .image-box .view-btn a:hover {
    color: var(--theme-color);
}

.news-block-three:hover .image-box .view-btn a {
    transform: scale(1, 1);
}

.news-block-three .lower-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.news-block-three .lower-box .link a {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 48px;
    min-width: 44px;
    background-color: rgb(237, 241, 245);
    text-align: center;
    border-radius: 5px 40px 40px 5px;
    font-size: 22px;
    color: var(--title-color);
    z-index: 1;
}

.news-block-three .lower-box .link a:hover {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
    border-radius: 50%;
}

.news-sidebar-content .news-block-three .post-info {
    margin-bottom: 0px;
}

.news-sidebar-content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 30px 30px 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 30px 0px;
}

.news-sidebar-content .news-block-three h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 21px;
}

.news-sidebar-content .news-block-three {
    margin-bottom: 40px;
}

.news-style-three .shape-box .shape-1 {
    position: absolute;
    left: 80px;
    top: 450px;
    width: 92px;
    height: 54px;
    background-repeat: no-repeat;
}

.news-style-three .shape-box .shape-2 {
    position: absolute;
    left: 100px;
    bottom: 0px;
    width: 150px;
    height: 120px;
    background-repeat: no-repeat;
}

.news-style-three .shape-box .shape-3 {
    position: absolute;
    right: 120px;
    bottom: 345px;
    width: 75px;
    height: 100px;
    background-repeat: no-repeat;
}

.subscribe-section {
    position: relative;
}

.subscribe-section .inner-container {
    position: relative;
    display: block;
    border-radius: 20px;
    padding: 43px 50px 50px;
    overflow: hidden;
}

.subscribe-section .inner-container .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.subscribe-section .inner-container .bg-layer::before {
    position: absolute;
    content: "";
    background-color: var(--secondary-color);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.8;
}

.subscribe-section h3 {
    font-size: 22px;
    line-height: 32px;
    color: rgb(255, 255, 255);
    margin-bottom: 16px;
}

.subscribe-section .form-inner .form-group {
    position: relative;
    margin-bottom: 0px;
    padding-right: 207px;
}

.subscribe-section .form-inner .form-group input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 54px;
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    font-size: 17px;
    color: rgb(160, 169, 174);
    padding: 10px 20px;
}

.subscribe-section .form-inner .form-group .theme-btn {
    position: absolute;
    top: 0px;
    right: 0px;
}

.subscribe-section .form-inner .form-group .theme-btn:hover {
    background-color: rgb(255, 255, 255);
    color: var(--theme-color);
}

.subscribe-section .form-inner .form-group .theme-btn:hover i {
    background-color: var(--theme-color);
    color: rgb(255, 255, 255);
}

.subscribe-section .social-links {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: right;
}

.subscribe-section .social-links li a {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    color: rgb(255, 255, 255);
}

.subscribe-section .social-links li a:hover {
    background-color: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
    color: var(--theme-color);
}

.subscribe-section .bg-color {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
}

.brand-section {
    position: relative;
}

.brand-section .outer-container {
    position: relative;
    max-width: 1750px;
    width: 100%;
    margin: 0px auto;
    padding: 0px 15px;
}

.brand-section .clients-image {
    position: relative;
    display: block;
    max-width: 100%;
    width: auto;
    margin: 0px auto;
}

.brand-section .shape {
    position: absolute;
    width: 89px;
    height: 119px;
    right: 120px;
    top: 120px;
}

.footer-style-three {
    position: relative;
}

.footer-style-three .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.footer-style-three .bg-layer::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: -webkit-linear-gradient(90deg, rgb(5, 53, 85) 40%, rgba(5, 53, 85, 0.1) 100%);
}

.footer-style-three .footer-top {
    position: relative;
    padding: 110px 0px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-style-three .footer-top .special-text {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 58px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 0px;
}

.footer-style-three .footer-top h1 {
    font-size: 150px;
    line-height: 160px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    margin-bottom: 0px;
    z-index: 2;
}

.footer-style-three .footer-top h1 span {
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px rgb(222, 227, 226);
}

.footer-style-three .footer-top .text-box {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
    margin: 0px auto 60px;
    padding: 18px 30px 33px;
    z-index: 1;
}

.footer-style-three .footer-top .text-box::before {
    position: absolute;
    content: "";
    background-color: rgb(13, 66, 99);
    border-radius: 20px;
    width: 100%;
    height: calc(100% + 80px);
    left: 0px;
    bottom: 0px;
    z-index: -1;
}

.footer-style-three .footer-top .text-box p {
    font-size: 19px;
    color: rgb(169, 187, 199);
    margin-bottom: 23px;
}

.footer-style-three .footer-top .text-box .theme-btn {
    margin-bottom: 22px;
}

.footer-style-three .footer-top .text-box .phone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(203, 220, 230);
    gap: 5px;
}

.footer-style-three .footer-top .text-box .phone img {
    position: relative;
    display: inline-block;
    padding-right: 5px;
}

.footer-style-three .footer-top .text-box .phone a {
    display: inline-block;
    color: rgb(255, 255, 255);
}

.footer-style-three .footer-top .text-box .phone a:hover {
    color: var(--theme-color);
}

.footer-style-three .footer-top .content-box {
    position: relative;
}

.footer-style-three .footer-top .content-box .image img {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    border: 5px solid rgb(255, 255, 255);
    width: 100%;
}

.footer-style-three .footer-top .content-box .image-1 {
    position: absolute;
    left: 100px;
    top: 38px;
    transform: rotate(-15deg);
    width: 170px;
    height: 170px;
}

.footer-style-three .footer-top .content-box .image-2 {
    position: absolute;
    right: 100px;
    top: 38px;
    transform: rotate(15deg);
    width: 170px;
    height: 170px;
}

.footer-style-three .footer-bottom {
    padding: 33px 0px 30px;
}

.footer-style-three .footer-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 45px;
    margin-bottom: 27px;
}

.footer-style-three .footer-menu li a {
    position: relative;
    display: inline-block;
    color: rgb(169, 187, 199);
}

.footer-style-three .footer-menu li a:hover {
    color: var(--theme-color);
}

.footer-style-three .language-box .text, .footer-style-three .language-box .nice-select {
    color: rgb(203, 220, 230);
}

.footer-style-three .language-box::before {
    display: none;
}

footer .language-box .nice-select .list li {
    color: var(--text-color);
}

.footer-style-three .footer-bottom .copyright p {
    color: rgb(255, 255, 255);
    margin-bottom: 25px;
}

 .social-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-box li a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: rgb(160, 169, 174);
}

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

.footer-style-three .footer-bottom .scroll-to-target {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(203, 220, 230);
    transition: 300ms linear;
}

.footer-style-three .footer-bottom .scroll-to-target:hover {
    color: var(--theme-color);
}

.footer-style-three .footer-bottom .scroll-to-target i {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 34px;
    font-size: 14px;
    background-color: rgb(13, 66, 99);
    text-align: center;
    border-radius: 50%;
    transition: 300ms linear;
}

.footer-style-three .footer-bottom .scroll-to-target:hover i {
    background-color: rgb(255, 255, 255);
}

.footer-style-three .language-box .icon {
    padding-right: 5px;
}

.header-style-four {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    background-color: var(--secondary-color);
}

.header-style-four .header-shape {
    position: absolute;
    left: 0px;
    bottom: -53px;
    width: 100%;
    height: 54px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.header-style-four .left-column {
    display: flex;
    align-items: center;
    gap: 100px;
}

.header-style-four .header-lower .main-menu .navigation > li > a {
    color: rgb(255, 255, 255);
}

.header-style-four .header-lower .main-menu .navigation > li > ul, .header-style-four .header-lower .main-menu .navigation > li > .megamenu {
    margin-top: 15px;
}

.header-style-four .menu-right-content .support-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgb(203, 220, 230);
}

.header-style-four .menu-right-content .support-box a {
    display: inline-block;
    color: rgb(255, 255, 255);
}

.header-style-four .menu-right-content .support-box a:hover {
    color: var(--theme-color) !important;
}

.header-style-four .menu-right-content .support-box .icon {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 50%;
    margin-right: 5px;
}

.header-style-four .menu-right-content .language-box {
    padding: 0px;
    background-color: transparent;
}

.header-style-four .header-lower .menu-right-content .language-box {
    color: rgb(255, 255, 255);
}

.header-style-four .menu-right-content {
    gap: 30px;
}

.header-style-four .header-lower .menu-right-content .language-box .nice-select, .header-style-four .header-lower .menu-right-content .language-box .nice-select::before {
    color: rgb(203, 220, 230);
}

.header-style-four .menu-right-content .search-toggler {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 52px;
    background-color: rgb(19, 97, 145);
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: 300ms linear;
}

.header-style-four .menu-right-content .search-toggler:hover {
    background-color: var(--theme-color);
    color: rgb(255, 255, 255);
}

.header-style-four .sticky-header .menu-right-content .support-box .icon {
    background-color: var(--secondary-color);
}

.header-style-four .sticky-header .menu-right-content .support-box {
    color: var(--text-color);
}

.header-style-four .sticky-header .menu-right-content .support-box a {
    color: var(--title-color);
}

.banner-style-four {
    position: relative;
    padding: 310px 0px 300px;
    background-color: rgb(5, 54, 85);
}

.banner-style-four .outer-container {
    position: relative;
    max-width: 1650px;
    width: 100%;
    padding: 0px 15px;
    margin: 0px auto;
}

.banner-style-four .content-box {
    position: relative;
    display: block;
    max-width: 710px;
}

.banner-style-four .content-box .special-text {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 34px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-transform: uppercase;
}

.banner-style-four .content-box h2 {
    font-size: 150px;
    line-height: 160px;
    color: rgb(255, 255, 255);
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.banner-style-four .content-box .inner-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner-style-four .content-box .inner-box .package-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border: 1px solid rgb(68, 104, 128);
    border-radius: 50%;
    min-width: 200px;
    text-align: center;
}

.banner-style-four .content-box .inner-box .package-box .special-text {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 6px;
}

.banner-style-four .content-box .inner-box .package-box p {
    color: rgb(255, 255, 255);
}

.banner-style-four .content-box .inner-box .text-box p {
    font-size: 19px;
    line-height: 30px;
    color: rgb(176, 191, 200);
    max-width: 440px;
    margin-bottom: 23px;
}

.banner-style-four .shape-box .shape-1 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 55px;
    background-size: 100% 100%;
    background-repeat: repeat-x;
}

.banner-style-four .shape-box .shape-2 {
    position: absolute;
    left: 0px;
    bottom: 25px;
    width: 417px;
    height: 207px;
    background-repeat: no-repeat;
}

.banner-style-four .shape-box .shape-3 {
    position: absolute;
    left: 30%;
    bottom: 0px;
    width: 308px;
    height: 311px;
    background-repeat: no-repeat;
}

.banner-style-four .shape-box .shape-4 {
    position: absolute;
    right: 100px;
    bottom: 130px;
    width: 140px;
    height: 165px;
    background-repeat: no-repeat;
}

.banner-style-four .shape-box .shape-5 {
    position: absolute;
    top: 215px;
    right: 130px;
    width: 100px;
    height: 86px;
    background-repeat: no-repeat;
}

.banner-style-four .image-box {
    right: 410px;
}

.banner-style-four .image-box .image-1 {
    position: relative;
    z-index: 1;
}

.banner-style-four .image-box .image-2 {
    position: absolute;
    top: 45px;
    right: -110px;
}

.banner-style-four .image-box .image-3 {
    position: absolute;
    top: 210px;
    right: -290px;
}

.banner-style-four .image-box .image-4 {
    position: absolute;
    top: 375px;
    right: -110px;
    z-index: 2;
}

.booking-style-two {
    position: relative;
}

.booking-style-two .inner-container {
    position: relative;
    margin-top: -100px;
    z-index: 3;
}

.booking-style-two .booking-form .form-group {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgb(222, 229, 233);
    box-shadow: rgb(237, 242, 245) 0px 4px 0px 0px;
    border-radius: 5px;
    padding-left: 20px;
    margin-bottom: 20px;
}

.booking-style-two .booking-form .form-group .select-box {
    width: 100%;
}

.booking-style-two .booking-form .form-group input, .booking-style-two .booking-form .form-group .nice-select {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    box-shadow: none;
    height: 58px;
    line-height: 58px;
}

.booking-style-two .booking-form .form-group label {
    margin-bottom: 0px;
    line-height: 30px;
    padding-right: 20px;
    border-right: 1px solid rgb(221, 229, 233);
}

.booking-style-two .booking-form .row {
    --bs-gutter-x: 10px;
}

.booking-style-two .booking-form::before {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 20px;
    border: 1px solid rgb(221, 229, 233);
}

.booking-style-two .booking-form {
    padding: 43px 39px 23px;
}

.booking-style-two .booking-form button[type="submit"] {
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 64px;
    text-align: center;
    border-radius: 5px 40px 40px 5px;
    background-color: var(--secondary-color);
    font-size: 30px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: 300ms linear;
}

.booking-style-two .booking-form button:hover {
    background-color: var(--theme-color);
    border-radius: 50%;
}

.brand-section .title-text {
    position: relative;
    display: inline-block;
    padding-left: 410px;
    padding-right: 410px;
    margin-bottom: 43px;
}

.brand-section .title-text::before, .brand-section .title-text::after {
    position: absolute;
    content: "";
    background-color: rgb(221, 229, 233);
    width: 380px;
    height: 1px;
    top: 18px;
}

.brand-section .title-text::before {
    left: 0px;
}

.brand-section .title-text::after {
    right: 0px;
}

.brand-section .title-text h3 {
    font-size: 26px;
    line-height: 36px;
}

.highlights-section {
    position: relative;
    padding: 100px 0px 70px;
}

.highlights-section .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.highlights-section .bg-layer::before {
    position: absolute;
    content: "";
    background-color: rgb(5, 53, 85);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.85;
}

.highlights-section .feature-block-two .icon-box {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.highlights-section .feature-block-two .icon-box::before {
    background-color: rgb(255, 255, 255);
    opacity: 1;
}

.highlights-section .feature-block-two:hover .icon-box::before {
    background-color: var(--secondary-color);
}

.highlights-section .feature-block-two:hover .icon-box {
    border-color: rgb(255, 255, 255);
}

.highlights-section .feature-block-two h3 {
    color: rgb(255, 255, 255);
}

.highlights-section .feature-block-two p {
    color: rgb(169, 187, 199);
}

.highlights-section .feature-block-two::before {
    position: absolute;
    content: "";
    right: -15px;
    bottom: 10px;
    width: 1px;
    height: 205px;
    background-color: rgba(255, 255, 255, 0.2);
}

.highlights-section .feature-block:last-child .feature-block-two::before {
    display: none;
}

.vibes-section .pattern-layer .pattern-1.t_120 {
    top: 50%;
    filter: hue-rotate(360deg) saturate(300%);
}

.about-section.pb_80 {
    padding-bottom: 80px;
}

.about-section .image-box .image-shape {
    position: absolute;
    left: 215px;
    top: 260px;
    width: 150px;
    height: 125px;
    background-repeat: no-repeat;
}

.testimonial-style-two .shape-box .shape-1 {
    position: absolute;
    left: 100px;
    top: 120px;
    width: 269px;
    height: 174px;
    background-repeat: no-repeat;
}

.testimonial-style-two .shape-box .shape-2 {
    position: absolute;
    top: 245px;
    right: 240px;
    width: 76px;
    height: 150px;
    background-repeat: no-repeat;
}

.news-style-four {
    position: relative;
    padding: 113px 0px 105px;
}

.news-style-four .outer-container {
    padding-right: 275px;
}

.news-style-four .outer-container::before {
    position: absolute;
    content: "";
    background-color: rgb(255, 255, 255);
    width: 10000px;
    height: 100%;
    top: 0px;
    right: calc(100% - 50px);
    z-index: 2;
}

.news-style-four .swiper-horizontal {
    overflow: visible;
}

.news-style-four .common-lower-text {
    position: absolute;
    right: 0px;
    bottom: 7px;
}

.news-style-four .two-column-pagination {
    position: relative;
    display: block;
    text-align: center;
}

.funfact-section {
    position: relative;
    padding: 110px 0px 90px;
}

.funfact-section .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.funfact-section .bg-layer::before {
    position: absolute;
    content: "";
    background-color: rgb(5, 54, 85);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.9;
}

.funfact-section .funfact-block-one .count-outer, .funfact-section .funfact-block-one h3 {
    color: rgb(255, 255, 255);
}

.funfact-section .funfact-block-one h3 {
    margin-bottom: 23px;
}

.funfact-section .funfact-block-one .icon-box {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 78px;
    background-color: var(--theme-color);
    font-size: 36px;
    color: rgb(255, 255, 255);
    border-radius: 50%;
    text-align: center;
}

.funfact-section .funfact-block-one {
    padding: 0px;
    margin-bottom: 30px;
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
}

.funfact-section .funfact-block-one::before {
    position: absolute;
    content: "";
    background-color: rgba(255, 255, 255, 0.25);
    width: 1px;
    height: 100%;
    top: 0px;
    right: -15px;
}

.funfact-section .funfact-block:last-child .funfact-block-one::before {
    display: none;
}

.footer-style-four {
    position: relative;
    background-color: var(--secondary-color);
}

.footer-style-four .footer-top {
    padding: 112px 0px 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-style-four .footer-top h2 {
    font-size: 48px;
    line-height: 58px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-style-four .footer-top p {
    color: rgb(170, 193, 207);
}

.footer-style-four .form-inner .form-group {
    position: relative;
    margin-bottom: 25px;
}

.footer-style-four .form-inner .form-group input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    font-size: 17px;
    color: rgb(95, 142, 170);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 10px 190px 10px 30px;
    transition: 500ms;
}

.footer-style-four .form-inner .form-group input:focus {
    color: rgb(255, 255, 255);
}

.footer-style-four .form-inner .form-group button[type="submit"] {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 170px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    transition: 500ms;
}

.footer-style-four .form-inner .form-group button i {
    position: relative;
    display: inline-block;
    top: 3px;
    font-size: 22px;
    color: var(--theme-color);
}

.footer-style-four .form-inner .form-group input:focus + button, .footer-style-four .form-inner .form-group button:hover {
    color: var(--theme-color);
}

.footer-style-four .form-inner .social-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 15px;
}

.footer-style-four .form-inner .social-box .text {
    position: relative;
    display: block;
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.footer-style-four .form-inner .social-box .social-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-style-four .form-inner .social-box .social-list li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 54px;
    background-color: rgb(20, 97, 146);
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    color: rgb(255, 255, 255);
}

.footer-style-four .form-inner .social-box .social-list li a:hover {
    color: var(--theme-color);
    background-color: rgb(255, 255, 255);
}

.footer-style-four .widget-section {
    padding: 93px 0px 110px;
}

.footer-style-four .widget-section p {
    color: rgb(170, 193, 207);
    margin-bottom: 23px;
}

.footer-style-four .widget-section .footer-logo {
    margin-bottom: 33px;
}

.footer-style-four .widget-section .logo-widget .theme-btn:hover {
    background-color: rgb(5, 53, 85);
}

.footer-style-four .widget-section .widget-title h3 {
    color: rgb(255, 255, 255);
}

.footer-style-four .footer-widget .links-list li a {
    padding-left: 0px;
    color: rgb(170, 193, 207);
}

.footer-style-four .footer-widget .links-list li a:hover {
    padding-left: 16px;
    color: rgb(255, 255, 255);
}

.footer-style-four .footer-widget .links-list li a::before {
    opacity: 0;
    color: rgb(254, 254, 255);
    transition: 500ms;
}

.footer-style-four .footer-widget .links-list li a:hover::before {
    opacity: 1;
}

.post-widget article {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}

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

.post-widget article .image-box {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
}

.post-widget article .image-box img {
    width: 100%;
    border-radius: 50%;
}

.post-widget article h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 6px;
}

.post-widget article h4 a {
    display: inline-block;
    color: rgb(255, 255, 255);
}

.post-widget article h4 a:hover {
    color: var(--theme-color);
}

.post-widget article .post-date {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: rgb(170, 193, 207);
}

.post-widget article .post-date i {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: rgb(95, 142, 170);
    top: 1px;
}

.footer-style-four .footer-bottom {
    position: relative;
    background-color: rgb(255, 255, 255);
    width: 100%;
    padding: 25px 0px;
}

.footer-bottom .footer-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom .footer-card span {
    position: relative;
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    color: var(--title-color);
    padding-right: 10px;
}

.page-title {
    position: relative;
    padding: 180px 0px 190px;
}

.page-title .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.page-title .bg-layer::before {
    position: absolute;
    content: "";
    background: -webkit-linear-gradient(0deg, rgb(0 0 0 / 80%) 0%, rgba(4, 48, 76, 0.1) 100%);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.page-title h1 {
    font-size: 60px;
    line-height: 70px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    margin-bottom: 14px;
}

.page-title .bread-crumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-title .bread-crumb li, .page-title .bread-crumb li a {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: rgb(255 255 255);
}

.page-title .bread-crumb li a:hover, .page-title .bread-crumb li span {
    color: var(--theme-color);
}

.page-title .bread-crumb li i {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: rgb(255 255 255);
    top: 1px;
}

.categories-section.alternate-2 .categories-block-one::before {
    border-color: rgb(221, 229, 233);
}

.categories-section.alternate-2 .categories-block-one .title-box h3 a {
    color: var(--title-color);
}

.categories-section.alternate-2 .categories-block-one .title-box h3 a:hover {
    color: rgb(239, 100, 52);
}

.travel-section.pt_120 {
    padding-bottom: 83px;
}

.vibes-section.pt_110 {
    padding-bottom: 75px;
}

.package-section .sort-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.package-section .sort-box .select-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 40px;
    line-height: 40px;
    border: 1px solid rgb(221, 229, 233);
    border-radius: 30px;
    padding: 0px 19px;
}

.package-section .sort-box .select-box .nice-select {
    position: relative;
    font-size: 17px;
    color: var(--text-color);
    padding-right: 20px;
}

.package-section .sort-box .select-box .nice-select::before {
    position: absolute;
    content: "Ã¯â€žâ€¦";
    font-family: flaticon;
    font-size: 10px;
    top: 0px;
    right: 0px;
    color: var(--text-color);
}

.package-section .sort-box .select-box .nice-select .list {
    right: -20px;
    left: inherit;
}

.package-sidebar {
    position: relative;
    display: block;
}

.package-sidebar .sidebar-widget {
    position: relative;
    display: block;
    border: 1px solid rgb(221, 229, 233);
    border-radius: 20px;
    margin-bottom: 10px;
    padding: 23px 25px 30px;
}

.package-sidebar .widget-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed var(--theme-color);
    padding-bottom: 13px;
    margin-bottom: 20px;
}

.package-sidebar .widget-title h3 {
    font-size: 22px;
    line-height: 32px;
}

.package-sidebar .widget-title i {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: rgb(161, 170, 175);
}

.package-sidebar .search-widget .search-inner .form-group {
    position: relative;
    margin-bottom: 0px;
}

.package-sidebar .search-widget .search-inner .form-group input[type="search"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background-color: rgb(237, 241, 245);
    border: 1px solid rgb(237, 241, 245);
    border-radius: 40px;
    padding: 10px 50px 10px 20px;
    font-size: 17px;
    color: var(--text-color);
    transition: 300ms linear;
}

.package-sidebar .search-widget .search-inner .form-group button[type="submit"] {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 20px;
    color: var(--title-color);
    cursor: pointer;
    transition: 300ms linear;
}

.package-sidebar .search-widget .search-inner .form-group input:focus {
    border-color: var(--theme-color);
}

.package-sidebar .search-widget .search-inner .form-group input:focus + button, .package-sidebar .search-widget .search-inner .form-group button:hover {
    color: var(--theme-color);
}

.package-sidebar .category-widget .category-list li {
    position: relative;
    display: block;
    padding: 13px 0px;
    border-bottom: 1px solid rgb(221, 229, 233);
}

.package-sidebar .category-widget .category-list li:last-child {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.package-sidebar .category-widget .category-list li a {
    position: relative;
    display: inline-block;
    color: var(--text-color);
    padding-left: 24px;
}

.package-sidebar .category-widget .category-list li a:hover {
    color: var(--theme-color);
}

.package-sidebar .category-widget .category-list li a::before {
    position: absolute;
    content: "";
    border: 1px solid rgb(205, 213, 217);
    width: 15px;
    height: 15px;
    left: 0px;
    top: 6px;
    border-radius: 50%;
    transition: 300ms linear;
}

.package-sidebar .category-widget .category-list li a:hover::before {
    border-color: var(--theme-color);
}

.package-sidebar .category-widget .category-list li a::after {
    position: absolute;
    content: "";
    background-color: rgb(205, 213, 217);
    width: 7px;
    height: 7px;
    left: 4px;
    top: 10px;
    border-radius: 50%;
    transition: 300ms linear;
}

.package-sidebar .category-widget .category-list li a:hover::after {
    background-color: var(--theme-color);
}

.package-sidebar .category-widget {
    padding-bottom: 10px;
}

.package-sidebar .filter-widget .range-slider .ui-widget.ui-widget-content {
    height: 4px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: rgb(221, 229, 233);
    border-radius: 30px;
}

.package-sidebar .filter-widget .range-slider .ui-slider .ui-slider-range {
    top: 0px;
    height: 4px;
    border-radius: 0px;
    background-color: var(--theme-color);
}

.package-sidebar .filter-widget .range-slider .ui-widget-content .ui-state-default {
    top: -5px;
    width: 14px;
    height: 14px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    margin-left: 0px;
    background-color: var(--theme-color);
    border-radius: 50%;
    cursor: pointer;
}

.package-sidebar .filter-widget .range-slider .ui-widget-content .ui-state-default::before {
    position: absolute;
    content: "";
    background-color: rgb(255, 255, 255);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 3px;
    left: 3px;
}

.package-sidebar .filter-widget .input {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 17px;
    color: var(--title-color);
}

.package-sidebar .duration-widget .select-box {
    position: relative;
    min-height: 60px;
}

.package-sidebar .duration-widget .select-box .nice-select {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: rgb(237, 241, 245);
    cursor: pointer;
    padding: 0px 20px;
    border-radius: 40px;
    font-size: 17px;
    color: var(--text-color);
}

.package-sidebar .duration-widget .select-box .nice-select::before {
    position: absolute;
    content: "Ã¯â€žâ€¦";
    font-family: flaticon;
    font-size: 10px;
    top: 0px;
    right: 20px;
    color: var(--text-color);
}

.package-sidebar .duration-widget .select-box .nice-select .list {
    width: 100%;
}

.package-sidebar .rating-widget .rating-list li {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--theme-color);
    margin-bottom: 6px;
    cursor: pointer;
    padding-left: 24px;
}

.package-sidebar .rating-widget .rating-list li:last-child {
    margin-bottom: 0px;
}

.package-sidebar .rating-widget .rating-list li span {
    position: relative;
    display: inline-block;
    font-size: 17px;
    color: rgb(160, 169, 174);
    top: -3px;
    padding-left: 5px;
}

.package-sidebar .rating-widget .rating-list li .light {
    color: transparent;
    -webkit-text-stroke: 1px rgb(177, 184, 188);
}

.package-sidebar .rating-widget .rating-list li::before {
    position: absolute;
    content: "";
    border: 1px solid rgb(205, 213, 217);
    width: 15px;
    height: 15px;
    left: 0px;
    top: 6px;
    border-radius: 50%;
    transition: 300ms linear;
}

.package-sidebar .rating-widget .rating-list li:hover::before, .package-sidebar .rating-widget .rating-list li:focus::before {
    border-color: var(--theme-color);
}

.package-sidebar .rating-widget .rating-list li::after {
    position: absolute;
    content: "";
    background-color: rgb(205, 213, 217);
    width: 7px;
    height: 7px;
    left: 4px;
    top: 10px;
    border-radius: 50%;
    transition: 300ms linear;
}

.package-sidebar .rating-widget .rating-list li:hover::after, .package-sidebar .rating-widget .rating-list li:focus::after {
    background-color: var(--theme-color);
}

.sec-pad-3 {
    padding: 120px 0px !important;
}

.tour-details {
    position: relative;
}

.tour-details .tab-btns {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 42px;
}

.tour-details .tab-btns li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    line-height: 30px;
    color: var(--title-color);
    cursor: pointer;
    border: 1px solid rgb(237, 241, 245);
    border-radius: 40px;
    padding: 14px 19px;
    transition: 300ms linear;
}

.tour-details .tab-btns li.active-btn {
    color: var(--theme-color);
    background-color: rgb(237, 241, 245);
    font-weight: 500;
}

.tour-details .tab-btns li span {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    padding-right: 20px;
    border-right: 1px solid rgb(221, 229, 233);
}

.tour-details .tab-btns li i {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: rgb(161, 170, 175);
    transition: 300ms linear;
}

.tour-details .tab-btns li.active-btn i {
    transform: rotate(180deg);
}

.tour-details .title-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.tour-details .title-box .title-text .location {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.tour-details .title-box .title-text .location i {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
    font-size: 14px;
    top: 2px;
}

.tour-details .title-box .title-text h2 {
    font-size: 36px;
    line-height: 46px;
}

.tour-details .title-box .other-text {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tour-details .title-box .other-text .duration-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
}

.tour-details .title-box .other-text .duration-box::before {
    position: absolute;
    content: "";
    background-color: rgb(231, 229, 227);
    width: 1px;
    height: 44px;
    top: 4px;
    right: 0px;
}

.tour-details .title-box .other-text .duration-box .icon-box {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 46px;
    border: 1px solid rgb(207, 214, 219);
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    color: var(--theme-color);
}

.tour-details .title-box .other-text .duration-box span {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    color: var(--title-color);
}

.tour-details .title-box .other-text .duration-box p {
    color: rgb(1, 82, 133);
}

.tour-details .title-box .other-text .rating {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-details .title-box .other-text .rating i {
    position: relative;
    display: inline-block;
    background-color: var(--theme-color);
    border-radius: 30px;
    color: rgb(255, 255, 255);
    font-size: 15px;
    line-height: 24px;
    padding: 0px 9px;
    font-style: normal;
}

.tour-details .title-box .other-text .rating i::before {
    position: relative;
    font-size: 16px;
    top: 2px;
}

.tour-details .tabs-content h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 33px;
}

.tour-details .overview-content .image-box {
    position: relative;
    display: block;
    border-radius: 20px;
    margin-bottom: 53px;
}

.tour-details .overview-content .image-box img {
    width: 100%;
    border-radius: 20px;
}

.tour-details .overview-content p {
    margin-bottom: 43px;
}

.tour-details .overview-content .list-item {
    position: relative;
    display: block;
    border: 1px solid rgb(221, 229, 233);
    border-radius: 20px;
}

.tour-details .overview-content .list-item li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 60px;
    border-bottom: 1px solid rgb(221, 229, 233);
}

.tour-details .overview-content .list-item li:last-child {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.tour-details .overview-content .list-item li span {
    position: relative;
    display: inline-block;
    padding: 16px 25px;
}

.tour-details .overview-content .list-item li .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-right: 1px solid rgb(221, 229, 233);
}

.tour-details .itinerary-content {
    position: relative;
    display: block;
    border: 1px solid rgb(221, 229, 233);
    border-radius: 20px;
    overflow: hidden;
}

.tour-details .itinerary-content .single-item {
    padding: 43px 50px;
}

.tour-details .itinerary-content .single-item:first-child {
    background-color: rgb(237, 241, 245);
}

.tour-details .itinerary-content .single-item .inner-box {
    position: relative;
    display: flex;
    gap: 50px;
}

.tour-details .itinerary-content .single-item .inner-box .image-box {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
    min-width: 150px;
    border-radius: 100px 100px 10px 10px;
}

.tour-details .itinerary-content .single-item .inner-box .image-box img {
    width: 100%;
    border-radius: 100px 100px 10px 10px;
}

.tour-details .itinerary-content .single-item .content-box .date {
    position: relative;
    display: block;
    margin-bottom: 11px;
}

.tour-details .itinerary-content .single-item .content-box h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 16px;
}

.tour-details .itinerary-content .single-item .content-box .list-item li {
    position: relative;
    display: block;
    margin-bottom: 20px;
    padding-left: 44px;
}

.tour-details .itinerary-content .single-item .content-box .list-item li:last-child {
    margin-bottom: 0px;
}

.tour-details .itinerary-content .single-item .content-box .list-item li::before {
    position: absolute;
    content: "";
    border: 3px solid rgb(205, 213, 217);
    width: 15px;
    height: 15px;
    left: 0px;
    top: 6px;
    border-radius: 50%;
}

.tour-details .itinerary-content .single-item .content-box .list-item li::after {
    position: absolute;
    content: "";
    background-color: rgb(205, 213, 217);
    width: 1px;
    height: 33px;
    left: 7px;
    top: 21px;
}

.tour-details .itinerary-content .single-item .content-box .list-item li:last-child::after {
    display: none;
}

.tour-details .itinerary-content .link-box {
    position: relative;
    display: block;
    padding: 23px 50px;
    border-top: 1px solid rgb(221, 229, 233);
}

.tour-details .includes-content .single-item {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgb(237, 241, 245);
    border-radius: 20px;
    margin-bottom: 10px;
    gap: 30px;
    padding: 30px 40px;
}

.tour-details .includes-content .single-item:last-child {
    margin-bottom: 0px;
}

.tour-details .includes-content .single-item .title-text {
    position: relative;
    display: block;
    width: 50%;
}

.tour-details .includes-content .single-item .title-text h2 {
    margin-bottom: 13px;
}

.tour-details .includes-content .single-item .title-text h2 span {
    position: relative;
    display: block;
    font-weight: 400;
}

.tour-details .includes-content .single-item .list-text {
    position: relative;
    padding-left: 30px;
}

.tour-details .includes-content .single-item .list-text::before {
    position: absolute;
    content: "";
    background-color: rgb(205, 213, 217);
    width: 1px;
    height: calc(100% - 15px);
    left: 0px;
    top: 7px;
}

.tour-details .includes-content .single-item .list-item li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
}

.tour-details .includes-content .single-item .list-item li:last-child {
    margin-bottom: 0px;
}

.tour-details .includes-content .single-item .list-item li i {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--theme-color);
    top: 2px;
}

.tour-details .includes-content .single-item .list-item li i.light {
    color: rgb(160, 169, 174);
}

.tour-details .tabs-content .booking-form {
    background-color: rgb(237, 241, 245);
}

.tour-details .tabs-content .booking-form::before {
    display: none;
}

.tour-details .tabs-content .booking-form form {
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 23px 30px 30px;
}

.booking-form .form-group textarea {
    height: 120px;
    resize: none;
}

.booking-form .form-group textarea:focus, .booking-form .form-group input:focus {
    border-color: var(--theme-color);
}

.tour-details .tabs-content .booking-form .form-group input, .tour-details .tabs-content .booking-form .form-group textarea {
    color: rgb(160, 169, 174);
}

.tour-details .tabs-content .booking-form form .row {
    --bs-gutter-x: 10px;
}

.tour-sidebar {
    position: relative;
    display: block;
}

.tour-sidebar .booking-form {
    padding: 0px;
    border-radius: 0px;
    background-color: transparent;
}

.tour-sidebar .booking-form::before {
    display: none;
}

.tour-sidebar .package-widget {
    position: relative;
    display: block;
    background-color: rgb(237, 241, 245);
    border-radius: 20px;
    padding: 23px 30px 30px;
}

.tour-sidebar .package-widget .text {
    position: relative;
    display: block;
    margin-bottom: 4px;
}

.tour-sidebar .package-widget h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: var(--theme-color);
    padding-bottom: 18px;
    margin-bottom: 23px;
    border-bottom: 1px solid rgb(205, 213, 217);
}

.tour-sidebar .package-widget h3 span {
    font-size: 17px;
    line-height: 28px;
    font-family: var(--text-font);
    color: var(--text-color);
    font-weight: 400;
}

.tour-sidebar .booking-form .form-group input, .tour-sidebar .booking-form .form-group textarea, .tour-sidebar .booking-form .form-group .nice-select {
    box-shadow: rgb(220, 229, 235) 0px 4px 0px 0px;
}

.tour-sidebar .contact-widget {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    padding: 33px 30px 35px;
}

.tour-sidebar .contact-widget .bg-image {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.tour-sidebar .contact-widget .bg-image::before {
    position: absolute;
    content: "";
    background: -webkit-linear-gradient(0deg, rgb(1, 83, 133) 25%, rgba(1, 83, 133, 0.65) 100%);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.tour-sidebar .contact-widget h4 {
    font-size: 20px;
    line-height: 30px;
    color: rgb(255, 255, 255);
    margin-bottom: 2px;
}

.tour-sidebar .contact-widget h3 {
    font-size: 26px;
    line-height: 36px;
    color: rgb(255, 255, 255);
    margin-bottom: 9px;
}

.tour-sidebar .contact-widget p {
    position: relative;
    color: rgb(173, 196, 210);
    padding-left: 60px;
    margin-bottom: 17px;
}

.tour-sidebar .contact-widget p::before {
    position: absolute;
    content: "";
    background-color: var(--theme-color);
    width: 50px;
    height: 1px;
    left: 0px;
    top: 13px;
}

.tour-sidebar .contact-widget .inner-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tour-sidebar .contact-widget .inner-box .icon-box {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 50px;
    min-width: 54px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    text-align: center;
}

.tour-sidebar .contact-widget .inner-box .text {
    position: relative;
    display: block;
    color: var(--theme-color);
    margin-bottom: 4px;
}

.tour-sidebar .contact-widget .inner-box a {
    display: inline-block;
    font-size: 20px;
    line-height: 32px;
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.tour-sidebar .contact-widget .inner-box a:hover {
    color: var(--theme-color);
}

.tour-sidebar .share-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    color: var(--title-color);
    border-radius: 40px;
    border: 1px solid rgb(221, 229, 233);
    padding: 12px 30px;
}

.tour-sidebar .share-box a:hover {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.sec-pad-4 {
    padding: 120px 0px 90px !important;
}

.filter-btns {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    background-color: rgb(237, 241, 245);
    border-radius: 40px;
    padding: 16px 30px;
}

.filter-btns li {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 17px;
    color: var(--title-color);
    transition: 500ms;
}

.filter-btns li.active {
    color: var(--theme-color);
}

.faq-page-section {
    position: relative;
}

.faq-page-section .faq-sidebar .inner-box {
    margin-bottom: 0px;
}

.faq-page-section .faq-sidebar {
    padding-bottom: 9px;
}

.faq-page-section .sidebar-content .faq-category li {
    position: relative;
    display: block;
    margin-bottom: 18px;
}

.faq-page-section .sidebar-content .faq-category li:last-child {
    margin-bottom: 0px;
}

.faq-page-section .sidebar-content .faq-category li a {
    position: relative;
    display: inline-block;
    font-weight: 500;
    color: var(--title-color);
}

.faq-page-section .sidebar-content .faq-category li a:hover {
    color: var(--theme-color);
    padding-left: 23px;
}

.faq-page-section .sidebar-content .faq-category li a::before {
    position: absolute;
    content: "Ã¯â€žâ€¢";
    font-family: flaticon;
    font-size: 12px;
    left: 0px;
    top: 0px;
    opacity: 0;
    transition: 300ms linear;
}

.faq-page-section .sidebar-content .faq-category li a:hover::before {
    opacity: 1;
}

.comingsoon-section {
    position: relative;
    width: 100%;
    min-height: 946px;
    background-color: rgb(255, 255, 255);
    padding: 80px;
}

.comingsoon-section .outer-container {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
    background-color: rgb(237, 242, 245);
    display: flex;
    align-items: center;
}

.comingsoon-section .left-content {
    position: relative;
    display: block;
    width: 50%;
    min-width: 50%;
}

.comingsoon-section .right-content {
    position: relative;
    display: block;
    width: 50%;
    min-width: 50%;
    padding: 626px 60px 60px;
}

.comingsoon-section .right-content .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 20px;
}

.comingsoon-section .right-content .form-box .form-group {
    position: relative;
    display: block;
    margin-bottom: 0px;
}

.comingsoon-section .right-content .form-box .form-group input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    padding: 10px 160px 10px 30px;
    font-size: 17px;
    color: rgb(160, 169, 174);
}

.comingsoon-section .right-content .form-box .form-group button[type="submit"] {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 145px;
    height: 60px;
    line-height: 60px;
    border-left: 1px solid rgb(221, 229, 233);
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--title-color);
    transition: 300ms linear;
}

.comingsoon-section .right-content .form-box .form-group button i {
    position: relative;
    display: inline-block;
    font-size: 22px;
    color: var(--theme-color);
    top: 2px;
}

.comingsoon-section .right-content .form-box .form-group input:focus + button, .comingsoon-section .right-content .form-box .form-group button:hover {
    color: var(--theme-color);
}

.comingsoon-section .left-content .logo-box {
    margin-bottom: 30px;
}

.comingsoon-section .left-content h2 {
    display: block;
    font-size: 100px;
    line-height: 110px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgb(221, 229, 233);
    margin-bottom: 20px;
    text-shadow: rgb(213, 217, 220) 0px 8px 0px;
    
}

.comingsoon-section .left-content h3 {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 12px;
}

.comingsoon-section .left-content p {
    margin-bottom: 33px;
}

.comingsoon-section .left-content .cs-countdown {
    justify-content: center;
}

.comingsoon-section .left-content .cs-countdown .count-col {
    border-color: rgb(209, 216, 220);
}

.comingsoon-section .left-content .cs-countdown span {
    color: var(--title-color);
}

.comingsoon-section .left-content .cs-countdown h6 {
    color: var(--text-color);
}

.comingsoon-section .left-content .cs-countdown {
    margin-bottom: 40px;
}

.error-section {
    position: relative;
    display: block;
    padding: 130px 0px 120px;
    overflow: hidden;
}

.error-section h1 {
    font-size: 500px;
    line-height: 500px;
    color: transparent;
    background-clip: text;
    background-image: url("../images/resource/text.jpg");
}

.error-section .content-box .shape {
    position: absolute;
    top: 0px;
    left: 70px;
    width: 100%;
    height: 232px;
    background-repeat: no-repeat;
    text-align: center;
    background-position: center top;
    z-index: 1;
}

.error-section .content-box h2 {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 13px;
}

.error-section .content-box p {
    margin-bottom: 23px;
}

.error-section .pattern {
    position: absolute;
    left: 0px;
    bottom: 10px;
    width: 417px;
    height: 207px;
    background-repeat: no-repeat;
}

.error-section .scroll-text {
    position: absolute;
    right: -360px;
    bottom: -230px;
    width: 100%;
    background-color: var(--theme-color);
    padding: 25px 0px;
    transform: rotate(-40deg);
    min-width: 2000px;
}

.error-section .scroll-text .text-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    animation: 190s linear 0s infinite normal none running scroll-left;
}

.error-section .scroll-text .text-inner h4 {
    font-size: 20px;
    line-height: 30px;
    color: rgb(255, 255, 255);
}

@-webkit-keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

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

.page-title h2 {
    font-size: 48px;
    line-height: 58px;
    color: rgb(255, 255, 255);
    margin-bottom: 30px;
}

.page-title .category-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    background-color: var(--theme-color);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 12px;
    transition: 300ms linear;
}

.page-title .category-box i {
    position: relative;
    display: inline-block;
    font-size: 16px;
    top: 2px;
}

.page-title .post-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    background-color: rgb(237, 241, 245);
    padding: 8px 25px 8px 20px;
    border-radius: 30px;
}

.page-title .post-info li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-title .post-info li i {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
}

.page-title .post-info li a {
    display: inline-block;
    color: var(--text-color);
}

.page-title .post-info li a:hover {
    color: var(--theme-color);
}

.page-title.pt_150.pb_150 {
    padding: 150px 0px;
}



.check-box-two input {
    display: none;
}

.check-box-two label {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    padding-left: 28px;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 0px;
}

.check-box-two label::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(221, 229, 233);
}

.check-box-two label::after {
    position: absolute;
    content: "";
    background: var(--theme-color);
    width: 6px;
    height: 6px;
    left: 5px;
    top: 10px;
    opacity: 0;
    transition: 500ms;
}

.check-box-two input:checked + label::after {
    opacity: 1;
}

.contact-section {
    position: relative;
}

.contact-section .inner-container {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
}

.contact-section .inner-container .shape {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.contact-section .info-box {
    position: relative;
    display: block;
    margin-top: 11px;
}

.contact-section .info-box .text-box {
    margin-bottom: 22px;
}

.contact-section .info-box .text-box h2 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 12px;
}

.contact-section .info-box .text-box p a {
    display: inline-block;
    color: var(--theme-color);
    text-decoration: underline;
}

.contact-section .info-box .single-item {
    position: relative;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background-color: rgb(219, 227, 232);
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 26px 30px;
}

.contact-section .info-box .single-item:last-child {
    margin-bottom: 0px;
}

.contact-section .info-box .single-item .icon-box {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    min-width: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
}

.contact-section .info-box .single-item h5 {
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 2px;
}

.contact-section .info-box .single-item a {
    display: inline-block;
    color: var(--text-color);
}

.contact-section .info-box .single-item a:hover {
    color: var(--theme-color);
}

.contact-section .info-box .inner-box {
    margin-bottom: 83px;
}

.contact-section .info-box .social-box {
    position: relative;
    top: 35px;
}

.contact-section .info-box .social-box h5 {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 13px;
}

.contact-section .info-box .social-box .social-links {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-section .info-box .social-box .social-links li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 54px;
    border: 1px solid rgb(208, 215, 219);
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    color: rgb(160, 169, 174);
    box-shadow: rgb(204, 215, 223) 0px 4px 0px 0px;
}

.contact-section .info-box .social-box .social-links li a:hover {
    color: rgb(255, 255, 255);
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    box-shadow: none;
}

.contact-section .booking-form {
    background-color: rgb(255, 255, 255);
    padding: 23px 30px 30px;
}

.location-section {
    position: relative;
}

.location-section .map-inner {
    position: absolute;
    left: 0px;
    top: 0px;
    width: calc(50% + 95px);
    height: 810px;
    border-radius: 0px 20px 20px 0px;
    overflow: hidden;
}

.location-section .map-inner iframe {
    width: 100%;
    height: 100%;
}

.single-location-box {
    position: relative;
    display: block;
    margin-bottom: 47px;
}

.single-location-box:last-child {
    margin-bottom: 0px;
}

.single-location-box .image-box {
    position: relative;
    display: block;
    border-radius: 10px;
}

.single-location-box .image-box img {
    width: 100%;
    border-radius: 10px;
}

.single-location-box .lower-content {
    position: relative;
    display: block;
    padding-top: 23px;
}

.single-location-box .lower-content h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 7px;
}

.single-location-box .lower-content h4 span {
    font-size: 14px;
    color: rgb(160, 169, 174);
}

.single-location-box .lower-content p {
    margin-bottom: 17px;
}

.single-location-box .lower-content .support-box {
    position: relative;
    display: flex;
    gap: 15px;
}

.single-location-box .lower-content .support-box p {
    margin-bottom: 0px;
}

.single-location-box .lower-content .support-box .icon-box {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    min-width: 50px;
    background-color: rgb(237, 241, 245);
    text-align: center;
    border-radius: 50%;
}

.single-location-box .lower-content .support-box p a {
    color: var(--text-color);
}

.single-location-box .lower-content .support-box p a:hover {
    color: var(--theme-color);
}

.menu-right-content .language-box .nice-select .list li {
    color: var(--text-color);
}

footer .language-box:last-child::before {
    display: none;
}

.booking-form .form-group textarea {
    line-height: 28px;
}

.large-container::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -5px;
    z-index: 1;
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(90deg, rgb(244, 233, 0) 0px, rgb(244, 233, 0) 9px, rgb(244, 233, 0) 9px, rgb(244, 233, 0) 18px, rgb(16, 16, 16) 18px, rgb(16, 16, 16) 27px, rgb(16, 16, 16) 27px, rgb(16, 16, 16) 36px);
}

.header-road-bg {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -1px;
    z-index: 2;
    height: 34px;
    pointer-events: none;
    overflow: hidden;
}

.road-car {
    position: absolute;
    bottom: 2px;
    width: 56px;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(rgba(0, 0, 0, 0.22) 0px 4px 7px);
    will-change: transform;
}

.car-ltr {
    left: -90px;
    animation-name: carMoveLtr;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.car-rtl {
    right: -90px;
    animation-name: carMoveRtl;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.car-1 {
    width: 52px;
    bottom: 3px;
    animation-duration: 11s;
    animation-delay: 0s;
}

.car-2 {
    width: 60px;
    bottom: 0px;
    animation-duration: 14s;
    animation-delay: 3s;
}

.car-3 {
    width: 48px;
    bottom: 5px;
    animation-duration: 17s;
    animation-delay: 6s;
}

.car-4 {
    width: 54px;
    bottom: 2px;
    animation-duration: 12s;
    animation-delay: 1.5s;
}

.car-5 {
    width: 62px;
    bottom: 0px;
    animation-duration: 16s;
    animation-delay: 5s;
}

.car-6 {
    width: 50px;
    bottom: 4px;
    animation-duration: 19s;
    animation-delay: 8s;
}

@keyframes carMoveLtr {
    0% {
        transform: translateX(-110px);
    }

    100% {
        transform: translateX(calc(140px + 100vw));
    }
}

@keyframes carMoveRtl {
    0% {
        transform: translateX(110px) scaleX(-1);
    }

    100% {
        transform: translateX(calc(-140px - 100vw)) scaleX(-1);
    }
}

.centred .sub-title {
    justify-content: center;
}

.fleet-terminal-section {
    position: relative;
    padding: 120px 0px 105px;
    overflow: hidden;
    background: rgb(1, 82, 133);
}

.fleet-terminal-section::before {
    position: absolute;
    content: "";
    inset: 0px;
    background: linear-gradient(135deg, rgba(126, 190, 53, 0.14), transparent 34%), radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.12), transparent 260px), radial-gradient(circle at 14% 86%, rgba(255, 91, 50, 0.16), transparent 300px);
}

.fleet-terminal-section::after {
    position: absolute;
    content: "";
    left: -5%;
    right: -5%;
    bottom: 40%;
    height: 115px;
    background: repeating-linear-gradient(318deg, rgba(34, 197, 94, 0.12) 0px, rgba(34, 197, 94, 0.12) 15px, transparent 15px, transparent 35px);
    transform: rotate(-2deg);
    opacity: 10.2;
}

.fleet-terminal-section .auto-container {
    position: relative;
    z-index: 2;
}

.fleet-terminal-section .sec-title h2, .fleet-terminal-section .sec-title p {
    color: rgb(255, 255, 255);
}

.fleet-terminal-section .sec-title p {
    opacity: 0.78;
}

.terminal-icon {
    position: absolute;
    font-size: 72px;
    color: rgba(255, 255, 255, 0.07);
    z-index: 1;
    animation: 6s ease-in-out 0s infinite normal none running fleetFloat;
}

.terminal-icon.icon-1 {
    left: 7%;
    top: 22%;
}

.terminal-icon.icon-2 {
    right: 8%;
    top: 19%;
    animation-delay: 1s;
}

.terminal-icon.icon-3 {
    left: 10%;
    bottom: 13%;
    animation-delay: 2s;
}

.terminal-icon.icon-4 {
    right: 12%;
    bottom: 15%;
    animation-delay: 3s;
}

@keyframes fleetFloat {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

.fleet-route-tabs{
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 tabs inline */
    gap: 18px;
    margin: 50px 0px 60px;
    padding: 18px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.fleet-tab-btn {
    position: relative;
    min-height: 178px;
    padding: 22px 18px 20px;
    border: 0px;
    border-radius: 26px;
    background: transparent;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    transition: 350ms;
}

.fleet-tab-btn::before {
    position: absolute;
    content: "";
    inset: 0px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    transition: 350ms;
}

.fleet-tab-btn::after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 12px;
    width: 42px;
    height: 5px;
    border-radius: 10px;
    background: rgb(126, 190, 53);
    transform: translateX(-50%) scaleX(0);
    transition: 350ms;
}

.fleet-tab-btn .tab-count {
    position: absolute;
    right: 18px;
    top: 16px;
    font-size: 42px;
    line-height: 42px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.12);
    z-index: 2;
}

.fleet-tab-btn .car-img {
    position: relative;
    z-index: 2;
    height: 92px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 18px;
}

.fleet-tab-btn .car-img img {
    max-width: 100%;
    height: 100%;
    filter: drop-shadow(rgba(0, 0, 0, 0.35) 0px 18px 14px);
    transition: 350ms;
}

.fleet-tab-btn .tab-info {
    position: relative;
    z-index: 2;
    display: block;
}

.fleet-tab-btn .tab-info strong {
    display: block;
    font-size: 20px;
    line-height: 28px;
    color: rgb(255, 255, 255);
    font-weight: 800;
}

.fleet-tab-btn .tab-info small {
    display: inline-block;
    margin-top: 7px;
    padding: 5px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
}

.fleet-tab-btn:hover, .fleet-tab-btn.active {
    transform: translateY(-10px);
}

.fleet-tab-btn:hover::before, .fleet-tab-btn.active::before {
    background: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.22) 0px 24px 70px;
}

.fleet-tab-btn:hover::after, .fleet-tab-btn.active::after {
    transform: translateX(-50%) scaleX(1);
}

.fleet-tab-btn:hover .tab-count, .fleet-tab-btn.active .tab-count {
    color: rgba(0, 92, 143, 0.14);
}

.fleet-tab-btn:hover .tab-info strong, .fleet-tab-btn.active .tab-info strong {
    color: rgb(0, 63, 99);
}

.fleet-tab-btn:hover .tab-info small, .fleet-tab-btn.active .tab-info small {
    background: rgba(126, 190, 53, 0.16);
    color: rgb(79, 120, 30);
}

.fleet-tab-btn:hover .car-img img, .fleet-tab-btn.active .car-img img {
    transform: translateY(-8px) scale(1.12);
}

.fleet-panel-title {
    max-width: 780px;
    margin: 0px auto 38px;
    text-align: center;
}

.fleet-panel-title span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 9px 28px;
    border-radius: 35px;
    background: rgb(255, 91, 50);
    color: rgb(255, 255, 255);
    font-size: 15px;
    line-height: 22px;
    font-weight: 800;
    text-transform: uppercase;
}

.fleet-panel-title h3 {
    color: rgb(255, 255, 255);
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 0px;
}

.fleet-tab-pane {
    display: none;
    animation: 450ms ease 0s 1 normal none running fleetShow;
}

.fleet-tab-pane.active {
    display: block;
}

@keyframes fleetShow {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.fleet-car-block {
    margin-bottom: 30px;
}

.fleet-car-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 30px 80px;
    transition: 350ms;
}

.fleet-car-card::before {
    position: absolute;
    content: "";
    left: 24px;
    right: 24px;
    top: 24px;
    height: 230px;
    border-radius: 26px;
}

.fleet-car-card::after {
    position: absolute;
    content: "";
    left: 42px;
    right: 42px;
    padding: 40px;
    bottom: 34%;
    border: 2px dashed rgba(0, 92, 143, 0.16);
}

.fleet-car-card figure {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 237px;
    margin: 0px;
    padding: 36px;
}

.fleet-car-card figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 450ms;
}

.fleet-car-card .car-info {
    position: relative;
    z-index: 2;
    padding: 24px 24px 28px;
    text-align: center;
    background: rgb(255, 255, 255);
}

.fleet-car-card .car-info h3 {
    color: rgb(0, 63, 99);
    font-size: 23px;
    line-height: 31px;
    margin-bottom: 6px;
}

.fleet-car-card .car-info p {
    margin-bottom: 0px;
    color: rgb(92, 102, 112);
}

.fleet-car-card:hover {
    transform: translateY(-10px);
}

.fleet-car-card:hover figure img {
    transform: scale(1.08);
}

@media only screen and (max-width: 991px) {
    .fleet-terminal-section {
        padding: 80px 0px 65px;
    }

    .fleet-route-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .fleet-route-tabs {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .fleet-panel-title h3 {
        font-size: 24px;
        line-height: 34px;
    }

    .fleet-car-card figure {
        height: 260px;
    }
}

@media only screen and (max-width: 1199px){
    .fleet-route-tabs{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 767px){
    .fleet-route-tabs{
        grid-template-columns: repeat(2, 1fr);
        padding: 12px;
    }
}

@media only screen and (max-width: 480px){
    .fleet-route-tabs{
        grid-template-columns: 1fr;
    }
}

.nice-select.wide .list {
    left: -52px !important;
    right: 0 !important;
}


/*==============================================================================
    BLOG DETAILS PAGE - FULL STYLESHEET (CLEANED)
==============================================================================*/

.blog-details-page {
    position: relative;
    padding: 100px 0px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.blog-details-page .container {
    max-width: 1320px;
}

/*========================================
    LEFT SIDEBAR (STRICT STICKY CONTROL)
========================================*/

.sticky-sidebar-wrapper {
    position: sticky !important;
    top: 130px; /* ફિક્સ હેડરની નીચે બરાબર ફિટ કરવા માટે */
    z-index: 99;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: max-content; /* સાઇડબારની હાઇટ કન્ટેન્ટ પૂરતી જ સીમિત રાખશે */
}

/*========================================
    SIDEBAR WIDGET
========================================*/

.sidebar-widget {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #e4e8ed;
    box-shadow: 0px 10px 35px rgba(0,0,0,0.05);
    overflow: hidden;
}

.sidebar-title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px dashed #d8dfe5;
}
.sidebar-title2 {
    position: relative;
    font-size: 29px;
    font-weight: 700;
    color: #015285;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px dashed #d8dfe5;
}

.contact-box-wrapper {
    position: relative;
    padding: 10px 0px;
}

/* આઈકોન માટે પ્રોફેશનલ રાઉન્ડ લુક અને શેડો */
.contact-icon-inner {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #ef6434;
    color: #ffffff;
    border-radius: 50%;
    font-size: 26px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 20px rgba(227, 30, 36, 0.2);
    transition: all 0.4s ease;
}

/* હોવર કરતા આઈકોન થોડો ઉપર જશે અને કલર ચેન્જ થશે */
.enquiry-widget .contact-box-wrapper:hover .contact-icon-inner {
    transform: translateY(-5px);
    background: #39b0e3;
    box-shadow: 0px 8px 20px rgba(31, 28, 33, 0.2);
}

.contact-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #1f1c21;
    margin-bottom: 12px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-links a {
    font-size: 20px;
    font-weight: 700;
    color: #015285;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* નંબર કે ઈમેલ પર માઉસ લઈ જતા પ્રીમિયમ બ્લેક કલર થશે */
.contact-links a:hover {
    color: #1f1c21;
}

/* લાંબા ઈમેલ આઈડી માટે ખાસ કંટ્રોલ (ડિઝાઇન પ્રોટેક્શન) */
.contact-links a.email-link {
    font-size: 15px; /* ઈમેલ લાંબો હોવાથી સાઈઝ બેલેન્સ કરી છે */
    font-weight: 600;
    letter-spacing: 0.3px;
    word-break: break-all; /* આનાથી મોબાઈલમાં અક્ષરો કપાશે નહીં અને નીચે ગોઠવાઈ જશે */
    background: #f4f7fa;
    padding: 10px 15px;
    border-radius: 12px;
    margin-top: 5px;
    border: 1px solid #e4e8ed;
}

.contact-links a.email-link:hover {
    background: #ef6434;
    color: #ffffff;
    border-color: #ef6434;
}

/* બંને સેક્શન વચ્ચેની પ્રીમિયમ ડૅશ્ડ લાઇન */
.contact-divider {
    height: 1px;
    border-top: 1px dashed #d8dfe5;
    margin: 25px 0;
    position: relative;
}
/*========================================
    PRODUCT LIST
========================================*/

.sidebar-product-list {
    margin: 0;
    padding: 0;
}

.sidebar-product-list li {
    list-style: none;
    margin-bottom: 12px;
}

.sidebar-product-list li:last-child {
    margin-bottom: 0;
}

.sidebar-product-list li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f4f7fa;
    padding: 16px 18px;
    border-radius: 14px;
    color: #222222;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s ease;
}

.sidebar-product-list li a i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #015285;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.4s ease;
}

.sidebar-product-list li a:hover {
    background: #ef6434;
    color: #ffffff;
    transform: translateX(8px);
}

.sidebar-product-list li a:hover i {
    background: #ffffff;
    color: #ef6434;
}

/*========================================
    MAIN CONTENT CARD
========================================*/

.blog-details-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #e5e9ef;
    box-shadow: 0px 10px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

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

.blog-details-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.5s ease;
    display: block;
}

.blog-details-card:hover .blog-details-img img {
    transform: scale(1.03);
}

.blog-details-title {
    font-size: 21px;
    /* line-height: 52px; */
    border-radius: 50px;
    padding: 15px;
    width: max-content;
    font-weight: 700;
    color: #015285;
    background-color: aliceblue;
    margin-bottom: 25px;
}

.blog-details-content p {
    font-size: 16px;
    line-height: normal;
    color: #5f6b76;
    margin-bottom: 20px;
    text-align: justify;
}

.blog-details-content p strong {
    color: #111111;
    font-weight: 600;
}

/*========================================
    ENQUIRY FORM
========================================*/

.enquiry-widget form {
    position: relative;
}
.enquiry-widget{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
.enquiry-widget::before{
    content: "";
    position: absolute;
    background: #000000b5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.mac-form-group {
    margin-bottom: 18px;
}

.mac-form-group input,
.mac-form-group textarea {
    width: 100%;
    border: 1px solid #dde3ea;
    border-radius: 14px;
    background: #f8fafc;
    padding: 15px 18px;
    font-size: 15px;
    color: #222222;
    transition: all 0.3s ease;
}

.mac-form-group textarea {
    min-height: 130px;
    resize: none;
}

.mac-form-group input:focus,
.mac-form-group textarea:focus {
    border-color: #e31e24;
    background: #ffffff;
    outline: none;
}

.mac-submit-btn {
    position: relative;
    width: 100%;
    border: none;
    border-radius: 14px;
    background: #e31e24;
    color: #ffffff;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.mac-submit-btn:hover {
    background: #111111;
    transform: translateY(-3px);
}

/*========================================
    ANIMATION
========================================*/

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.blog-details-card,
.sidebar-widget {
    animation: fadeInUp 0.8s ease forwards;
}

/*========================================
    RESPONSIVE (MEDIA QUERIES)
========================================*/

@media only screen and (max-width: 1199px) {
    .blog-details-title {
        font-size: 32px;
        line-height: 46px;
    }
    .sidebar-widget {
        padding: 25px;
    }
}

@media only screen and (max-width: 991px) {
    .blog-details-page {
        padding: 80px 0px;
    }
    /* નાના ડિવાઈસ પર સ્ટીકી બંધ કરી દેવું જરૂરી છે */
    .sticky-sidebar-wrapper {
        position: relative !important;
        top: 0;
        margin-top: 40px;
    }
    .blog-details-title {
        font-size: 28px;
        line-height: 42px;
    }
    .blog-details-card {
        padding: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-details-page {
        padding: 70px 0px;
    }
    .blog-details-card {
        padding: 20px;
        border-radius: 18px;
    }
    .sidebar-widget {
        padding: 22px 18px;
        border-radius: 18px;
    }
    .blog-details-title {
        font-size: 24px;
        line-height: 36px;
    }
    .blog-details-content p {
        font-size: 15px;
        line-height: 28px;
    }
    .sidebar-title {
        font-size: 22px;
    }
    .sidebar-title2 {
        font-size: 22px;
    }

    .sidebar-product-list li a {
        padding: 14px 15px;
        font-size: 14px;
    }
    .mac-submit-btn {
        padding: 14px 20px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-details-title {
        font-size: 22px;
        line-height: 34px;
    }
    .blog-details-img, 
    .blog-details-img img {
        border-radius: 14px;
    }
    .sidebar-product-list li a {
        gap: 10px;
    }
    .sidebar-product-list li a i {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 13px;
    }
}
.desktop-floating-buttons {
  position: fixed;
  left: 18px;
  bottom: 100px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
  transition: transform .3s ease, box-shadow .3s ease;
}

.float-call {
  background: #1e9bff;
}

.float-whatsapp {
  background: #20d366;
}

.float-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}

.sticky-contact-bar{
display:none;
position:fixed;
bottom:0;
left:0;
width:100%;
z-index:9999;
box-shadow:0 -4px 15px rgba(0,0,0,.15);
}


/* Sticky Buttons Design */
.call-btn{
width:80%;
background:#111111;
color:#fff;
text-decoration:none;
padding:18px 20px;
font-size:20px;
font-weight:600;
display:flex;
justify-content:center;
align-items:center;
gap:10px;
}

.whatsapp-btn{
width:20%;
background:#25D366;
color:#fff;
text-decoration:none;
display:flex;
justify-content:center;
align-items:center;
font-size:34px;
}

.call-btn:hover{
background:#000;
}

.whatsapp-btn:hover{
background:#1ebe5d;
}


/* -----------------------
Mobile View
------------------------*/
@media(max-width:768px){

/* Hide old floating buttons in mobile */
.desktop-floating-buttons{
display:none !important;
}

/* Show sticky footer in mobile */
.sticky-contact-bar{
display:flex !important;
}

.call-btn{
font-size:18px;
padding:15px;
}

.whatsapp-btn{
font-size:30px;
}

body{padding-bottom: 50px; /* bottom buttons overlap na kare */}

}

/* end to whatsapp and css fix css */


/* Pay Button */
/* Base Style */
.animated-btn {
  position: fixed;
  right: 20px;
  bottom: 15%;
  background: linear-gradient(45deg, #d9a800, #f2c52a);
  color: #000000;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  z-index: 1000;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  
  /* Animation */
  animation: pulse 2s infinite;
}

/* Hover Effect */
.animated-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(233 189 40);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 90, 95, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 95, 0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}