@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) {
    .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%);
        -ms-transform: translateY(100%);
    }
    header.stickable .rwdPanel {
        z-index: -1;
    }

    .rwdPanel.active {
        pointer-events: all;
        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:first-child {
    border-top: 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 0;
    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);
    -ms-transform: rotateZ(180deg);
}

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

.rwdMenu .social-list > ul > li a {
    padding: 0;
}

.rwdMenu .social-list > ul > li {
    border: 0 none;
}

/**
 * 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: var(--color-primary);
}
.rwdButton .animIcon--close span {
    background-color: #fff;
}
.rwdButton:not(.active) > .animIcon--close {
    transform: scale(0.4);
    -ms-transform: scale(0.4);
}
.rwdButton.active > .animIcon--close {
    opacity: 1;
}
.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -ms-transform: scale(0);
}

/* --------------- BREAKPOINTS --------------- */

@media screen and (max-width: 1670px) {

}

@media screen and (max-width: 1600px) {
    .contact-links {
        margin: -10px -25px;
    }

    .contact-link {
        padding: 10px 25px;
    }
    .about-text {
        width: 45%;
    }

    .routes-slider {
        margin: -10px;
    }

    .route {
        padding: 10px;
    }

    .benefit-box {
        margin: -35px;
    }
    .benefit-item {
        padding: 35px;
    }
	
	.about-box-sub-container .photo-in-bg {
    mask-position: 31%;
}
}

@media screen and (max-width: 1440px) {
    .contact-links {
        margin: -10px -20px;
    }

    .contact-link {
        padding: 10px 20px;
    }
    #main-menu li a {
        padding: 10px;
    }
    .about-text {
        width: 50%;
    }

    .about-text .text.txt {
        -webkit-line-clamp: 9;
    }
    .route-info-box {
        padding-right: 0;
    }

    .benefit-box {
        margin: -30px;
    }
    .benefit-item {
        padding: 30px;
    }

    .footer-left {
        width: 50%;
    }
}


@media screen and (max-width: 1366px) {
    .contact-links {
        margin: -10px -15px;
    }

    .contact-link {
        padding: 10px 15px;
    }
    #main-menu li a {
        padding: 10px 9px;
    }

    .offer-icon {
        width: 40%;
        height: 50px;
        margin-bottom: 10px;
    }

    .about-text {
        width: 54%;
    }

    .about-text .text.txt {
        -webkit-line-clamp: 8;
    }

    .routes-slider {
        margin: -5px;
    }

    .route {
        padding: 5px;
    }

    .route-link {
        padding: 15px 15px var(--space-30);
    }

    .benefit-box {
        margin: -25px;
    }
    .benefit-item {
        padding: 25px;
    }

    .mainpage .benefits-box-title {
        margin-bottom: var(--space-50);
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }

    .benefit-item:nth-child(even) {
        margin-top: var(--space-60);
    }

    button.mouse {
        bottom: 35px;
        width: 50px;
        height: 60px;
    }

    .text-intro {
        padding-top: 0;
    }

    .route-type-details {
        margin-right: 60px;
    }
}

@media screen and (max-width: 1280px) {
    .contact-links {
        margin: -10px;
    }

    .contact-link {
        padding: 10px;
    }
    #main-menu li a {
        padding: 10px 8px;
    }

    .about-text .text.txt {
        -webkit-line-clamp: 7;
    }

    .benefit-box {
        margin: -20px;
    }
    .benefit-item {
        padding: 20px;
    }

    .route-type-details {
        margin-right: 50px;
    }
	
	.footer-col-title {
    font-size: 21px;
    margin-bottom: 20px;
}

.about-box-sub-container .photo-in-bg {
        mask-position: 26%;
    }
}

@media screen and (max-width: 1200px) {
    .contact-links {
        margin: -10px -5px;
    }

    .contact-link {
        padding: 10px 5px;
    }

    #main-menu li a {
        padding: 10px 7px;
    }

    .benefit-box {
        margin: -15px;
    }
    .benefit-item {
        padding: 15px;
    }

    .route-type-details {
        margin-right: 40px;
    }
	
	.footer-col-title {
    font-size: 20px;
    margin-bottom: 15px;
}
}

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

