@media screen and (min-width: 1921px) {
    body.compensate-for-scrollbar {
        margin-right: auto !important;
    }
}

/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {
    .rwdPanel {
        display: none;
    }

    .rwdPanel-action-open,
    .rwdPanel-action-toggle {
        display: none !important;
    }
}

@media screen and (max-width: 1139px) {
    header .login-form {
        display: none;
    }

    .rwdPanel {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        /* Closed: */
        pointer-events: none;
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
    }

    header.stickable .rwdPanel {
        z-index: -1;
    }

    .rwdPanel.active {
        pointer-events: all;
        transform: none;
        -webkit-transform: none;
        -ms-transform: none;
    }

    .rwdPanel-scrollLock body {
        position: fixed;
        width: 100%;
        overflow-y: scroll;
    }
}

/**
 * RWD MENU
 */

.rwdMenu {
    font-size: 1rem;
}

.rwdMenu ul {
    display: block;
    width: 100%;
    padding: 0;
}

.rwdMenu:not(:first-child) > ul {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu + .rwdMenu > ul {
    border-top: none;
}

.rwdMenu ul ul {
    display: none;
    box-shadow: inset 0 3px 5px -1px rgba(0, 0, 0, 0.12);
    background-color: rgba(0, 0, 0, 0.1);
}

.rwdMenu li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu li.slided {
    border-bottom: none;
}

.rwdMenu a {
    color: inherit;
}

.rwdMenu li > *:first-child {
    flex: 1 0 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 46px;
    padding: 5px var(--container-padding);
    text-align: left;
    word-break: break-word;
    color: #000;
    border: none;
}

.rwdMenu li > *:first-child:hover {
    text-decoration: none;
}

.rwdMenu li.active > *:first-child {
    font-weight: 700;
    color: var(--color-primary);
}

.rwdMenu > ul > li > *:first-child {
    text-transform: uppercase;
}

.rwdMenu > ul > li > ul {
    font-size: 0.875rem;
}

.rwdMenu > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 15px);
}

.rwdMenu > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 30px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 45px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 60px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 75px);
}

.rwdMenu li > *:first-child > .fa,
.rwdMenu li > *:first-child > .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -9px 6px -9px -9px;
}

.rwdMenu li > *:first-child > .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.rwdMenu li > *:first-child > .caption {
    flex: 1 0 0;
}

.rwdMenu li > *:first-child > .caption * {
    display: inline-block;
}

.rwdMenu li > *:first-child > .caption ~ * {
    margin-left: 10px;
}

.rwdMenu .rwdMenu-count {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    text-align: center;
    font-size: 14px;
    color: #000;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.rwdMenu .user-nav li + li:before {
    display: none;
}

.cloneMenu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.06);
}

.cloneMenu-toggle::before {
    content: "\f107";
    display: block;
    font-family: 'FontAwesome', sans-serif;
    transition: all 0.3s;
}

.cloneMenu-toggle.active::before {
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.rwdPanel .social-list {
    margin: 15px 0;
    text-align: center;
}

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 15px 15px 15px 0;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.4s;
    border-radius: 6px;
}

.rwdButton .animIcon {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    width: auto;
}

.rwdButton > * {
    transition: all 0.5s;
}

.rwdButton.rwdPanel-action-toggle.active {
    color: #fff;
    background-color: #f00;
}

.rwdButton .animIcon--close span {
    background-color: #fff;
}

.rwdButton:not(.active) > .animIcon--close {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
}

.rwdButton.active > .animIcon--close {
    opacity: 1;
}

.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
}

/* --------------- BREAKPOINTS --------------- */
@media screen and (max-width: 1720px) {
    .trip-box-difficulty {
        gap: 5px;
    }
    .icons-grid{
        gap: var(--space-60);
    }
    #content {
        padding-top: calc(114px + (var(--space-25) * 2));
    }

    .trip-box-content {
        padding: 0;
    }

    .trip-box-thumb {
        align-self: center;
    }

    .trip-box-price {
        margin-right: 15px;
    }

    .trip-box-difficulty .icon {
        width: 20px;
        height: 18px;
    }

    .trip-box-top {
        gap: 20px;
        flex-grow: 1;
    }

    #main-menu ul {
        margin: 0 calc(var(--space-40) * -1);
    }

    #main-menu li a {
        padding: 15px var(--space-40);
    }
}

