/**
 * 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%);
        -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 ul:first-child  li:first-child {
    border-top: 1px solid 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-secondary);
}

.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;
}

.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);
    -ms-transform: scale(0);
}

/* --------------- BREAKPOINTS --------------- */

@media screen and (max-width: 1670px) {
    .slider button.slick-arrow {
        margin: 0;
        right: var(--container-padding);
    }

    .slider button.prev {
        margin-right: 75px;
    }

    .about-slider {
        padding: 0 60px;
    }

    .about-slider button.slick-prev.slick-arrow {
        left: 5px;
        margin-left: 0;
    }

    .about-slider button.slick-next.slick-arrow {
        right: 5px;
        margin-left: 0;
    }

    .about-slide {
        padding: 70px;
    }

    .about-slider {
        background-size: 106%;
        margin: -70px -40px -20px;
    }
}

@media screen and (max-width: 1600px) {
    .category-box button.slick-prev.slick-arrow {
        left: 0;
    }

    .category-box button.slick-next.slick-arrow {
        right: 0;
    }

    .category-box {
        margin: 0 -60px;
    }

    .category-text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .offer-title {
        padding: 0 10px;
    }

    .about-slide {
        padding: 60px;
    }

    .about-slider {
        background-size: 106%;
        margin: -60px -40px 0px;
    }

    .slogan1,.slogan2, .slogan3, .slogan4, .slogan5{ display:none;}

    .about-box {
        padding: 0 0 var(--space-50);
    }

    .gallery-box-container {
        background-size: 100% auto;
    }
}

@media screen and (max-width: 1440px) {
    .category-box {
        margin: 0 -15px;
    }

    .category-name {
        margin-bottom: 0;
    }

    .category-text {
        padding: 0 24px;
        margin-bottom: 10px;
    }

    .offer-box-content {
        margin: -20px;
    }

    .offer-item, .offer-box-list .offer-item {
        padding: 24px;
    }

    .offer-box-list {
        margin: -24px;
    }

    .offer-title {
        padding: 0 5px;
    }

    .about-text {
        padding: 0 30px;
        font-size: 15px;
        line-height: 120%;
        height: 54px;
    }

    .about-icon {
        width: 49%;
        margin: -40px auto -25px;
    }

    .about-slide {
        padding: 50px;
    }

    .about-slider {
        background-size: 106%;
        margin: -50px -40px 0;
    }

    .about-slider {
        padding: 0 70px;
    }

    .about-slider button.slick-prev.slick-arrow {
        left: 15px;
    }

    .about-slider button.slick-next.slick-arrow {
        right: 15px;
    }

    .gallery-logo img {
        max-width: 50%;
    }
}

@media screen and (max-width: 1366px) {
    .category-box {
        margin: 0;
    }

    .offer-title {
        padding: 0;
    }

    #main-menu li {
        margin-left: 30px;
    }

    .title2 {
        margin-bottom: 10px;
    }

    .description {
        margin-bottom: 20px;
    }

    .slider button.slick-arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .slider button.prev {
        margin-right: 60px;
    }

    .offer-content {
        padding: 20px;
    }

    .about-slide {
        padding: 40px;
    }

    .about-slider {
        background-size: 106%;
        margin: -40px -40px 10px;
    }

    .newsletter-box {
        padding-right: 20%;
    }

    .footer-box:first-child {
        width: 34%;
    }

    .footer-box:last-child {
        width: 13%;
    }

    .category-box .slick-list {
        padding: 35px 50px 35px !important;
    }

    .category-box-title {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1280px) {
    .category-item.slick-slide .category-icon {
        width: 100px;
        margin-top: -26px;
    }


    #main-menu li {
        position: relative;
        margin-left: 25px;
    }


    .about-slide {
        padding: 30px;
    }

    .about-slider {
        margin: -30px -30px 10px;
    }

    .category-box .slick-list {
        padding: 30px 50px 30px !important;
    }

    nav.details-menu ul li {
        padding: 10px 5px;
    }

    nav.details-menu ul {
        margin: -10px -5px;
    }
}

@media screen and (max-width: 1200px) {
    #main-menu li {
        margin-left: 16px;
    }

    .newsletter-box {
        padding-right: 16%;
    }

    .category-box .slick-list {
        padding: 20px 50px 30px !important;
    }

    .contact-data:last-child {
        width: 15%;
    }

    .contact-data {
        width: 29%;
    }

    .details-text .text.txt {
        width: auto;
    }

    nav.details-menu ul li {
        padding: 10px 2px;
    }

    nav.details-menu ul {
        margin: -10px -2px;
    }
}

