.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, .3) 0, rgba(0, 0, 0, .15) 100%);
    z-index: 1;
    pointer-events: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px)
}

.tour_page_head {
    position: relative
}

.tour_page_head .bottom-info,
.tour_page_head .breadcrumbs,
.tour_page_head .header_content,
.tour_page_head .slider_wrap {
    position: relative;
    z-index: 2
}

.button-microcopy {
    font-size: 12px;
    color: #fff;
    margin-top: 8px;
    text-align: center;
    opacity: .8
}

.button-microcopy:after {
    content: "Local experts based in Africa";
    display: block;
    font-size: 11px;
    margin-top: 4px;
    color: #fff;
    opacity: 1
}

.mobile-download-cta {
    display: none;
    margin: 30px 0;
    text-align: center
}

.sidebar-itinerary-download {
    margin-top: 14px
}

.sidebar-itinerary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background: #d03000;
    width: 100%;
    padding: 0 32px;
    border-radius: 6px;
    font-size: 21px;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box
}

.sidebar-itinerary-btn:hover {
    color: #fff;
    filter: brightness(.95)
}

@media screen and (max-width:768px) {
    .mobile-download-cta {
        display: block
    }

    .mobile-download-cta .btn {
        width: 80%;
        margin: 0 auto;
        padding: 15px;
        font-size: 16px;
        font-weight: 700;
        background: #151515;
        color: #fff
    }

    .sidebar-itinerary-download {
        display: none
    }
}

.sticky-sidebar {
    position: sticky;
    top: 20px;
    transition: all .3s ease
}

.description,
.text {
    line-height: 1.8;
    font-size: 16px
}

.day_item-head {
    cursor: pointer;
    transition: background-color .3s ease
}

.day_item-head:hover {
    background-color: rgba(0, 0, 0, .03)
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(21, 21, 21, .8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 999;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px)
}

.back-to-top .tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .7);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none
}

.back-to-top:hover .tooltip {
    opacity: 1
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 rgba(21, 21, 21, .4)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(21, 21, 21, 0)
    }

    100% {
        box-shadow: 0 0 0 rgba(21, 21, 21, 0)
    }
}

.back-to-top:hover {
    background: #151515;
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(21, 21, 21, .3)
}

@media (max-width:768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px
    }
}

.faq-container {
    margin: 40px 0;
    max-width: 800px
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(21, 21, 21, .1);
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    transition: all .3s ease
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: 0 0;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 17px;
    color: #151515;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    outline: 0;
    transition: background-color .3s ease
}

.faq-question:hover {
    background-color: rgba(21, 21, 21, .02)
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
    color: #151515;
    margin-left: 10px;
    flex-shrink: 0
}

.faq-question[aria-expanded=true] .faq-icon {
    transform: rotate(180deg)
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all .35s ease;
    border-top: 0
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    line-height: 1.6;
    color: #555
}

.faq-question[aria-expanded=true]+.faq-answer {
    max-height: 1000px
}

@media (max-width:768px) {
    .faq-question {
        font-size: 16px;
        padding: 15px
    }

    .faq-answer p {
        padding: 0 15px 15px
    }
}

.lightgallery .item {
    overflow: hidden;
    transition: transform .3s ease
}

.lightgallery .item:hover img {
    transform: scale(1.05)
}

.lightgallery .item img {
    transition: transform .3s ease
}

.blur-load {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center
}

.blur-load img {
    opacity: 0;
    transition: opacity .3s ease-in
}

.blur-load.loaded img {
    opacity: 1
}

.book-now.button,
.btn.button {
    transition: transform .3s ease, box-shadow .3s ease
}

.book-now.button:hover,
.btn.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}

.cta-in-content {
    margin: 40px 0;
    text-align: center
}

.cta-in-content .btn {
    display: inline-block;
    padding: 15px 30px;
    background: #151515;
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
    transition: all .3s ease;
    width: auto;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto
}

.cta-in-content .btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}

.tour_page_head .bottom-info-right .btn.button {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 12px 24px
}

.tour_page_head .bottom-info .wrap_float {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end
}