@media screen and (max-width: 1600px) {
    .price {
        font-size: 16px;
    }

    .rental-box .trip-box-inner {
        padding: 20px;
    }

    .numbers-list {
        margin: calc(var(--space-25) * -1) calc(var(--space-50) * -1);
    }

    .numbers-box {
        padding: var(--space-25) var(--space-50);
    }

    .footer-contact li a {
        gap: 15px;
        font-size: 18px;
    }

    .header-center, .header-contact {
        gap: 10px;
    }

    .trip-box-difficulty {
        padding: 10px;
        gap: 2px;
        font-size: 11px;
    }

    .trip-box-difficulty .icon {
        width: 18px;
    }

    .trip-box-transport {
        gap: 5px;
    }

    .trip-box-transport ul {
        gap: 5px;
    }

    .trip-box-bottom .btn-lg {
        min-width: unset;
        padding: 5px 15px;
    }
}

@media screen and (max-width: 1440px) {
    .trip-box-top .icon-wrapper {
        margin-right: 10px;
    }
    .mainSlider-section .floating-circles .floating-circle{
        right: 50vw !important;
    }
    .mainSlider-section .floating-circles .floating-circle:nth-child(4){
        left: 30%;
    }
    .social-icon {
        width: 50px;
        height: 50px;
    }

    #content {
        padding-top: calc(99px + (var(--space-25) * 2));
    }

    #main-menu ul {
        margin: 0 calc(var(--space-25) * -1);
    }

    #main-menu li a {
        padding: 15px var(--space-25);
    }

    .header-right .btn-reserve:not(:last-child) {
        margin-right: 0;
    }

    .logo {
        width: 220px;
    }

    .track-box {
        padding: 5px;
    }

    .trip-box-thumb img {
        border-radius: 15px;
    }

    .trip-box-thumb {
        aspect-ratio: unset;
        border-radius: 0;
    }

    .trip-box-top {
        gap: 10px;

        padding-bottom: 10px;
    }

    .rent-price {
        padding-right: 15px;
        line-height: 30px;
        gap: 5px;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .trip-box-difficulty {
        padding: 0 5px;
        margin-top: 15px;
        position: static;
    }

    .rental-box .trip-box-bottom {
        padding-top: 20px;
    }

    .trip-box-bottom {
        padding-top: 10px;
    }

    .trip-box-transport {
        gap: 0;
        font-size: 15px;
        align-items: flex-start;
        margin-right: 10px;
        flex-direction: column;
    }

    .price {
        font-size: 15px;
    }

    .trips-list {
        margin: -5px;
    }

    .trip-box {
        padding: 5px;
    }

    .trip-box-inner {
        padding: 10px;
    }

    .trip-box-transport ul li {
        width: 40px;
        height: 40px;
    }

    .trip-box-transport ul li svg {
        max-width: 20px;
        max-height: 20px;
    }

    .tracks-list {
        margin: -5px;
    }
}