@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;
    }

    .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;
    }

    #top .social-desc {
        display: none;
    }

    .social-box-title {
        display: none;
    }

    .top-right {
        display: flex;
        align-items: center;
    }

    .header-top {
        display: none;
    }

    .slogan:after {
        display: none;
    }

    .logo a img {
        height: 60px;
    }

    .logo a img.logo-main {
        display: none;
    }

    header {
        background: #fff;
    }

    .logo a img.logo-sub {
        display: block;
    }

    .top-inner {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #content, .subpage #content {
        padding-top: 79px;
    }

    .slider, .main-slider, .slider .slide, .slider .slider-photo {
        height: auto;
        min-height: 1px;
        max-height: none;
    }

    .slider .slider-photo img {
        display: block;
        max-width: 100%;
    }

    .slider-text {
        justify-content: center;
        padding-top: 0;
        width: 60%;
    }

    .description {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .slider button.slick-arrow {
        top: 20px;
    }

    header .social-icon {
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

    .category-item.slick-slide.slick-active.slick-current .category-link {
        transform: scale(1);
    }

    .category-item.slick-slide .category-link {
        transform: scale(1);
    }

    .category-item.slick-slide.slick-active.slick-current .category-link {
        border-width: 10px;

    }

    .category-item {
        padding: 35px 15px;
    }

    .category-box .slick-list {
        padding: 0px !important;
    }

    .category-box {
        margin: 0;
        padding: 50px;
    }

    .category-name {
        font-size: var(--font-24);
        padding: 10px 16px;
    }

    .category-box button.slick-prev.slick-arrow {
        left: -10px;
    }

    .category-box button.slick-next.slick-arrow {
        right: -10px;
    }

    .about-slider {
        background: transparent;
    }

    .footer-box:first-child {
        display: none;
    }

    .footer-box.footer-address {
        width: 33.33%;
    }

    .footer-box.footer-contact {
        width: 33.33%;
    }

    .footer-box:last-child {
        width: 33.33%;
    }

    .contact-box-container {
        background-size: cover;
        padding-bottom: 140px;
    }

    .form-box-container {
        margin-top: -30px;
    }

    .gallery-logo {
        padding-right: 0;
    }

    .text {
        line-height: 26px;
        font-size: 14px;
    }

    .details-photo img {
        position: relative;
        width: auto;
        height: auto;
        display: block;
        max-width: 100%;
    }

    .details-box {
        height: auto;
    }
    .details-box .container {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
    }

    .details-text {
        width: 100%;
        max-width: 100%;
        padding-bottom: 50px;
    }

    .details-title {
        color: var(--color-primary);
        text-align: center;
    }

    .details-text .text.txt {
        color: var(--color-primary);
        margin-bottom: 30px;
    }

    .details-bottom {
        position: relative;
        bottom: auto;
    }

    nav.details-menu ul li a {
        width: auto;
        padding: 0 12px;
    }

    nav.details-menu ul {
        margin: -5px -2px;
    }

    nav.details-menu ul li {
        padding: 5px 2px;
    }
    .details-tour-photo {
        width: 100%;
    }

    .details-tour-text {
        width: 100%;
        padding: 0!important;
        margin-bottom: 30px;
    }

    .details-tour-info {
        flex-wrap: wrap;
    }

    .details-tour-info.details-tour-info2 {
        flex-direction: column-reverse;
    }

    .search-icon {
        margin-right: 0;
        width: 100px;
        height: 100px;
        margin-left: 0;
    }

    .search-box-title {
        padding-right: 30px;
        margin-right: 0;
    }
	
	footer{background: #052b5b}
}

@media screen and (max-width: 960px) {
    .category-text {
        display: none;
    }

    .search-icon {
        margin-right: 0;
        width: 100px;
        height: 100px;
        margin-left: -21px;
    }

    .filter-search {
        background: url(../images/search_bg.jpg) no-repeat center center;
        padding-bottom: 20px;
    }

    .search-box {
        flex-wrap: wrap;
    }


}

@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;
    }

    .description {
        display: none;
    }

    .slider-text {
        padding-bottom: 50px;
    }

    .header-slider-nav .prev, .header-slider-nav .next {
        margin-left: 5px;
    }

    .header-slider-nav {
        padding-right: 5px;
    }

    .header-buttons-right .btn-primary {
        padding: 0 15px;
    }

    .newsletter-box {
        padding-right: 10%;
    }

    .contact-data:first-child {
        display: none;
    }

    .contact-data {
        width: 33.33%!important;
    }
}