.tour_page_head .bottom-info-right {
    margin-left: auto;
    text-align: right
}

.tour_page.right-sidebar .wrap_float {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px
}

.tour_page.right-sidebar .left_content {
    order: 1;
    flex: 1;
    max-width: 1090px
}

.tour_page.right-sidebar .right_content {
    order: 2;
    flex-shrink: 0;
    max-width: 310px
}

.itn-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 2147483000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.itn-overlay.active {
    display: flex
}

.itn-popup {
    background: #fff;
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fadeInScale .4s ease-out;
    overflow: hidden;
    max-height: 90vh;
    opacity: 0;
    visibility: hidden
}

.itn-popup.opened {
    opacity: 1;
    visibility: visible
}

.itn-scroll-wrap {
    max-height: 90vh;
    overflow-y: auto
}

.itn-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, .1);
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all .2s
}

.itn-close:hover {
    background: rgba(0, 0, 0, .2);
    color: #333;
    transform: rotate(90deg)
}

.itn-popup-head {
    padding: 40px 36px 20px;
    text-align: center
}

.itn-title {
    font-family: Prata, serif;
    font-size: 28px;
    color: #123438;
    margin: 0 0 12px 0;
    line-height: 1.2
}

.itn-popup-body {
    padding: 0 36px 40px
}

.itn-input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit
}

.itn-input:focus {
    outline: 0;
    border-color: #ff3b00;
    box-shadow: 0 0 0 3px rgba(214, 97, 39, .1)
}

.itn-submit {
    background: #ff3b00;
    color: #fff;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: background .2s, transform .1s
}

.itn-submit:hover {
    background: #c04f1f;
    transform: translateY(-1px)
}

.itn-submit:active {
    transform: translateY(0)
}

.enq-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 2147483000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.enq-overlay.active {
    display: flex
}

.enq-popup {
    background: #fff;
    max-width: 600px;
    width: 100%;
    border-radius: 16px;
    position: relative;
    animation: fadeInScale .4s ease-out;
    overflow: hidden;
    max-height: 90vh
}

.enq-scroll-wrap {
    max-height: 90vh;
    overflow-y: auto
}

.enq-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, .9);
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all .2s
}

.enq-close:hover {
    background: #fff;
    color: #333;
    transform: rotate(90deg)
}

.enq-popup-head {
    padding: 40px 36px 20px;
    text-align: center
}

.enq-title {
    font-family: Prata, serif;
    font-size: 26px;
    color: #123438;
    margin: 0 0 12px 0;
    line-height: 1.2
}

.enq-popup-body {
    padding: 0 36px 40px
}

.enq-form-group {
    margin-bottom: 16px
}

.enq-input-group {
    display: flex;
    gap: 10px
}

.enq-input-group .enq-input {
    flex: 1
}

.date-section .enq-input-group {
    margin-bottom: 16px
}

.enq-input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit
}

.enq-input:focus {
    outline: 0;
    border-color: #ff3b00;
    box-shadow: 0 0 0 3px rgba(214, 97, 39, .1)
}

.enq-submit {
    background: #ff3b00;
    color: #fff;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    margin-top: 8px;
    transition: background .2s, transform .1s
}

.enq-submit:hover {
    background: #c04f1f;
    transform: translateY(-1px)
}