@media screen and (max-width: 1280px) {
    .rental-box .trip-box-top {
        flex-direction: column;
    }
    .icons-grid{
        gap: var(--space-25) var(--space-40);
    }
    .rental-box .trip-box-inner .trip-box-thumb {
        width: 100%;
        aspect-ratio: 1.17370892;
        max-width: 250px;
    }

    .track-box-content {
        padding: var(--space-25) 15px;
    }

    .numbers-list {
        margin: -15px;
    }

    .numbers-box {
        padding: 15px;
    }

    .footer-col {
        width: 25.667%;
    }

    .icon-wrapper {
        width: 38px;
        height: 38px;
    }

    .footer-contact li a {
        font-size: 16px;
    }

    .logo-col.footer-col {
        width: 23%;
    }

    #content {
        padding-top: calc(94px + (var(--space-25) * 2));
    }

    #main-menu li a {
        font-size: 14px;
    }

    .header-center {
        font-size: 14px;
    }

    header .btn-square {
        width: 40px;
        height: 40px;
    }

    .header-right .btn-md {
        min-height: 40px;
        min-width: unset;
        padding: 5px 10px;
        font-weight: 600;
        gap: 10px;
        font-size: 14px;
    }

    .header-right {
        gap: 5px;
    }

    .trip-box-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .trip-box-difficulty {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .trip-box-destination {
        font-size: 13px;
    }

    .trip-box-text.text {
        font-size: 13px;
    }

    .page-header .section-teaser {
        font-size: 19px;
    }
}

@media screen and (min-width: 1140px) {
    .mainsearch {
        top: 0 !important;
    }

    .footer-content {
        display: block !important;
    }
}

@media screen and (max-width: 1139px) {
    .grid-row {
        gap: 15px;
    }
    .mainSlider-section .floating-circles{
        display: none;
    }
    .icon-grid-icon{
        width: 70px;
        height: 70px;
    }
    .icon-teaser.text{
        font-size: 14px;
    }
    .box-icon{
        width: 90px;
        height: 90px;
    }
    .aboutUs-inner {
        flex-direction: column-reverse;
    }

    .aboutUs-content {
        width: 100%;
    }

    .aboutUs-img {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
        width: 100%;
    }

    .contact-info li, .contact-address {
        font-size: 16px;
    }

    .footer-top {
        padding-bottom: 0;
    }

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

    .numbers-title {
        font-size: 20px;
    }

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

    .footer-bar-left {
        margin-top: var(--space-25);
    }

    .footer-mask {
        display: none;
    }

    footer .social-list .caption {
        color: #fff;
    }

    .footer-bar-content {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    footer .social-list .caption {
        font-size: var(--font-24);
        font-weight: 600;
    }

    footer .social-list {
        flex-direction: column;
        align-items: center;
        margin-bottom: var(--space-60);
        justify-content: center;

    }

    .footer-title {
        position: relative;
        font-size: 18px;
    }

    .footer-title:not(.no-toggle).active:after {
        transform: translateY(-50%) scaleY(-1);
    }

    .footer-title:not(.no-toggle) {
        cursor: pointer;
    }

    .footer-content:not(.no-toggle) {
        display: none;
    }


    .footer-title:not(.no-toggle):after {
        transition: transform, 500ms;
        position: absolute;
        right: var(--container-padding);
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        color: #fff;
        width: 10px;
        -webkit-mask-size: contain;
        -mask-size: contain;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        background-color: currentColor;
        -webkit-mask-image: url('../images/icons/arrow-right.svg');
        mask-image: url('../images/icons/arrow-right.svg');
        height: 10px;
        content: "";
    }

    .footer-title {
        position: relative;
    }

    .footer-title:not(.no-toggle).active:after {
        transform: translateY(-50%) rotate(90deg) scale(-1);
    }

    #content {
        padding-top: calc(43px + (var(--space-25) * 2));
    }

    .footer-content {
        display: none;
    }

    .footer-cols {
        flex-direction: column;
    }

    .footer-logo {
        margin-bottom: var(--space-40);
        max-width: 300px;
    }

    .footer-title {
        width: 100%;
        cursor: pointer;
        border-bottom: 1px solid #fff;
        padding-bottom: 15px;
    }

    .footer-col {
        padding: 0 !important;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100% !important;
    }

    .logo-col {
        order: -1;
    }

    .trip-box-top {
        flex-direction: column;
    }

    .rwdPanel {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    header .icon-phone, header .icon-pin {
        width: 16px;
        height: 16px;
    }

    .rwdPanel-bottom {
        display: flex;
        font-size: 13px;
        flex-direction: column;
        align-items: center;
        padding: 0 var(--container-padding);
        justify-content: center;
        margin-top: var(--space-25);
    }

    .header-address {
        justify-content: center;
        margin-top: var(--space-25);
    }

    .header-contact {
        justify-content: center;
        margin-top: var(--space-25);
        flex-wrap: wrap;
    }

    .header-bottom {
        display: none;
    }

    .header-center {
        display: none;
    }

    .trip-destination .icon-wrapper {
        width: 26px;
        height: 26px;
    }

    .trip-destination .icon-wrapper .icon {
        width: 11px;
        height: 11px;
    }

    .trip-view-bananer .trip-destination {
        font-size: 15px;
    }

    .trip-box-thumb {
        width: 100%;
        max-width: 320px;
    }

    .trip-box-difficulty {
        flex-direction: row;
    }

    .trips-list {
        margin: -10px;
    }

    .trip-box-inner {
        padding: 20px;
    }

    .trip-box {
        padding: 10px;
    }

    .trip-box-text {
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }

    .page-header .section-teaser {
        font-size: 18px;
    }

    .trip-box-bottom .btn-lg .icon {
        margin: unset;
        width: 8px;
        height: 11px;
    }

    .trip-box-bottom .btn-lg {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: unset;
        padding: 0;
    }

    .trip-box-bottom .btn-lg .caption {
        display: none;
    }

    .text table tr td {
        padding: 6px 10px;
    }

    .track-box-text {
        font-size: 14px;
    }

    .track-label {
        font-size: 13px;
    }

    #main-menu {
        display: none;
    }

    .langs-menu {
        display: none !important;
    }

    .rwd-hide {
        display: none;
    }

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

    .container {
        width: 100%;
    }

    .article-image {
        margin-right: 25px;
        margin-bottom: 15px;
    }

    .lang .langs-menu-short {
        display: none;
    }

    .lang .langs-menu-long {
        display: block;
    }

    .mainsearch.rwdPanel .mainsearch-search {
        background-color: #f0f;
    }

    .mainsearch.rwdPanel .dropdown-menu {
        position: static !important;
        width: 100%;
        box-shadow: none;
    }

    .mainsearch.rwdPanel .mainsearch-search,
    .mainsearch.rwdPanel .dropdown-menu {
        padding: 15px;
    }

    .mainsearch.rwdPanel .dropdown-menu .dropdown-search-li.all-search-results {
        margin-top: 15px;
    }

    .mainsearch.rwdPanel .form-element-container {
        width: calc(100% - 46px);
        flex-grow: 0;
    }

    .mainsearch.rwdPanel .mainsearch-submit {
        height: 46px;
    }

    .mainsearch.rwdPanel input,
    .mainsearch.rwdPanel .mainsearch-submit {
        border: none;
    }
}

