/*
Theme Name: Currumbin Valley Bus & Coach
Author: Five by Five
Version: 4.0
*/

:root {
    color-scheme: auto;
}

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #1C1E25;
    font-size: 16px;
    line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px;
    line-height: 1.25;
    font-family: 'Raleway', sans-serif;
}

h1 {
    font-size: 47px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

p {
    margin: 0 0 20px;
}

a {
    color: inherit;
    transition: background-color .3s ease, opacity .3s ease, color .3s ease;
}

a[role="button"] {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

select,
button,
textarea,
input {
    font-size: inherit;
    font-family: inherit;
}

.btn,
button,
input[type="submit"],
a {
    cursor: pointer;
}

.wrapper {
    width: 1420px;
    max-width: 100%;
    padding: 0 10px;
    margin: 0 auto;
}

.site-container {
    overflow-x: hidden;
}

/* Site Scrollbar */
::-webkit-scrollbar {
    width: 0.7rem;
}

::-webkit-scrollbar-track {
    border: none;
    background: #E0E1E4;
}

::-webkit-scrollbar-thumb {
    /* border: 2px solid #e5e5e5;
    border-radius: 10px; */
    background: #28A0EF;
}

::-webkit-scrollbar-thumb:hover {
    background: #0D1737;
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
        opacity: 0
    }

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

@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
        opacity: 0
    }

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

.fade-in-top {
    -webkit-animation: fade-in-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0
    }

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

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0
    }

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

.fade-in-bottom {
    -webkit-animation: fade-in-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
        opacity: 0
    }
}

@keyframes fade-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
        opacity: 0
    }
}