@media screen and (max-width: 1139px) {
    .text table tr td {
        padding: 6px 10px;
    }

    #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;
    color: var(--color-primary);
}

    .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;
    }
	
	    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0 30px;
    }

    .slider .slick-arrow {
        width: 40px;
        height: 40px;
        margin-top: -120px;
    }

    .header-top {
        display: none;
    }

    .logo a img {
        height: 46px;
    }

    .logo {
        margin-top: 0;
    }

    .description {
        bottom: -15px;
    }

    #content, .subpage #content {
        padding-top: 68px;
    }

    .slide-text {
        padding-top: 0;
        margin-bottom: 0;
    }

    .slider .slick-arrow {
        margin-top: -20px;
        top: 50%;
    }

    .benefit-top-mask {
        display: none;
    }

    .footer-boxes-wrapper {
        flex-wrap: wrap;
    }

    .footer-top {
        display: none;
    }



    .footer-bottom {
        display: none;
    }


    .footer-box {
        width: 100% !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding: 15px 15px 0 !important;
    }

    .footer-col-title {
        background: url(../images/icons/arrow_down2.svg) no-repeat right 5px;
        background-size: 20px 20px;
        margin-bottom: 0;
        padding-bottom: 15px;
        padding-left: 0;
        text-align: left;
        font-size: 18px;
        padding-right: 10px;
    }

    .footer-col-title.active {
        background: url(../images/icons/arrow_up2.svg) no-repeat right 5px;
        background-size: 20px 20px;
    }

    .show-hide {
        display: none;
        padding-bottom: 15px;
    }

    .footer-boxes {
        flex-wrap: wrap;
        flex-direction: column;
    }

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

    .footer-box:last-child img.logo-min {
        display: none;
    }

    .footer-left {
        width: 100%;
        flex-wrap: wrap;
    }

    .footer-right {
        width: 100%;
        padding-bottom: 20px;
    }

    footer {
        min-height: 1px;
    }

    .footer-boxes {
        flex-wrap: wrap;
        flex-direction: column;
        margin-bottom: 0;
    }

    .footer-right .footer-box:last-child{ display:none;}

    .text-intro {
        padding-top: 0;
        margin-top: -10px;
    }
    .route-type-details {
        margin-right: 30px;
    }

    .route-details-info .route-info-icon {
        width: 60px;
        height: 60px;
        margin-right: 22px;
    }

    .routes-suggested table {
        width: 100%;
    }
	
	.mainpage .equipment-item {
    padding-bottom: 50px;
}