@media screen and (max-width: 1000px) {
    .rental-price-section {
        width: 60%;
    }
    .mainSlider-nav-wrapper{
        bottom: 50px;
    }
    .icons-grid {
        grid-template-columns: 1fr 1fr;
    }
    .grid-row-left{
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    .grid-row{
        flex-direction: column !important
    }
    .trip-box-bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }

    .rental-box .trip-box-bottom {
        flex-direction: row;
    }

    .trip-box-transport {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-right: unset;
    }

    .trip-box-bottom-right {
        margin-left: unset;
    }
}

@media screen and (max-width: 900px) {
    .faq-item-btn-arrow {
        width: 40px;
        height: 40px;
    }

    .contact-bottom {
        flex-direction: column;
    }
    .box-inner{
        padding: var(--space-25);
    }
    .aboutUs-map{
        display: none;
    }
    .boxes-list{
        margin: -5px;
    }
    .boxes-box{
        padding: 5px;
    }

    .contact-form-wrapper, .contact-map-wrapper {
        width: 100%;
    }

    .footer-bar {
        text-align: center;
        padding: 13px 0;
        line-height: normal;
    }

    .decorative-title {
        font-size: calc(var(--font-60) * 2);
    }

    .numbers-box {
        width: 50%;
    }

    .footer-bar-links:has(li) + .copyright:before {
        content: unset;
    }

    .trip-view-content {
        flex-direction: column;
    }

    * + .copyright-undicom {
        margin-left: 0;
    }

    .trip-controls-bottom {
        justify-content: center;
    }

    .trip-controls-top {
        display: flex;
        text-align: left;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        flex-grow: 1;
    }

    .trip-view-controls-box {
        position: static;
        display: flex;
    }

    .trip-view-left, .trip-view-right {
        width: 100%;
    }

    .page-header .section-teaser {
        font-size: 16px;
    }

    .track-box {
        width: 50%;
    }

    .footer-bar-content > * {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .footer-bar-content.footer-bar-content > * {
        margin-left: 15px;
        margin-right: 15px;
    }

    .footer-bar .footer-bar-links {
        display: block;
        margin: -3px -8px;
    }

    .footer-bar .footer-bar-links:not(:last-child) {
        margin-bottom: 3px;
    }

    .footer-bar-links > li {
        margin: 3px 8px;
        line-height: 20px;
    }

    .copyright,
    .copyright-undicom {
        margin-top: 4px;
        margin-bottom: 4px;
        line-height: 20px;
    }

    .rental-dialog-inputs .form-elements-wrapper .form-element {
        width: 33.333%;
    }
    .rental-dialog-container .form{
        min-width: unset;
    }
}

@media screen and (max-width: 767px) {
    .contact-top {
        flex-direction: column;
        align-items: center;
    }
    .boxes-box{
        width: 100%;
    }

    .contact-left, .contact-right {
        width: 100%;
    }

    .period-picker-input-wrapper .form-control {
        text-align: center;
    }

    .rental-dialog-sides {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .period-picker-input-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .period-picker-input-wrapper .date-range-wrapper {
        justify-content: center;
        text-align: center;
    }

    .date-caption {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .rental-price-section {
        width: 100%;
    }

    .accessories-wrapper {
        max-width: unset !important;
    }

    .rental-dialog-side {
        padding: 0 !important;
        width: 100% !important;
    }

    .rental-box .trip-box-bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }

    .rental-box .trip-box-bottom .btn-lg {
        width: unset;
        padding: 5px 15px;
    }

    .rental-box .trip-box-bottom .btn-lg .caption {
        display: block;
    }

    .text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }

    .btn-filter-category, .trip-feature {
        min-height: 40px;
        font-size: 15px;
        padding: 5px 15px;
    }

    .trips-list {
        margin: -5px;
    }

    .trip-box {
        padding: 5px;
    }

    .trip-box-inner {
        padding: 10px;
    }

    .text .table-responsive-wrapper::after {
        pointer-events: none;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 45px;
        background-size: contain;
        background-position: right 15px center;
        background-repeat: no-repeat;
        background-image: url(../images/rwd-table-hand.png);
        -webkit-animation-name: rwd-hand-move;
        animation-name: rwd-hand-move;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: alternate;
        animation-direction: alternate;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    .text .table-responsive {
        margin: 0;
        border: none;
    }

    .text table {
        margin: 0;
        min-width: 780px;
    }

    @keyframes rwd-hand-move {
        0% {
            transform: translateX(-30px);
        }
        100% {
            transform: translateX(0);
        }
    }
    @-webkit-keyframes rwd-hand-move {
        0% {
            transform: translateX(-20px);
        }
        100% {
            transform: translateX(0);
        }
    }
    .form .form-element-captcha .captcha-image-wrapper {
        margin-bottom: 15px;
    }

    .rental-dialog-inputs .form-elements-wrapper .form-element {
        width: 50%;
    }
}

@media screen and (min-width: 706px) {
    footer .show-hide {
        display: block !important;
    }
}

@media screen and (max-width: 639px) {
    .bananer-section .decorative-title{
        font-size: 14vw;
    }
    .trip-box-text {
        -webkit-line-clamp: 7;
        line-clamp: 7;
    }

    .rental-dialog-container {
        padding: 0;
    }

    .rent-price {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .numbers-title {
        font-size: 18px;
    }

    .numbers-box {
        padding: 15px 10px;
    }

    .numbers-list {
        margin: -15px -10px;
    }

    .page-header .section-teaser {
        font-size: 14px;
    }

    .trip-feature {
        gap: 10px;
    }

    .trip-view-bananer .img-wrapper img {
        border-radius: 15px;
    }

    .trip-view-bananer .trip-destination {
        position: static;
    }

    .trip-view-bananer .img-wrapper {
        border-radius: 0;
    }

    .trip-box-price {
        text-align: center;
    }

    .trip-box-bottom .btn-lg {
        width: unset;
        padding: 5px 15px;
    }

    .trip-box-bottom .btn-lg .caption {
        display: block;
    }

    .trip-box-destination {
        margin-bottom: 10px;
    }

    .trip-box-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .trip-box-text.text {
        font-size: 12px;
    }

    .trip-box-price {
        margin-right: 0;
    }

    .gallery-list-item {
        width: 33.3333%;
    }

    .trip-box-bottom-right {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .text img {
        max-width: 100%;
        max-width: 100% !important;
        width: inherit;
        width: inherit !important;
        height: auto;
        height: auto !important;
    }

    .page-header .track-label {
        font-size: 16px;
    }

    .btn-square {
        width: 38px;
        height: 38px;
    }

    .track-title {
        font-size: 16px;
    }

    .track-label {
        font-size: 11px;
        padding: 5px 10px;
    }

    .track-box-content {
        padding: 10px;
    }

    .track-box-text.text {
        font-size: 13px;
    }

    .text table,
    .text iframe,
    .text object {
        max-width: 100%;
        max-width: 100% !important;
        width: 100%;
        width: 100% !important;
    }

    .article-image {
        margin-right: 0;
        margin-top: 0;
        width: 100%;
        display: block;
        float: none;
        max-width: none;
        text-align: center;
        line-height: 0;
    }

    .breadcrumb > li:not(:first-child):not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a {
        font-size: 0;
        text-indent: -1000px; /* Apple */
    }

    .breadcrumb > li:not(:last-child) a span {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a:after {
        content: "...";
        font-size: 12px;
    }

    .breadcrumb > li + li:before {
        padding: 0 6px;
    }

    .breadcrumb > li:first-child a {
        font-size: 0 !important;
        letter-spacing: 0 !important;
    }

    .breadcrumb > li:first-child a:after {
        content: "\f015";
        display: inline-block;
        font-family: FontAwesome, sans-serif;
        font-size: 12px;
    }
}

@media screen and (max-width: 560px) {
    .faq-item-title {
        font-size: 14px;
    }

    .faq-item-bottom > .text {
        font-size: 12px;
    }

    .text {
        word-wrap: break-word;
        font-size: 14px;
    }
    .icons-grid{
        grid-template-columns: 1fr;
    }
    .contact-right {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hours-text {
        padding: 10px;
        font-size: 13px;
        font-weight: 400;
        margin-bottom: var(--space-25);
        position: static;
    }

    .numbers-box {
        width: 100%;
    }

    .header-right > .btn-reserve {
        display: none;
    }

    .trip-controls-top {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .trip-controls-caption {
        font-size: 20px;
    }

    .trip-view-right {
        display: flex;
        justify-content: center;
    }

    .trip-view-controls-box {
        max-width: 320px;
        display: inline-flex;
        flex-direction: column;
    }

    .trip-box {
        width: 100%;
    }

    .trip-box-thumb {
        max-width: 250px;
    }

    .trip-box-price {
        text-align: left;
    }

    .trip-box-bottom-right {
        flex-direction: row;
    }

    .period-picker-calendar-wrapper {
        overflow: auto;
    }

    .period-picker-calendar-wrapper .calendar-wrapper td {
        padding: 0;
        vertical-align: middle;
        width: 35px;
        height: 35px;
    }

    .period-picker-calendar-wrapper .calendar-wrapper thead th.text-right a {
        margin-right: 0;
    }

    .period-picker-calendar-wrapper .calendar-wrapper thead th.text-left a {
        margin-left: unset;
    }

    .period-picker-calendar-wrapper .calendar-wrapper thead > tr:nth-of-type(2) th {
        width: unset !important;
        font-size: 10px;
    }

    .period-picker-calendar-wrapper .calendar-wrapper thead th.text-left, .period-picker-calendar-wrapper .calendar-wrapper thead th.text-right {
        width: unset;
    }

    .period-picker-calendar-wrapper .calendar-wrapper td .day-content {
        width: 30px;
        height: 30px;
        font-size: 13px;
        margin: auto;
    }

    .fancybox-close-small {
        top: 7px;
    }
    .cta-bananer .btn{
        font-size: 16px;
        padding: 5px 15px;
        min-height: 46px;
    }
}

@media screen and (max-width: 480px) {
    .rental-dialog-container > h4 {
        font-size: 16px;
        text-align: left;
        line-height: 24px;
        margin-right: -13px;
        margin-left: -13px;
    }

    .fancybox-slide > * {
        padding: 24px 13px;
    }

    .decorative-title {
        font-size: 11vw;
    }

    .modal-footer > .btn {
        width: 100%;
    }

    .rental-dialog-inputs .form-elements-wrapper .form-element {
        width: 100%;
    }

    .footer-title {
        text-align: left;
        font-size: 16px;
    }

    .period-picker-calendar-wrapper .calendar-wrapper td .day-content {
        width: 24px;
        height: 24px;
        font-size: 12px;
        margin: auto;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    header .logo-mobile {
        display: block !important;
    }

    header .logo img:not(.logo-mobile) {
        display: none !important;
    }

    .gallery-list-item {
        width: 50%;
    }

    .modal-footer .btn + .btn {
        margin-left: 0;
        margin-top: 5px;
    }

    .tracks-list {
        margin: -10px -5px;
    }

    .track-box {
        padding: 10px 5px;
        width: 100%;
    }

    .trip-difficulty {
        font-size: 14px;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .trip-difficulty .icon {
        width: 22px;
    }
}

@media screen and (max-width: 420px) {
    .box-inner{
        flex-direction: column;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }
    .box-content{
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .trip-box-price {
        text-align: center;
    }

    .trip-box-bottom-right {
        flex-direction: column;
    }

    .price span {
        font-size: 23px;
    }

    .price {
        font-size: 21px;
    }
}

@media screen and (max-width: 319px) {
    body {
        width: 320px;
    }
}

/* --------------- GLOBAL VARIABLES --------------- */

@media screen and (max-width: 1600px) {
    :root {
        --space-60: 55px;
        --space-50: 45px;
        --space-40: 35px;

        --font-48: 40px;
        --font-36: 32px;
        --font-24: 22px;
    }
}

@media screen and (max-width: 1440px) {
    :root {
        --space-60: 50px;
        --space-50: 40px;

        --font-48: 36px;

        --container-padding: 30px;
    }
}

@media screen and (max-width: 1366px) {
    :root {
        --space-25: 20px;

        --font-48: 34px;
        --font-36: 28px;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --space-60: 40px;
        --space-50: 35px;
        --space-40: 30px;

        --font-48: 32px;

        --container-padding: 20px;
    }
}

@media screen and (max-width: 1139px) {
    :root {
        --space-60: 35px;
        --space-50: 30px;
        --space-40: 25px;
        --space-25: 15px;
    }
}

@media screen and (max-width: 960px) {
    :root {
        --space-60: 30px;
        --space-50: 25px;
        --space-40: 20px;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --container-padding: 15px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --font-48: 30px;
        --font-36: 24px;
        --font-24: 18px;
    }
}

@media screen and (max-width: 420px) {
    :root {
        --font-48: 24px;
        --font-36: 20px;
        --font-24: 16px;
    }
}