@media screen and (max-width: 800px) {
    .newsletter-box {
        padding-right: 30px;
    }

    .offer-box-list .offer-item {
        width: 50%;
    }
}

@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;
    }

    .header-buttons-right {
        position: relative;
        margin: 0 auto;
        right: auto;
        top: auto;
        text-align: center;
        padding-top: 20px;
    }

    .newsletter-box {
        padding-right: 0;
        width: 100%;
        margin-bottom: 50px;
    }

    .know-box {
        width: 100%;
    }

    .about-bottom {
        flex-wrap: wrap;
    }

    .newsletter-text .text.txt {
        margin-bottom: 20px;
    }

    .newsletter-title {
        margin-bottom: 20px;
    }

    .know-title {
        margin-bottom: 20px;
    }

    .about-box-home-container {
        padding-top: 30px;
        padding-bottom: 0px;
    }

    .footer-boxes-container .container {
        padding: 0;
    }

    .footer-boxes {
        flex-direction: column;
    }

    .footer-box {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        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;
    }

    .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 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .footer-boxes-container {
        padding-top: 0;
        padding-bottom: 0;
    }

    img.logo-min {
        height: 45px;
        margin-bottom: 10px;
    }

    .footer-boxes {
        padding-top: 0;
        padding-bottom: 0;
        border-bottom: 0 none;
    }

    footer {
        background: #052b5b;
    }

    footer .contact-link {
        width: 50%;
    }

    footer .contact-links {
        display: flex;
        flex-wrap: wrap;
    }

    .about-box-home-container {
        background-size: cover;
    }
}

@media screen and (min-width: 768px) {
    footer .show-hide {
        display: block !important;
    }
}

@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;
    }

    .slide-price {
        padding: 2px 44px 17px 15px;
    }

    .category-content-hidden .btn.btn-primary {
        display: none;
    }

.category-item.slick-slide .category-icon {
    width: 110px;
    margin: 0 0 0;
}

    .contact-data {
        width: 50%!important;
        margin-bottom: 30px;
    }

    .contact-data-box {
        flex-wrap: wrap;
    }

    .contact-data:last-child {
        width: 100%!important;
    }

    .social-list > ul {
        display: flex;
    }

    .details-item {
        width: 50%;
        padding-right: 20px;
        margin: 0 0 20px;
    }

    .details-bottom {
        flex-wrap: wrap;
    }

    .label-offer.label-blue.label-big {
        margin-bottom: 20px;
    }

    .filter-box ul li {
        width: auto; padding:5px;
    }

    .filter-box ul li a {
        padding: 0 12px;
    }

    .filter-box ul {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
    }
}
@media screen and (max-width: 600px) {
.category-box button.slick-arrow {
    display: none!important;
}
.category-box {
    margin: 0;
    padding: 50px 0;
}
}
@media screen and (max-width: 560px) {
    .text {
        word-wrap: break-word;
    }

    .gallery-list-item {
        width: 50%;
    }

    .slide .container {
        position: relative;
        height: auto;
        left: auto;
        right: auto;
        bottom: 0;
    }

    .slider-text {
        position: relative;
        background: rgba(0, 39, 81, 0.6);
        max-width: none;
        margin: 0 -15px;
        padding: 15px;
        width: auto;
    }

    .description {
        display: block;
    }

    .mask.slide-mask {
        display: none;
    }

    .category-box {
        margin: 0;
        padding: 0 50px;
    }

    .category-box-container {
        padding-bottom: 40px;
    }

    .offer-content {
        padding: 10px;
    }

    .pagination-wrapper ul li.prev {
        margin-top: 5px;
    }

    .pagination-wrapper ul li.next {
        margin-top: 5px;
    }
}

@media screen and (max-width: 480px) {
    .contact-link {
        width: 100%;
    }

    footer .social-list > ul > li {
        display: block;
    }

    .pagination-wrapper ul li {
        padding: 2px;
    }
}