.rwdMenu .contact-links {
    flex-wrap: wrap;
    margin: -12px;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.rwdMenu .contact-link {
    padding: 12px;
}

.contact-box-container {
    position: relative;
}

.contact-box-container .page-heading-title {
    color: var(--color-default);
}

.page-contact .show-hide {
    display: block!important;
}

.page-contact  .footer-col-title {
    background: transparent;
}

    .about-box-sub-container .photo-in-bg {
        position: relative;
    }

    .about-box-sub-container .photo-in-bg img {}

    .about-box-sub-container .photo-in-bg, .about-box-sub-container .photo-in-bg img {
        position: relative;
        mask: none!important;
    }

    .about-box-container-wrapper .about-box-wrapper {
        flex-wrap: wrap;
    }
	
	    .about-box-container-wrapper .about-box-wrapper {
        flex-wrap: wrap;
        padding-top: 0;
    }

    .about-box-container-wrapper .about-box {flex-wrap: wrap;}

    .about-box-container-wrapper .about-box-wrapper .about-text {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-box-container-wrapper .about-photo {
        width: 100%;
        margin: 0;
        background: rgba(0, 0, 0, 0.5);
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .about-box-container-wrapper .about-photo img {
        margin: 0 auto;
        max-width: 90%;
    }
	
	.about-box-sub-container .photo-in-bg {
    display: none;
}

.about-box-container-wrapper .about-photo img.rwd-bg {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    max-width: 100%;
    z-index: -1;
}
}

@media screen and (max-width: 960px) {

    .offer-item {
        width: 33.33%;
        margin-bottom: 10px;
    }

    .offer-box {
        justify-content: flex-start;
    }


}

@media screen and (min-width: 1140px) {
    footer .show-hide {
        display: block !important;
    }
	
	img.rwd-bg {
    display: none;
}
}


@media screen and (max-width: 900px) {
    .footer-bar {
        text-align: center;
        padding: 13px 0;
        line-height: normal;
    }

    .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;
    }
	
	.copyright:before{ display:none;}

    .photo-in-bg img {
        max-width: 100%;
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .photo-in-bg {
        position: absolute;
        mask: none!important;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
    }

    .about-box-container .container {
        position: relative;
    }

    .about-box-container {
        padding-top: 30px;
        padding-bottom: 30px;
        margin-bottom: 0;
    }

    .benefits-box-container .container {
        position: relative;
    }

    .benefit-box-wrapper {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .benefit-item {
        width: 50%;
    }

    .benefit-box {
        flex-wrap: wrap;
    }

    .benefit-item:nth-child(even) {
        margin-top: 0;
    }

    .footer-bar-content {
        text-align: center;
    }

    .equipment-box-sub-container .slider-nav-box {
        position: relative;
        right: auto;
        left: auto;
        margin: 0 auto;
        width: 100%;
    }

    .equipment-box-sub-container .box-header {
        flex-wrap: wrap;
    }

    .slider-navigation:only-child {
        margin-right: 0;
        width: 100%;
        justify-content: center;
    }

    .equipment-box-sub-container .equipment-box-title {
        margin-bottom: 10px;
    }
	
	.mainpage .equipment-box-sub-container .box-header {
    align-items: center;
    justify-content: center;
}

.mainpage .equipment-box-sub-container .equipment-box-title {
    text-align: center;
}

.equipment-box-sub-container .slider-nav-box {
    justify-content: center;
}
}





@media screen and (max-width: 767px) {
   /* .text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }

    .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;
    }
	
	.controls.captcha-container .col-sm-6 {
    width: 100%;
}

    .about-box {
        flex-wrap: wrap;
    }

    .about-text {
        width: 100%;
    }

    .about-photo {
        width: 100%;
        text-align: center;
    }

    .about-photo img {
        margin: 0 auto;
    }

    .about-text .text.txt {
        -webkit-line-clamp: none;
    }

    .equipment-box-container .box-header {
        flex-wrap: wrap;
    }

    .equipment-box-title {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .slider-nav-box {
        margin: 0 auto;
    }

    .route-details-info {
        flex-wrap: wrap;
    }

    .route-type-details {
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 680px) {
    .route-photo img{ width:100%}

    .routes-box-container .box-header {
        flex-wrap: wrap;
    }

    .routes-box-title {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .routes-box-sub-wrapper .slider-nav-box {
        position: relative;
        right: auto;
        left: auto;
        top: auto;
        margin: 0;
        width: 100%;
    }

    .routes-box-sub-wrapper .routes-box-title {
        width: 100%;
    }

    .routes-box-sub-wrapper .box-header {
        flex-wrap: wrap;
    }
}


@media screen and (max-width: 639px) {
    .text img {
        max-width: 100%;
        max-width: 100% !important;
        width: inherit;
        width: inherit !important;
        height: auto;
        height: auto !important;
    }

    .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;
    }

    .description {
        bottom: -20px;
    }


}

@media screen and (max-width: 560px) {
    .text {
        word-wrap: break-word;
    }
    .gallery-list-item {
        width: 50%;
    }
	
	    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0;
    }

    .description {
        display: none;
    }

    button.mouse {
        display: none;
    }

    .slider .slick-arrow{ display:none!important}

    .offer-item {
        width: 50%;
    }

    .benefit-item {
        width: 100%;
    }
    .routes-suggested th {
        padding: 5px;
        font-size: 14px;
    }
    .routes-suggested td {
        font-size: 14px;
        padding: 5px;
    }
.rwdMenu .contact-link {
    width: 290px;
    margin: 0 auto;
}
}

@media screen and (max-width: 480px) {
    .modal-footer > .btn {
        width: 100%;
    }
    .modal-footer .btn + .btn {
        margin-left: 0;
        margin-top: 5px;
    }
}

@media screen and (max-width: 424px) {
	
.text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }

    .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:425px
    }

    @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);
        }
    }

	
    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
    .pagination-wrapper ul li {
        padding: 0;
    }

    .top .btn.btn-lg.btn-primary.has-icon .btn-caption {
        display: none;
    }

    .top .btn.btn-lg.btn-primary.has-icon {
        padding: 0;
        width: 46px;
    }

    .offer-item {
        width: 100%;
    }

    .offer-link, .offer-item:nth-child(even) .offer-link {
        flex-direction: row;
        align-items: center;
    }

    .offer-photo {
        width: 50%;
    }

    .offer-content {
        width: 50%;
        padding-bottom: 50%;
    }

    span.t {
        display: none;
    }

    .offer-icon {
        width: 50px;
        height: 30px;
    }

    .slider-nav-box {
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .slider-navigation {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .route-info-box {
        flex-wrap: wrap;
    }

    .route-info {
        padding: 5px;
    }
    .routes-suggested th {
        padding: 4px;
        font-size: 13px;
    }
    .routes-suggested td {
        font-size: 13px;
        padding: 4px;
    }

    .route-type {
        top: 10px;
        left: 10px;
        width: 90px;
        height: 90px;
    }
.benefits-box-title {
    margin-bottom: 10px;
}


    .benefit-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 10px;
    }

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

}

@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;
		--space-30: 25px;

        --font-60: 48px;
        --font-48: 40px;
        --font-40: 36px;
        --font-36: 32px;
        --font-35: 32px;
        --font-30: 26px;
        --font-26: 23px;
        --font-24: 22px;
    }
}

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

        --font-60: 45px;
        --font-48: 36px;
        --font-40: 34px;

        --container-padding: 30px;
    }
}

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

        --font-60: 43px;
        --font-48: 34px;
        --font-40: 32px;
        --font-36: 28px;
        --font-35: 28px;
        --font-30: 24px;
        --font-18: 17px;
    }
}

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

        --font-60: 40px;
        --font-48: 32px;
        --font-40: 30px;

        --container-padding: 20px;
    }
}

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

        --font-60: 38px;
        --font-48: 30px;
        --font-40: 28px;
    }
}

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

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

@media screen and (max-width: 639px) {
    :root {
        --font-60: 34px;
        --font-48: 30px;
        --font-40: 26px;
        --font-36: 24px;
        --font-35: 23px;
        --font-30: 22px;
        --font-26: 19px;
        --font-24: 18px;
        --font-22: 17px;
        --font-20: 16px;
        --font-18: 16px;
    }
}

@media screen and (max-width: 424px) {
    :root {
        --font-60: 32px;
        --font-48: 24px;
        --font-40: 22px;
        --font-36: 20px;
        --font-30: 20px;
        --font-26: 17px;
        --font-24: 17px;
        --font-20: 16px;
        --font-18: 16px;
    }
}