.fade-out-top {
    -webkit-animation: fade-out-top 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: fade-out-top 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes bAnimate {

    0%,
    100% {
        width: 100%;
    }

    50% {
        width: 50%;
    }
}


/* Shared styles for all button types */
.btn,
button,
.elementor-button,
.submit-btn-con input[type="submit"] {
    background-color: transparent !important;
    border: 1px solid transparent !important;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 16.5px 26px;
    line-height: 1;
    transition: background-color .3s ease, color .3s ease, border .3s ease;
    border-radius: 4px;
    position: relative;
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Shared styles for :before and :after pseudo-elements */
.btn:before,
button:before,
.elementor-button:before,
.btn:after,
button:after,
.elementor-button:after,
.submit-btn-con:before,
.submit-btn-con:after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease-in-out;
    content: '';
    z-index: -1;
    border-radius: 4px;
}

/* Default styles for the button */
.btn:before,
button:before,
.elementor-button:before,
.submit-btn-con:before {
    background: linear-gradient(135deg, #2591D7 -41.02%, #0D1737 67.08%);
    opacity: 1;
}

.btn:after,
button:after,
.elementor-button:after,
.submit-btn-con:after {
    background: linear-gradient(180deg, #51CEF8 0%, #28A0EF 100%);
    opacity: 0;
}

/* input submit styles */
.submit-btn-con {
    position: relative;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
}

.submit-btn-con:hover:before {
    opacity: 0;
}

.submit-btn-con:hover:after {
    opacity: 1;
}

/* Secondary button styles */
.secondary.btn:before,
.secondary button:before,
.secondary .elementor-button:before {
    background: linear-gradient(180deg, #51CEF8 0%, #28A0EF 100%);
}

.secondary.btn:after,
.secondary button:after,
.secondary .elementor-button:after {
    background: linear-gradient(135deg, #2591D7 -41.02%, #0D1737 67.08%);
}

/* Terrain button styles */
.terrain.btn,
.terrain button,
.terrain .elementor-button {
    color: #1c1e25;
}

.terrain.btn:before,
.terrain button:before,
.terrain .elementor-button:before {
    background: #fff;
}

/* Hover effects */
.btn:hover:before,
.elementor-button:hover:before,
.item-package:hover .elementor-button:before {
    opacity: 0;
}

.btn:hover:after,
button:hover:after,
.elementor-button:hover:after,
.item-package:hover .elementor-button:after {
    opacity: 1;
}

.btn:hover,
button:hover,
.elementor-button:hover .item-package:hover .elementor-button {
    color: #fff;
}


.gm-style button {
    border-radius: 0;
}

.btn,
.elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    min-height: 50px;
}

/* Header */
.elementor-location-header {
    background: transparent;
}

/* .header-stick .site-header, */
.header-stick.header-type2 .elementor-location-header,
.header-stick .elementor-location-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    animation: fade-in-top .3s cubic-bezier(.39, .575, .565, 1.000) both;
    box-shadow: 0 0 17px 0 rgb(0 0 0 / 5%);
}

/* .header-unstick .site-header, */
.header-unstick.header-type2 .elementor-location-header,
.header-unstick .elementor-location-header {
    animation: fade-out-top .2s cubic-bezier(.25, .46, .45, .94) both;
}

.header-type2 .site_header_con,
.header-type2 .elementor-location-header {
    position: absolute;
    width: 100%;
    z-index: 100;
}

.site_header_con {
    min-height: unset !important;
}

.header-type2 .site-header {
    background: none;
    color: #fff;
}

.header-type2.header-stick .elementor-location-header {
    background: transparent;
    color: inherit;
    box-shadow: none;
    overflow: visible;
}

.header-type2.header-stick .with-alt-logo .site-logo-main,
.header-type2 .with-alt-logo .site-logo-alt {
    display: none;
}

.header-type2.header-stick .with-alt-logo .site-logo-alt {
    display: inline-block;
}

/* Menu */
ul.menu {
    list-style: none;
    padding: 0;
}

div .elementor-nav-menu .sub-arrow {
    display: none;
}

.elementor-nav-menu .menu-item-has-children>a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.elementor-nav-menu .menu-item-has-children>a:after {
    content: '\e90b';
    font-family: 'icomoon';
    opacity: 1 !important;
    position: relative;
}

/* Search */
.ff-search {
    background: #f8f9fa;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    transition: transform .5s cubic-bezier(0.390, 0.575, 0.565, 1.000);
    will-change: transform;
    transform: translate3d(0, -100%, 0);
}

.show_search .ff-search {
    transform: translate3d(0, 0, 0);
}

.ff-search form {
    width: 730px;
    max-width: 100%;
    position: relative;
}

.ff-search .search-input {
    width: 100%;
    background: #fff;
    border: 1px solid #ACB5BD;
    height: 60px;
    border-radius: 60px;
    padding: 5px 25px 5px 25px;
}

.ff-search .submit {
    width: 150px;
    position: absolute;
    right: 5px;
    height: 50px;
    top: 5px;
    border-radius: 50px;
}

.ff-search .close {
    position: absolute;
    top: 20px;
    right: -30px;
    font-size: 25px;
    font-weight: 400;
    opacity: .6;
    cursor: pointer;
}

.ff-search .close:hover {
    opacity: 1;
}

/* Slide Menu */
.ff-slide-menu-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    z-index: 100;
    pointer-events: none;
    display: none;
}

.show_slide_menu .ff-slide-menu-mask {
    display: block;
    pointer-events: auto;
    animation: fadeIn 1s;
}

.ff-slide-menu {
    width: 100%;
    max-width: 420px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: linear-gradient(336deg, #0D1737 15.32%, #2591D7 199.8%), var(--Font-White, #FFF);
    z-index: 110;
    transition: transform .6s cubic-bezier(0.390, 0.575, 0.565, 1.000);
    transition-delay: .1s;
    transform: translate3d(100%, 0, 0);
    will-change: transform;
    padding: 20px 30px;
    overflow: auto;
    color: #fff;
}

.show_slide_menu .ff-slide-menu {
    transform: translate3d(0, 0, 0);
}

/* .show_slide_menu .site-container {
    transform: translate3d(-100px, 0, 0);
} */
body.show_slide_menu {
    overflow: hidden;
}

.ff-slide-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
}

.ff-slide-menu-close {
    cursor: pointer;
    font-size: 30px;
    position: absolute;
    right: 20px;
    top: 35px;
}

.ff-slide-menu-close:hover {
    opacity: .8;
}

.ff-slide-menu-trigger {
    background: none;
    border: none;
    padding: 0;
    width: 37px;
    height: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
}

.ff-slide-menu-trigger span {
    height: 2px;
    width: 100%;
    background: #1C1E25;
}

.ff-slide-menu-trigger:hover {
    background: none;
}

.ff-slide-menu-trigger .l1 {
    width: 50%;
    transition: width .5s ease;
    will-change: width;
}

.ff-slide-menu-trigger:hover .l1 {
    width: 100%;
}

.ff-slide-menu .sub-menu {
    /* overflow: hidden;
    transition: all .5s ease;
    height: 0;
    display: flex; */
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.2;
    padding: 0;
}

/* .ff-slide-menu .show-sub .sub-menu {
    height: initial;
    padding-bottom: 12px;
    animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
} */

.ff-slide-menu .menu-item-has-children>a {
    position: relative;
    display: inline-block;
    width: 100%;
}

.ff-slide-menu .menu-item-has-children>a:after {
    content: '\e92f';
    font-family: 'icomoon';
    transition: transform .5s ease;
    display: inline-block;
    margin-left: 14px;
    position: absolute;
    font-size: 9px;
    top: 5px;
    line-height: 1;
    right: 0;
    transition: all 0.3s ease;
}

.ff-slide-menu .menu-item-has-children>a.toggle_switch {
    color: #28a0ef;
}

.ff-slide-menu .menu-item-has-children>a.toggle_switch:after {
    transform: rotate(210deg);
}

.ff-slide-menu .toggle_height_el_con {
    transition: height 500ms ease;
}

.ff-slide-menu .menu-item {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.ff-slide-menu .sm-normal-weight a {
    font-weight: 400;
}

.ff-slide-menu .menu-item a {
    text-decoration: none;
    line-height: 1.75;
}

.ff-slide-menu .menu-item a:hover {
    text-decoration: underline;
}

.ff-slide-menu .menu-item-has-children ul a {
    font-weight: 400;
}

.ff-slide-menu .sm-mb {
    margin-bottom: 15px;
}

.ff-slide-menu .menu-item.no-link a:hover {
    cursor: default;
    text-decoration: none;
}

.ff-slide-menu .menu-item .child-sub-item{
    margin-left: 15px;
    list-style: none;
}

/* Swiper / Carousel */
.swiper-slide {
    width: auto;
}

.transition-linear {
    transition-timing-function: linear;
}

.swiper-pagination-bullet {
    font-size: 0;
    line-height: 1;
    width: 11px;
    height: 11px;
    display: inline-block;
    border-radius: 50%;
    background: transparent;
    border: 1px #192651 solid;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #192651;
}

.swiper-pagination.numeric .swiper-pagination-bullet {
    font-size: 15px;
    font-weight: bold;
    color: #192651;
    letter-spacing: 1px;
    width: 40px;
    height: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    background: transparent;
    border: 0px;
    border-right: 2px #192651 solid;
    margin: 0;
}

.swiper-pagination.numeric .swiper-pagination-bullet:last-of-type {
    border-right: 0px;
}

.swiper-pagination.numeric .swiper-pagination-bullet-active {
    background: transparent;
    color: #192651;
}

/* Toggle Height */
.toggle_height_el_con {
    height: 0;
    overflow: hidden;
    transition: height 600ms ease;
}

/* Others */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.NOIntersectionObserver .elementor-invisible {
    visibility: visible;
}

body.admin-bar .dialog-lightbox-widget {
    min-height: 100vh;
}

body:not(.elementor-editor-active) .defer-bg-image div,
body:not(.elementor-editor-active) .defer-bg-image section,
body:not(.elementor-editor-active) .defer-bg-image {
    background-image: none !important;
}

.section-with-border-top:before,
.section-with-border-bottom:before {
    content: '';
    position: absolute;
    width: 1400px;
    max-width: 100%;
    left: 50%;
    translate: -50%;
    height: 2px;
    background: #eff0f1;
}

.section-with-border-bottom:before {
    top: initial;
    bottom: 0;
}

.section-with-border-top:before {
    bottom: initial;
    top: 0;
}

.elementor-video-wrapper iframe {
    height: 100%;
}

.flex {
    display: flex;
}

.items-no-shrink .item {
    flex-shrink: 0;
}

.color-white {
    color: #fff;
}

.hide {
    display: none !important;
}

.text-center {
    text-align: center;
}

.lh-0 {
    line-height: 0;
}

.lh-1 {
    line-height: 1;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.limit-lines-4,
.limit-lines-3,
.limit-lines-2,
.limit-lines {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.limit-lines-2 {
    -webkit-line-clamp: 2;
}

.limit-lines-3 {
    -webkit-line-clamp: 3;
}

.limit-lines-4 {
    -webkit-line-clamp: 4;
}

.fa-twitter:before {
    content: '\e935' !important;
    font-family: 'icomoon' !important;
    font-weight: 400 !important;
}

.excerpt.limit-lines-3 {
    min-height: 84px;
}

/* fonts */

.font-open-sans {
    font-family: 'Open Sans', sans-serif;
}

.font-raleway {
    font-family: 'Raleway', sans-serif;
}

.elementor-widget-text-editor p:last-child {
    margin-bottom: 0;
}

/* Custom-scrollbar */
.custom-scrollbar,
.custom-scrollbar.elementor-widget {
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
    backface-visibility: hidden;
    /* transform: translateY(0px); */
}

.custom-scrollbar::-webkit-scrollbar,
.custom-scrollbar.elementor-widget::-webkit-scrollbar {
    width: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track,
.custom-scrollbar.elementor-widget::-webkit-scrollbar-track {
    -webkit-border-radius: 1.250em;
    border-radius: 1.250em;
    border: none;
    background-color: #E0E1E4;
    /* box-shadow: inset 0 0 6px rgba(0,0,0,0.2); */
}

.custom-scrollbar::-webkit-scrollbar-thumb,
.custom-scrollbar.elementor-widget::-webkit-scrollbar-thumb {
    -webkit-border-radius: 1.250em;
    border-radius: 1.250em;
    background-color: #28A0EF;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover,
.custom-scrollbar.elementor-widget::-webkit-scrollbar-thumb:hover {
    background-color: #E0E1E4;
}

.custom-scrollbar.style-white::-webkit-scrollbar-track,
.custom-scrollbar.style-white.elementor-widget::-webkit-scrollbar-track {
    background-color: #ffffff50;
}

.custom-scrollbar.style-white::-webkit-scrollbar-thumb,
.custom-scrollbar.style-white.elementor-widget::-webkit-scrollbar-thumb {
    background-color: #fff;
}

.custom-scrollbar.style-white::-webkit-scrollbar-thumb:hover,
.custom-scrollbar.style-white.elementor-widget::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
}

.d-none,
.hidden,
.ff-slide-menu-trigger:before,
.ff-slide-menu-trigger:after {
    display: none;
}

/*  Item Post  */
.news-swiper .col {
    overflow: hidden;
    border-radius: 8px;
    padding: 5px;
}

.item-post,
.item-package {
    border: 0;
    border-radius: 8px 8px 0px 0px;
    background-color: #fff;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.12);
    max-width: 440px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.item-post:before {
    content: '';
    background-image: linear-gradient(135deg, #2591D7 0%, #2591D7 100%);
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 1s ease-in-out
}

.item-post:hover:before {
    background-image: linear-gradient(135deg, #2591D7 0%, #0D1737 100%);
    animation: bAnimate 1s 1 alternate;
}

.item-post .s1,
.item-package .s1 {
    overflow: hidden;
    height: 250px;
    position: relative;
}

.item-post .s1 img,
.item-package .s1 img {
    height: 260px;
    object-fit: cover;
    transition: transform .7s ease;
    will-change: scale;
}

.item-post:hover .img-con img,
.item-package:hover img {
    transform: scale(1.03);
}

.item-post .s2 {
    padding: 20px 20px 15px 20px;
    min-height: 200px;
}

.item-post .categories {
    background: #28A0EF;
    font-size: 13px;
    font-weight: 700;
    line-height: 1rem;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1
}

.item-post .categories:empty {
    padding: 0
}

.item-post .title,
.item-package .title div {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 70px;
    margin-bottom: 15px;
    font-family: Raleway;
}

.item-post .link-container {
    margin-top: 15px;
}

.item-post .more-link {
    color: #28A0EF;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.item-post:hover .more-link {
    color: #192651;
}

/* package item styles */

.item-package .text-listing {
    padding: 20px;
    border: 1px solid #F8F9FA;
    background: #F8F9FA;
}

.item-package .title {
    padding: 20px 20px 0;
}

.item-package .s2 .elementor-button {
    width: 100%;
    margin: 0;
    font-size: 15px;
}

.item-package .s2 .elementor-button,
.item-package .s2 .elementor-button:before,
.item-package .s2 .elementor-button:after {
    border-radius: 0 0 4px 4px;
    border: 0 !important;
}

.item-package {
    border-radius: 8px;
}

.item-package .image-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    pointer-events: none;
}

.item-package .image-tag .elementor-button {
    font-size: 28px;
    font-family: 'Raleway';
    font-weight: 700;
    padding: 0 12px;
}

.item-package .listing-items,
.item-fleet .listing-items {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
}

.item-package .listing-item,
.item-fleet .listing-item {
    width: calc(50% - 20px);
}

.item-package .listing-heading,
.item-fleet .listing-heading {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.86;
    font-size: 15px;
}

.item-package .listing-details {
    opacity: 0.5;
}

/* fleet item styles */

.item-fleet {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.item-fleet .image {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.item-fleet .s2 {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 160px 40px 40px;
}

.item-fleet a>* {
    pointer-events: none;
}

.item-fleet .s2 {
    pointer-events: auto;
}

.item-fleet img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.item-fleet .elementor-button:hover {
    color: #fff;
}

.item-fleet:before,
.item-fleet:after {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
    position: absolute;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 0.3s ease-in-out;
}

.item-fleet:after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%);
    opacity: 0;
}

.item-fleet .title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.33;
    margin-bottom: 10px;
    transform: translateY(260px);
    transition: transform 0.5s ease-in-out;
    font-family: 'Raleway';
}

.item-fleet .text-listing .limit-lines-3 {
    height: 85px;
    margin-bottom: 30px;
}

.item-fleet .s2:before {
    content: '\e922';
    font-family: 'icomoon';
    color: #192651;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 32px;
    right: 40px;
    border-radius: 5px;
    z-index: 4;
    font-size: 24px;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.item-fleet:hover .title {
    transform: none;
}

.item-fleet .text-listing,
.item-fleet .elementor-button {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.item-fleet:hover:before,
.item-fleet:hover .s2:before {
    opacity: 0;
}

.item-fleet:hover:after,
.item-fleet:hover .text-listing,
.item-fleet:hover .elementor-button {
    opacity: 1;
}

/* other styles */

.ff-form-steps.last-step .custom-submit-btn {
    min-width: 160px;
}

/*  Elementor Accordion Override  */
.e-n-accordion-item-title {
    transition: border .5s ease;
}

.e-n-accordion-item-title[aria-expanded="true"] {
    border-color: transparent !important;
}

@media (min-width: 1024px) {

    .desktop-menu .main-menu-hidden,
    .ff-slide-menu .mm-hidden-desktop {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .item-fleet .title {
        transform: none;
    }


    .item-fleet:before,
    .item-fleet .s2:before {
        opacity: 0;
    }

    .item-fleet:after,
    .item-fleet .text-listing,
    .item-fleet .elementor-button {
        opacity: 1;
    }

    .item-fleet .s2 {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 140px 10px 20px;
    }

    .item-fleet .listing-details {
        opacity: 0.5;
    }
}

@media(max-width:1023px) {
    .tablet-ml-auto {
        margin-left: auto;
    }

    .tablet-mr-auto {
        margin-right: auto;
    }

    .tablet-mx-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .tablet-text-center {
        text-align: center;
    }

    .tablet-cols-fullwidth.e-con>.e-con-inner {
        flex-wrap: wrap;
    }

    .tablet-cols-fullwidth.e-con>.e-con-inner>.e-con {
        width: 100%;
    }

    /*  Item Post  */
    .item-post .title {
        font-size: 20px;
        height: 60px;
    }

}

@media(max-width:767px) {
    .mobile-ml-auto {
        margin-left: auto;
    }

    .mobile-mr-auto {
        margin-right: auto;
    }

    .mobile-mx-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-text-center {
        text-align: center;
    }

    .ff-slide-menu-trigger {
        width: 30px;
        height: 25px;
        gap: 7px;
    }

    .ff-slide-menu {
        max-width: 300px;
        padding: 20px 15px;
    }
    .ff-slide-menu .sm-mb {
        margin-bottom: 10px;
    }

    

}
@media (max-width:768px) {
    .col2 .e-con-inner {
        display: flex;
     flex-direction: column-reverse!important;
    }
    .col2-inner {
        width:100%;
    }
    .col1 .e-con-inner {
        display: flex;
     flex-direction: column!important;
    }
 }

/*  Fix for Elementor Template Visibility  */
.elementor-editor-active .elementor-template .elementor-invisible {
    visibility: visible;
}

/* @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    
} */

/*Custom Link Container*/
.custom_link-item{
    position: relative;
    overflow: hidden;
}
.custom_link-container {
    display: flex;
    gap: 20px 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
    align-items: baseline;
}
.custom_link-container img{
    max-height: 400px;
    height: initial;
    max-width: 400px;
    width: 100%;
    object-fit: contain;
}
.sold_out-tag:before {
    content: 'Sold Out';
    position: absolute;
    left: 0;
    top: -50px;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 9;
    color: #fff;
    transform: rotate(-42deg);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    text-shadow: 2px 2px #1e1c1c;
}
.team-overview .sold_out-tag:before{
    top: 0;
    font-size: 42px;
}
.sold_out-tag img{
    filter: brightness(0.5)
}
.sold_out-tag .image-tag{
    display: none;
}
.custom_link-container p{
    text-align: center;
}
.custom_link-container .sold_out {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100;
    height: initial;
    max-height: 350px;
    background: #0000008c;
}
.custom_link-container .sold_out p{
    transform: rotate(-42deg);
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
@media (max-width: 767px){
    .custom_link-container { 
        margin-top: 20px;
        gap: 0;
    }
}

@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fadeIn{animation:fadeIn 0.6s ease-in-out}@keyframes fadeInDown{from{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}.fadeInDown{animation:fadeInDown 0.6s ease-in-out}@keyframes fadeInUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.fadeInUp{animation:fadeInUp 0.6s ease-in-out}@keyframes fadeInLeft{from{opacity:0;transform:translateX(-20px)}to{opacity:1;transform:translateX(0)}}.fadeInLeft{animation:fadeInLeft 0.6s ease-in-out}@keyframes fadeInRight{from{opacity:0;transform:translateX(20px)}to{opacity:1;transform:translateX(0)}}.fadeInRight{animation:fadeInRight 0.6s ease-in-out}