@media screen and (max-width: 424px) {
    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .slider button.prev {
        margin-right: 55px;
    }

    .slider button.slick-arrow {
        width: 46px;
        height: 46px;
    }

    .main-menu-button {
        margin: 10px 0 10px var(--container-padding);
    }

    .newsletter .form .form-control {
        font-size: 14px;
    }

    .know-text ul {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
    .contact-data {
        width: 100%!important;
        margin-bottom: 30px;
    }

    .details-item {
        width: 100%;
        padding-right: 0;
        margin: 0 0 20px;
    }

    #content, .subpage #content {
        padding-top: 72px;
    }

    .offer-box-list .offer-item {
        width: 100%;
    }

    .pagination-wrapper ul li a {
        width: 40px;
        height: 40px;
        line-height: 36px;
    }

    .pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
        width: 40px;
        height: 40px;
        line-height: 30px;
    }
}
@media screen and (max-width: 375px) {
    .pagination-wrapper ul li a {
        width: auto;
        height: auto;
        line-height: 36px;
        border: 0 none;
        padding: 10px;
    }

    .pagination-wrapper ul li:nth-last-child(2) a {
        background: transparent;
        border-color: transparent;
    }

    .pagination-wrapper ul li.prev, .pagination-wrapper ul li.next {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .pagination-wrapper ul li {
        padding: 2px;
        vertical-align: middle;
    }
}

@media screen and (max-width: 359px) {
    .logo a img {
        height: 50px;
    }

    .newsletter .form .form-control {
        font-size: 13px;
    }

    .category-item.slick-slide .category-icon {
        width: 80px;
    }

    #content, .subpage #content {
        padding-top: 63px;
    }
}

@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-72: 60px;
        --font-65: 55px;
        --font-50: 42px;
        --font-48: 40px;
        --font-40: 34px;
        --font-38: 33px;
        --font-36: 32px;
        --font-35: 31px;
        --font-30: 26px;
        --font-26: 24px;
        --font-24: 22px;
        --font-22: 20px;
        --font-20: 19px;
    }
}

@media screen and (max-width: 1440px) {
    :root {
        --space-60: 50px;
        --space-50: 40px;

        --font-72: 54px;
        --font-65: 50px;
        --font-48: 36px;
        --font-40: 32px;
        --font-38: 31px;
        --font-36: 30px;
        --font-35: 29px;
        --font-30: 25px;
        --font-26: 23px;
        --font-24: 20px;
        --font-22: 19px;
        --font-20: 18px;


        --container-padding: 30px;
    }
}

@media screen and (max-width: 1366px) {
    :root {
        --space-25: 20px;

        --font-72: 52px;
        --font-65: 48px;
        --font-48: 34px;
        --font-40: 30px;
        --font-38: 29px;
        --font-36: 28px;
        --font-35: 27px;
        --font-30: 24px;
        --font-26: 22px;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --space-60: 40px;
        --space-50: 35px;
        --space-40: 30px;

        --font-72: 48px;
        --font-65: 40px;
        --font-48: 32px;
        --font-40: 28px;
        --font-38: 26px;

        --container-padding: 20px;
    }
}

@media screen and (max-width: 1139px) {
    :root {
        --space-60: 35px;
        --space-50: 30px;
        --space-40: 25px;
        --space-25: 15px;

        --font-72: 42px;
        --font-65: 35px;
    }
}

@media screen and (max-width: 960px) {
    :root {
        --space-60: 30px;
        --space-50: 25px;
        --space-40: 20px;

        --font-72: 40px;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --container-padding: 15px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --font-72: 37px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --font-72: 36px;
        --font-65: 32px;
        --font-48: 30px;
        --font-40: 26px;
        --font-38: 25px;
        --font-36: 24px;
        --font-35: 23px;
        --font-30: 22px;
        --font-28: 21px;
        --font-26: 20px;
        --font-24: 18px;
        --font-22: 16px;
        --font-20: 16px;
    }
}

@media screen and (max-width: 424px) {
    :root {
        --font-72: 30px;
        --font-65: 30px;
        --font-48: 24px;
        --font-40: 22px;
        --font-38: 21px;
        --font-36: 20px;
        --font-35: 20px;
        --font-30: 20px;
        --font-28: 18px;
        --font-26: 17px;
        --font-24: 17px;
        --font-22: 16px;
        --font-20: 16px;
        --font-18: 16px;
    }
}