.enq-submit:active {
    transform: translateY(0)
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
    z-index: 2147483001;
    max-width: 400px;
    width: 90%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.popup.active {
    opacity: 1;
    visibility: visible
}

.popup-dismiss {
    position: absolute;
    top: 12px;
    right: 12px;
    background: 0 0;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center
}

.popup-dismiss:hover {
    color: #666
}

.status-icon {
    margin-bottom: 16px
}

.status-icon svg {
    width: 48px;
    height: 48px
}

.status-icon.success svg {
    color: #22c55e
}

.status-icon.error svg {
    color: #ef4444
}

.status-icon.warning svg {
    color: #f59e0b
}

.popup-head {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333
}

.popup-body {
    color: #666;
    line-height: 1.5
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(.96) translateY(10px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

.iti {
    width: 100%
}

.iti__selected-flag {
    background-color: transparent
}

.iti__flag {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 15'%3e%3cpath fill='%23666' d='M0 0h20v15H0z'/%3e%3c/svg%3e")
}

.iti__selected-dial-code {
    color: #666
}

.iti__country-list {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    max-height: 200px
}

.iti__country-list-item {
    padding: 8px 12px
}

.iti__country-list-item:hover {
    background-color: rgba(214, 97, 39, .05)
}

.iti__country-list-item.iti__highlight {
    background-color: rgba(214, 97, 39, .1)
}

@media (max-width:768px) {

    .enq-popup,
    .itn-popup {
        max-width: 95vw;
        margin: 20px
    }

    .enq-popup-head,
    .itn-popup-head {
        padding: 32px 24px 16px
    }

    .enq-popup-body,
    .itn-popup-body {
        padding: 0 24px 32px
    }

    .enq-title,
    .itn-title {
        font-size: 24px
    }

    .enq-input-group {
        flex-direction: column;
        gap: 0
    }

    .enq-input-group .enq-input {
        margin-bottom: 10px
    }
}

@media (max-width:480px) {
    .popup {
        padding: 20px;
        max-width: 95vw
    }

    .enq-popup-head,
    .itn-popup-head {
        padding: 28px 20px 14px
    }

    .enq-popup-body,
    .itn-popup-body {
        padding: 0 20px 28px
    }

    .enq-title,
    .itn-title {
        font-size: 24px
    }
}

.page .right_content {
    max-width: 308px
}

.blog-list-page.right-sidebar .right_content,
.blog-single-page.right-sidebar .right_content,
.page.right-sidebar .right_content {
    float: right !important;
    position: relative !important
}

.blog-list-page.right-sidebar .left_content,
.blog-single-page.right-sidebar .left_content,
.page.right-sidebar .left_content {
    float: left !important
}

.tour_page_body .right_content {
    max-width: 310px;
    padding-top: 14px;
    position: sticky !important;
    top: 20px;
    align-self: flex-start;
    flex-shrink: 0
}

.tour_page_body .left_content {
    max-width: 1090px;
    flex: 1
}

.tour_page_body .wrap_float {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px
}

.tour_page_body .right_content.sidebar.fixed,
.tour_page_body .sidebar.fixed {
    position: relative !important;
    right: auto !important;
    left: auto !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    top: auto !important;
    bottom: auto !important
}

.right_content.sidebar {
    float: right !important;
    position: sticky !important;
    top: 20px;
    align-self: flex-start;
    clear: right
}

.right_content.sidebar.fixed,
.sidebar.fixed {
    position: sticky !important;
    top: 20px !important;
    right: auto !important;
    left: auto !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    bottom: auto !important
}

.sidebar.fixed.bottom {
    position: sticky !important;
    top: 20px !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    margin-right: 0 !important;
    margin-left: 0 !important
}

.page_body .left_content {
    float: left;
    max-width: calc(100% - 348px)
}

.page_body {
    overflow: hidden
}

.page_body::after {
    content: "";
    display: table;
    clear: both
}

.sidebar ._block {
    margin-top: 30px
}

.sidebar ._block:first-child {
    margin-top: 0
}

.sidebar ._block .block_title {
    font-size: 30px;
    font-family: Prata, serif;
    margin-bottom: 26px
}

.sidebar ._block.category_block {
    background: #f7f7f7;
    padding: 40px 30px;
    border-radius: 7px
}

.sidebar ._block.category_block ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.sidebar ._block.category_block ul li {
    margin-bottom: 15px
}

.sidebar ._block.category_block ul li:last-child {
    margin-bottom: 0
}

.sidebar ._block.category_block ul li a {
    width: 100%;
    display: block;
    float: left;
    font-size: 18px;
    color: #222;
    position: relative;
    text-decoration: none;
    transition: color .2s linear
}

.sidebar ._block.category_block ul li a:hover {
    color: #ff3b00
}

.sidebar ._block.category_block ul li a.active {
    color: #ff3b00
}

.sidebar ._block.category_block ul li a span {
    display: block
}

.sidebar ._block.gallery_block {
    background: #222;
    border-radius: 7px;
    padding: 40px 30px
}

.sidebar ._block.gallery_block .block_title {
    color: #fff
}

.sidebar ._block.gallery_block .images {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.sidebar ._block.gallery_block .images .img {
    width: 114px;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 20px;
    margin-bottom: 20px;
    display: block;
    float: left
}

.sidebar ._block.gallery_block .images .img:nth-child(2n) {
    margin-right: 0
}

.sidebar ._block.gallery_block .images .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.sidebar ._block.gallery_block .link {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: color .2s linear
}

.sidebar ._block.gallery_block .link:hover {
    color: #ff3b00
}

.sidebar ._block .popular {
    width: 100%
}

.sidebar ._block .popular .item {
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 28px;
    margin-bottom: 28px;
    display: block;
    float: left;
    width: 100%;
    text-decoration: none
}

.sidebar ._block .popular .item:hover .item_top ._title {
    color: #ff3b00;
    transition: all .2s linear
}

.sidebar ._block .popular .item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

.sidebar ._block .popular .item_top {
    position: relative;
    padding-left: 130px;
    min-height: 102px
}

.sidebar ._block .popular .item_top .img {
    width: 102px;
    height: 102px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat
}

.sidebar ._block .popular .item_top ._title {
    font-size: 21px;
    color: #222;
    min-height: 102px;
    font-family: Prata, serif;
    display: flex;
    align-items: center;
    transition: all .2s linear;
    margin: 0
}

.sidebar ._block .popular .item_bottom {
    margin-top: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.sidebar ._block .popular .item_bottom .days {
    color: rgba(0, 0, 0, .53);
    font-size: 18px;
    display: block;
    float: left;
    line-height: 20px;
    width: auto
}

.sidebar ._block .popular .item_bottom .sale {
    color: #ff3b00;
    font-size: 18px;
    font-weight: 600;
    display: block;
    float: left;
    line-height: 20px;
    width: auto;
    margin-left: 4px
}

.sidebar ._block .popular .item_bottom .cost {
    font-size: 18px;
    color: #222;
    font-weight: 600;
    display: block;
    float: left;
    line-height: 20px;
    width: auto;
    margin-left: 7px
}

.sidebar ._block .stories {
    border-radius: 13px;
    overflow: hidden;
    position: relative;
    padding: 0
}

.sidebar ._block .stories .arrows {
    position: absolute;
    z-index: 2;
    top: 17px;
    right: 24px;
    width: auto;
    display: flex;
    gap: 18px
}

.sidebar ._block .stories .arrows .arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .42);
    position: relative;
    transition: all .2s linear;
    z-index: 1;
    cursor: pointer
}

.sidebar ._block .stories .arrows .arrow:before {
    width: 16px;
    height: 12px;
    background: url(../img/left-arrow.svg) center center no-repeat;
    background-size: contain;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -8px;
    opacity: 1;
    transition: all .2s linear
}

.sidebar ._block .stories .arrows .arrow:after {
    width: 16px;
    height: 12px;
    background: url(../img/right-arrow.svg) center center no-repeat;
    background-size: contain;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -8px;
    opacity: 0;
    transition: all .2s linear;
    transform: rotate(180deg)
}

.sidebar ._block .stories .arrows .arrow.next {
    transform: rotate(180deg)
}

.sidebar ._block .stories .arrows .arrow:hover {
    background: #fff;
    transition: all .2s linear;
    cursor: pointer
}

.sidebar ._block .stories .arrows .arrow:hover:before {
    opacity: 0;
    transition: all .2s linear
}

.sidebar ._block .stories .arrows .arrow:hover:after {
    opacity: 1;
    transition: all .2s linear
}

.sidebar ._block .stories .items {
    position: relative
}

.sidebar ._block .stories .items .item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 26em;
    border-radius: 13px;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-bottom: 38px;
    position: relative
}

.sidebar ._block .stories .items .item:before {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, #000 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, #000 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, #000 100%);
    opacity: .74;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.sidebar ._block .stories .items .item .flag {
    display: inline-block;
    float: none;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    width: 70px;
    border-radius: 50%;
    overflow: hidden;
    height: 70px
}

.sidebar ._block .stories .items .item .flag img {
    height: 100%;
    width: auto;
    object-fit: cover
}

.sidebar ._block .stories .items .item ._title {
    font-size: 33px;
    font-family: Prata, serif;
    color: #fff;
    position: relative;
    z-index: 1;
    margin: 0
}

@media screen and (max-width:1520px) {
    .page .left_content {
        max-width: 950px
    }
}

@media screen and (max-width:1300px) {
    .sidebar ._block .stories .items .item {
        height: 60vw
    }
}

@media screen and (max-width:760px) {
    .page_body .left_content {
        max-width: 100%;
        width: 100%;
        float: none
    }

    .page .right_content {
        max-width: 100%;
        width: 100%;
        margin-top: 40px;
        float: none !important;
        position: relative !important;
        top: auto !important
    }

    .page_body .right_content.sidebar {
        width: 100%;
        float: none !important;
        position: relative !important;
        top: auto !important
    }

    .tour_page_body .wrap_float {
        flex-direction: column;
        gap: 20px
    }

    .tour_page_body .right_content {
        position: relative !important;
        top: auto !important;
        max-width: 100%;
        order: 2
    }

    .tour_page_body .left_content {
        order: 1
    }

    .sidebar ._block .stories .items .item {
        height: 110vw
    }

    .sidebar ._block.category_block,
    .sidebar ._block.gallery_block {
        padding: 30px 20px
    }

    .sidebar ._block.gallery_block .images .img {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
        height: 28vw
    }

    .sidebar ._block.gallery_block .images .img:nth-child(2n) {
        margin-right: 0
    }
}

@media screen and (max-width:640px) {
    .sidebar ._block .popular .item_top {
        padding-left: 110px;
        min-height: 90px
    }

    .sidebar ._block .popular .item_top .img {
        width: 90px;
        height: 90px
    }

    .sidebar ._block .popular .item_top ._title {
        font-size: 18px;
        min-height: 90px
    }

    .sidebar ._block .popular .item_bottom .cost,
    .sidebar ._block .popular .item_bottom .days {
        font-size: 16px
    }

    .sidebar ._block.gallery_block .images .img {
        height: 37vw
    }
}

@media (max-width:768px) {
    .tour_page_head .bottom-info .wrap_float {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .tour_page_head .bottom-info-right {
        align-items: center;
        text-align: center;
        margin-top: 20px
    }

    .tour_page_head .bottom-info-right .info {
        justify-content: center;
        margin-bottom: 15px
    }
}

@media (max-width:768px) {
    .tour_page_body .left_content .stories:not(.mobile) {
        display: none
    }

    .tour_page_body .left_content .stories.mobile {
        display: block
    }

    .tour_page_body .left_content .stories.mobile .section_content .stries_slider .story_item {
        display: inline-block;
        float: none;
        vertical-align: top;
        margin-right: 23px;
        margin-bottom: 13px
    }

    .tour_page_body .left_content .stories.mobile .section_content .stries_slider .story_item:last-child {
        margin-right: 4vw
    }
}

@media (min-width:769px) {
    .tour_page_body .left_content .stories.mobile {
        display: none !important
    }

    .tour_page_body .left_content .stories:not(.mobile) {
        display: block !important
    }
}

/* Fix for arrows pointing left */
.arrows .arrow.next,
.arrow.next,
.slick-next.arrow,
.slick-next {
    transform: rotate(180deg) !important;
}

.arrows .arrow.next:hover:after,
.arrow.next:hover:after,
.slick-next.arrow:hover:after {
    transform: rotate(180deg) !important;
}

.arrows .arrow.prev,
.arrow.prev,
.slick-prev.arrow,
.slick-prev {
    transform: none !important;
}

.arrows .arrow.prev:hover:after,
.arrow.prev:hover:after,
.slick-prev.arrow:hover:after {
    transform: rotate(180deg) !important;
}