@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: #181818;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        pointer-events: none;
        transform: translateY(100%);
        -ms-transform: translateY(100%);
    }

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

    header.stickable .rwdPanel.active {
        opacity: 1;
        height: auto;
    }

    .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(255, 255, 255, 0.1);
}

.rwdMenu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 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: #fff;
    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 transparent;
    background: var(--color-primary);
}

.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) {
.affixHandler-middle.affixHandler-middle {
    padding-left: 100px;
    padding-right: 100px;
}
}

@media screen and (max-width: 1600px) {
    #main-menu li a {
        padding: 29px 20px;
    }

    .slider {
        height: 568px;
    }

    .about-text {
        width: 53.7%;
        margin-left: 3%;
        margin-right: -21.7%;
        padding-left: 7%;
        position: relative;
        display: flex;
        align-items: center;
        padding-right: 0;
    }

    .about-text {
        width: 53.7%;
        margin-left: 3%;
        margin-right: -21.7%;
        padding-left: 7%;
    }

    .about-text-content {
        padding-right: 10%;
    }

    .opinion-item {
        padding: 45px;
    }

    .opinion-slider {
        margin: 0 -45px;
    }
	
	.car-fee-value {
    font-size: 13px;
}

.car-fee {
    font-size: 15px;

}


.details-box-right-content, .details-box-right-content.affixHandler-top, .details-box-right-content.affixHandler-bottom {
    border-radius: var(--border-radius) 0 0 0;
    background: #f5f5f5;
    padding: 60px 90px 60px 90px;
}

.subpage .form-group.form-group-lg.col-custom-5:nth-child(5) {
    padding-left: 5px;
}

.form-group.form-group-lg.col-custom-5:last-child {
    padding-left: 5px;
}

.filter-box-wrapper .btn.btn-link {
    margin-left: 0;
}

.affixHandler-middle.affixHandler-middle {
    padding-left: 90px;
    padding-right: 90px;
}
}

@media screen and (max-width: 1440px) {
    ul.slick-dots li .slide-nb {
        margin: 0 auto 15px;
    }

    .title1 {
        margin-bottom: 20px;
    }

    .rent-box {
        margin: -30px -15px;
    }

    .rent-item {
        padding: 30px 15px;
    }

    .opinion-item {
        padding: 40px;
    }

    .opinion-slider {
        margin: 0 -40px;
    }

    .contact-bottom-right .btn.btn-lg.btn-primary.has-icon {
        padding: 0 10px 0 5px;
    }

    .contact-bottom-right .btn-icon {
        margin-right: 0;
    }

    .details-box .car-features ul {
        column-gap: 25px;
    }
	
	.contact-links-bottom {
    width: 71%;
}

.rent-link {
    padding: 15px;

}

.details-box-right-content {
    padding: 60px 80px 60px 80px;
}

.details-box-right-content.affixHandler-top, .details-box-right-content.affixHandler-bottom {
    padding-left: 80px;
    padding-right: 80px;
}

.affixHandler-middle.affixHandler-middle {
    padding-left: 80px;
    padding-right: 80px;
}
}

@media screen and (max-width: 1366px) {
    .rent-box {
        margin: -25px -10px;
    }

    .rent-item {
        padding: 25px 10px;
    }

    .about-text-content {
        padding: 30px;
    }

    .work-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 35px;
    }

    .contact-link-bottom .btn-icon {
        margin-right: 10px;
    }

    .footer-right {
        width: 27%;
    }

    .opinion-item {
        padding: 35px;
    }

    .opinion-slider {
        margin: 0 -35px;
    }

    .details-box .car-features ul {
        column-gap: 20px;
    }
	
    .details-box-right-content {
        padding: 50px;
    }

.details-box-right-content.affixHandler-top, .details-box-right-content.affixHandler-bottom {
    padding-left: 50px;
    padding-right: 50px;
}

.filter-box .form-element-option-text {
    font-size: 13px; margin-left:10px;
}

.filter-box .form .checkboxradio-container {
    padding-right: 0;
}

.filters-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

   .filters-left .col-lg-3 { width:33.33%	}
   
   .affixHandler-middle.affixHandler-middle {
    padding-left: 50px;
    padding-right: 50px;
}
}

@media screen and (max-width: 1280px) {
    #main-menu li a {
        padding: 29px 16px;
    }

    .slider {
        height: 482px;
    }

    .feature-icon {
        margin-right: 8px;
    }

    .work-icon, .subpage .work-icon {
        width: 110px;
        height: 110px;
        margin-bottom: 30px;
    }

    .opinion-item {
        padding: 30px;
    }

    .opinion-slider {
        margin: 0 -30px;
    }

    .contact-bottom-left {
        width: 28%;
        padding-right: 15px;
    }

    .contact-bottom-middle {
        width: 35%;
        padding: 0 1%;
    }

    .details-box .car-features ul {
        column-gap: 15px;
    }


    .details-box-left {
        width: 50%;
    }

    .details-box .car-features li strong {
        width: 130px;
    }

    .details-box .feature-icon {
        margin-right: 7px;
    }

    .car-features li {
        font-size: 13px;
    }
.btn-auto-file .file-name, .row.buttons-details .col-xs-6 .btn, .row.buttons-details .col-xs-6 button {
    font-size: 13px;

}
}

@media screen and (max-width: 1200px) {
    #main-menu li a {
        padding: 29px 11px;
    }

    .top nav.social-list {
        margin-left: 13%;
    }

    .slider {
        height: 460px;
    }

    .rent-link {
        padding: 15px;
    }

    .rent-box {
        margin: -20px -10px;
    }

    .rent-item {
        padding: 20px 10px;
    }

    .work-icon, .subpage .work-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .opinion-item {
        padding: 25px;
    }

    .opinion-slider {
        margin: 0 -25px;
    }
	
	    .details-box-right-content.affixHandler-top, .details-box-right-content.affixHandler-bottom {
        padding-left: 30px;
        padding-right: 30px;
    }
	
	.subpage .work-item {
    width: calc(33.33% - 50px);
    padding-bottom: calc(33.33% - 50px);
    position: relative;
}
}

@media (min-width: 1140px) and (max-width: 1200px) {
.car-fee {
    flex-direction: column;
}

.product-label {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 180px;
    font-size: 11px;

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

    }

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

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

    .mainsearch.rwdPanel .mainsearch-search {
        padding: 0;
        margin: 15px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }

    .mainsearch.rwdPanel .mainsearch-submit svg {
        fill: rgba(0, 0, 0);
    }

    button.mainsearch-rwd-button {
        width: 46px;
        height: 46px;
        background: var(--color-primary);
        color: #fff;
        margin-top: 5px;
        margin-bottom: 5px;
        margin-right: 10px;
    }

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0 30px;
    }

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        padding: 0;
    }

    .header-bottom {
        justify-content: flex-end;
    }

    .header-top-left {
        width: auto;
    }

    .header-top-left {
        width: auto;
        margin-left: 10px;
    }

    .header-top-right {
        width: 100%;
        justify-content: center;
    }
    .top nav.social-list {
        margin-left: 10px;
    }

    .header-top {
        display: none;
    }

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

    .logo {
        float: none;
        width: auto;
    }

    .logo a img {
        height: 50px;
    }

    .top-right {
        width: auto;
    }

    #content {
        padding-top: 72px;
    }

    ul.slick-dots {
        bottom: 20px;
    }

    img.mask2 {
        top: 0;
        bottom: 0;
        width: 80%;
    }

    .slider {
        height: auto;
    }

    .slider .container {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .slider-box {
        padding-top: 30px;
        padding-bottom: 100px;
    }

    .main-slider .slick-track {
        position: relative;
        top: 0;
        left: 0;
        display: flex;
    }

    .slider .slide {
        height: auto;
    }

    .slider-photo {
        width: 100%;
        padding-top: 40px;
    }

    .slider-text {
        width: 100%;
    }

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

    .slider-photo img {
        max-width: 70%;
    }

    .filter-box-title {
        width: 100%;
    }

    .filter-box {
        width: 100%;
    }

    .rent-item {
        width: 33.33%;
    }

    .work-name {
        font-size: 16px;
    }

    .work-icon, .subpage .work-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .logotype {
        width: 160px;
        height: 160px;
        margin: 10px;
    }

    .footer-right {
        width: 33%;
    }

    .contact-data-box {
        display: flex;
        flex-wrap: wrap;
        margin: -1.5%;
    }

    .contact-data-item {
        width: 22%;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin: 1.5%;
        padding-bottom: 22%;
        position: relative;
    }

    .contact-data-item-content {
        padding-top: 15%;
    }

    .contact-data-icon {
        margin-bottom: 15px;
    }

    .sorting {
        width: 280px;
        margin-left: 15px;
    }

    .opinion-item {
        padding: 20px;
    }
	
	
	  .opinion-page  .opinion-item {

        width: 33.33%;
    }

    .opinion-slider {
        margin: 0 -20px;
    }

    .contact-bottom-box {
        flex-wrap: wrap;
    }

    .contact-bottom-left {
        width: 100%;
        padding-right: 0;
    }

    .contact-bottom-right {
        width: auto;
    }

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

    .details-box-left {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .details-box-right {
        width: 100%;
    }

    .details-box .gallery-box {
        max-width: 790px;
        margin: 0 auto 30px;
    }

    .details-box .gallery-box + .buttons-center {
        margin-bottom: 30px;
        padding-bottom: 0;
    }

    .box-header-info {
        padding-left: 10px;
    }

    .details-box-container .box-header .page-heading-title {
        text-align: center;
        width: 100%;
    }

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

    .box-header-info {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
    }

    .details-box-right {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
	
	
	.about-box-slider:before {
    border-radius: 50px 0 0 0;
}

.about-photo1 {
    margin-bottom: 0px;
}

.rwdMenu .social-list > ul {
    display: flex;
}

.rwdMenu a.link {
    margin-right: 15px;
}

.map-box-container iframe {
    margin-top: 0;
}

.shop-product-box {
    width: 33.33%;
}

.product-label, .rent-box.rent-box-view2 .product-label {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 180px;
    font-size: 11px;

}

.details-box-right {
    min-height: 1px!important;
}

    .details-box-right-content.affixHandler-top {
        position: relative;
        top: auto !important;
        padding: 60px 30px 60px 30px;
        max-width: 800px;
        width: 100% !important;
    }
	
    .details-box-right-content.affixHandler-bottom {
        padding: 60px 30px 60px 30px;
    }

    .affixHandler-bottom.affixHandler-bottom {
        position: relative;
        bottom: auto;
        width: auto !important;
    }

.affixHandler-middle.affixHandler-middle {
    position: relative;
    top: auto!important;;
    width: auto!important;
}

.rent-box.rent-box-view2 .rent-link {
    padding: 20px;
}

.rent-box.rent-box-view2 .rent-item {
    width: 33.33%;
    padding: 15px;
    position: relative;
}

.col-custom-5 {
    width: 25%;
}

.search-group .shop-product-box {
    width: calc(33.33% - 20px);

}
}

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

    .about-photo1 {
        display: none;
    }

    .about-text-content {
        padding: 30px;
        margin-bottom: 0;
    }

    .logotype {
        width: 155px;
        height: 155px;
    }

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

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

    .footer-right {
        width: 100%;
    }

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

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

    footer .show-hide {
        display: none;
    }

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


    .footer-box:last-child {
        width: 100%;
    }
	
	
    .footer-right .footer-box:last-child {
 
        border: 0 none;
    }

    img.logo-min {
        margin: 0 auto;
        display: block;
    }

    .footer-contact {
        padding-bottom: 20px;
    }

    .opinion-item {
        padding: 15px;
    }

    .opinion-slider {
        margin: 0 -15px;
    }
	
	.about-box-slider {
    width: 100%;
}

.car-fee {
    flex-direction: column;
}

.newsletter button.btn.btn-primary {
  width: 100px;
}

.offer-text {
    width: 48%;
}
}


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


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

    .rent-item, .rent-box.rent-box-view2 .rent-item {
        width: 33.33%;
        padding: 5px;
    }
	
	.rent-box.rent-box-view2 .rent-item:after{ display:none;}

    .rent-box, .rent-box.rent-box-view2 {
        margin: -5px;
    }

    .logotype {
        width: 150px;
        height: 150px;
    }

    .qualifications-right {
        width: 62%;
        padding-right: 0;
    }

    .contact-data-item {
        width: 24%;
        margin: 0.5%;
        padding-bottom: 24%;

    }

    .contact-data-box {
        margin: -0.5%;
    }

    .rent-box-header {
        flex-wrap: wrap;
    }

    .rent-count {
        width: 100%;
        margin-bottom: 20px;
    }

    .rent-box-right {
        width: 100%;
        justify-content: space-between;
    }

    .grid-item {
        margin-bottom: 50px;
        flex-wrap: wrap;
    }

    .grid-text {
        width: 100%;
        margin-bottom: 30px;
    }

    .grid-photo {
        width: 100%;
    }

    .grid-text-content {
        max-width: 100%;
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    .grid-item:nth-child(even) .grid-text .grid-text-content {
        padding-right: var(--container-padding);
        padding-left: var(--container-padding);
    }

    .opinion-item {
        padding: 10px;
    }

    .opinion-slider {
        margin: 0 -10px;
    }
	
		.subpage .work-name {
    padding: 0 34px;
    line-height: 115%;
    font-size: 14px;
}

    .rent-box.rent-box-view2 .rent-link {
        padding: 15px;
    }
	
	    .col-custom-5 {
        width: 33.33%;
    }
}


@media screen and (max-width: 820px) {
    .rent-item, .rent-box.rent-box-view2 .rent-item {
        width: 50%;
    }

    .about-text {
        width: 74%;
        margin-left: 3%;
        margin-right: -32%;
        padding-left: 7%;
    }

    .work-name {
        font-size: 14px;
    }

    .logotype {
        width: 145px;
        height: 145px;
    }

    .newsletter button.btn.btn-primary {
        margin-left: 10px;
    }

    .newsletter {
        width: 48%;
    }

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

    .header-box .btn {
        position: relative;
        margin: 10px auto 0;
    }

    .contact-data-item:first-child {
        display: none;
    }

    .contact-data-item {
        width: 32%;
        padding-bottom: 32%;
    }
	
.shop-product-box  {
    width: 50%;
}

.search-group .shop-product-box{        width: calc(50% - 20px);}

    .details-box-right {
        padding: 0;
    }
	
	.filters-box-inner {
    flex-wrap: wrap;
}
	
	    .filters-left{
        width:  100%;
    }
	
		    .filters-right{
        
		width:  100%; flex-direction:row;
    }
}

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

    .contact-link .caption {
        display: none;
    }

    .work-icon, .subpage .work-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .logotype {
        width: 140px;
        height: 140px;
    }

    .qualifications-left {
        width: 38%;
        margin-left: -3%;
    }

    .details-box .gallery-list {
        margin: -10px;
    }

    .details-box .gallery-list-item {
        padding: 10px;
    }
	
	.filter-box-wrapper .form-group.form-group-lg.col-sm-6.col-md-4.col-lg-3 {
    width: 100%;
}

.about-box-slider ul.slick-dots {
    bottom: 75px;
}
    .opinion-page .opinion-item {
        width: 50%;
    }
	
	.work-icon, .subpage .work-icon {
    width: 45px;
    margin-bottom: 5px;
}

    .work-name {
        font-size: 13px;
        line-height: 119%;
        padding: 0 28px;
    }
.details-box-right-content{
        padding: 50px 30px 50px 30px;
    }
}

@media screen and (max-width: 700px) {
    .offer-item {
        flex-wrap: wrap;
    }

    .offer-text {
        width: 100%;
        margin-bottom: 30px;
    }

    .offer-photo {
        width: 100%;
    }

    .cooperation-item {
        flex-wrap: wrap;
    }

    .cooperation-text {
        width: 100%;
        margin-bottom: 31px;
    }

    .cooperation-photo {
        width: 100%;
    }
	
	    .newsletter button.btn.btn-primary {
        width: 78px;
    }
	
	.row.buttons-details .col-xs-6 {
    width: 100%;
}

.col-custom-5 {
        width: 50%;
    }
}

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

    .text table,
    .text iframe,
    .text object {
        max-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;
    }

    .work-item, .subpage .work-item {
        width: 52%;
        padding-bottom: 52%;
        margin: 0 auto 65px;
    }

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

    .work-item:after {
        top: calc(100% + 33px);
        left: 50%;
        margin-left: -25px;
        transform: rotateZ(90deg);
        width: 50px;
        height: 50px;
        padding-bottom: 50px;
    }

    .logotype {
        width: 135px;
        height: 135px;
    }

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

    .newsletter-left {
        width: 100%;
    }

    .newsletter {
        width: 100%;
    }

    .accordion-arrow {
        right: 10px;
    }

    .accordion-header-content {
        padding: 4px 50px 5px 20px;
    }

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0 10px;
    }

    .contact-data-item {
        width: 100%;
        padding-bottom: 0;
    }

    .contact-data-item-content {
        position: relative;
        padding: 30px;
    }

    .contact-bottom-middle {
        width: 100%;
        text-align: center;
    }

    .contact-bottom-middle img {
        display: block;
        margin: 0 auto;
        max-width: 199px;
    }

    .contact-bottom-box {
        text-align: center;
    }

    .contact-bottom-right {
        width: 100%;
        justify-content: center;
    }
	
    .newsletter-left {
        width: 100%;
        background: none !important;
    }
	
	.newsletter-left .text.txt {
    padding-right: 0;
    -webkit-line-clamp: none;
}

.offer-box-container + .work-box-container {
    padding-bottom: 0;
}

.label-select {
    font-size: 14px;
}

    .work-icon, .subpage .work-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

.work-name {

    font-size: var(--font-20);
    line-height: 1.5;
    padding: 0 24px;
}
}

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

    .rent-item, .rent-item, .rent-box.rent-box-view2 .rent-item {
        width: 100%;
    }

    .rent-photo img {
        width: 100%;
    }

    .about-text {
        width: 100%;
        margin-right: -46%;
    }

    .logotype {
        width: 130px;
        height: 130px;
    }

    .accordion-arrow {
        right: 7px;
    }

    .accordion-header-content {
        padding: 4px 50px 5px 15px;
    }

    .qualifications-left {
        display: none;
    }

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

    .check-offer-box .btn.has-arrow {
        padding-right: 40px;
    }

    .details-box .car-features ul {
        column-count: 1;
    }

    .equipment-box ul {
        column-count: 1;
    }

    .files-list ul li {
        width: 100%;
    }

    .configuration-change {
        flex-direction: column;
    }

    .configuration-left {
        align-items: center;
        margin-bottom: 14px;
    }
	
	.about-slide {
    flex-direction: column-reverse;
}

.about-photo2 {
    margin: 0;
    width: 100%;
}

    .about-text {
        width: 100%;
        margin: 0;
        padding-left: 0;
    }

.about-text .v-title {
    left: 13px;
}


.about-text-content{margin-left: 34px;}

    .about-text-content:only-child {
    margin-left: 0;
}

.about-box-container-wrapper:before {
    border-radius: 50px 0 0 0;
}

.slider-navigation {
    position: relative;
    top: auto;
    margin: 0 auto;
    text-align: center;
    margin-top: 10px;
}

.shop-product-box {
    width: 100%;
}

.shop-product-box .product-image img {
    width: 100%;
}

.rent-box-right {
    flex-wrap: wrap;
}

.list-view {
    text-align: center;
    margin: 20px auto;
}

.sorting-box {
    width: 100%;
}

.sorting {
    width: auto;
    flex-grow: 1;
}

.map-box-container iframe {
    height: 100vh;
}

.rent-box.rent-box-view2 .rent-item:after {
display:none;
}

.search-group .shop-product-box {
        width: calc(100% - 20px);
    }
}

@media screen and (max-width: 520px) {
    .select-box {
        width: 100%;
    }

    .details-buttons .btn {
        width: 100%;
    }

    .details-buttons {
        flex-wrap: wrap;
    }
	
	.col-custom-5 {
        width: 100%;
    }
}


@media screen and (max-width: 480px) {
    .modal-footer > .btn {
        width: 100%;
    }

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

    .about-box-slider ul.slick-dots {
        display: none !important
    }

    .logotype {
        width: 125px;
        height: 125px;
    }

    .accordion-arrow {
        right: 5px;
    }

    .accordion-header-content {
        padding: 4px 50px 5px 10px;
    }

    .check-offer-box .btn.has-arrow {
        height: auto;
        white-space: normal;
        text-align: left;
        padding-right: 50px;
        line-height: 158%;
        padding-top: 11px;
        padding-bottom: 11px;
    }
	
	.offer-box {
    padding-top: 0;
}

.services-box ul li {
    width: 100%;
}

    .details-box-right {
        padding: 0;
    }
}

@media screen and (max-width: 424px) {
    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .pagination-wrapper ul li {
        padding: 0;
    }

    .logo a img {
        height: 40px;
    }

    .logotype {
        width: 120px;
        height: 120px;
    }

    .work-item, .subpage .work-item {
        width: 80%;
        padding-bottom: 80%;
        margin: 0 auto 70px;
    }

    .accordion-arrow {
        right: 0;
    }

    .accordion-header-content {
        padding: 4px 40px 5px 5px;
    }

    .contact-bottom-right .btn.btn-lg.btn-primary.has-icon {
        height: auto;
        white-space: normal;
        line-height: 1;
        text-align: left;
    }

    .details-box-right {
        border-radius: 0;
        padding: 10px;
    }
	
	form#newsletter-modal-form .input-group {
    display: block;
}

form#newsletter-modal-form .input-group-addon:first-child {
    border: 1px solid rgba(0,0,0,0.1);
    height: 46px;
    border-radius: 5px;
}

form#newsletter-modal-form .form-control, form#newsletter-modal-form.form .form-control {
    border-radius: 5px !important;
    text-align: center;
}

    .opinion-page .opinion-item {
        width: 100%;
    }
	
	    .packages-box ul li {
        padding: 10px;
        font-size: 14px;
    }
	
	.configuration-change .btn {
    padding: 0 10px;
}

.details-price-box {
    flex-wrap: wrap;
}

.details-price-left {
    width: 100%;
    margin-bottom: 10px;
}

div#installment-price {
    width: 100%;
    text-align: left;
    padding-left: 0;
}

.packages-box ul {
    justify-content: flex-start;
}

.details-box-right-content {
        padding: 50px 15px 50px 15px;
    }
	
	    .packages-box ul li {
        margin: 0;
    }
	
	.modal-title {
    font-size: 20px;
}
}

@media screen and (max-width: 359px) {
    .logo a img {
        height: 34px;
    }

    .footer-contact {
        flex-wrap: wrap;
        padding-bottom: 30px;
    }

    .footer-box .social-list {
        width: 100%;
    }

    .contact-links-bottom {
        width: 100%;
    }

    .work-item, .subpage .work-item {
        width: 90%;
        padding-bottom: 90%;
        margin: 0 auto 65px;
    }

    .check-offer-box .btn.has-arrow {
        padding-left: 10px;
    }

    .packages-box ul li {
        padding: 9px;
        margin: 0;
    }

    .packages-box ul {
        justify-content: center;
    }
	
	.newsletter input.form-control.form-control-email {
    font-size: 13px;
    padding-left: 14px;
}
}

@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-64: 50px;
        --font-48: 40px;
        --font-40: 36px;
        --font-36: 32px;
        --font-32: 28px;
        --font-30: 26px;
        --font-24: 22px;

        --border-radius: 150px;
    }
}

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

        --font-64: 48px;
        --font-48: 36px;
        --font-40: 34px;

        --container-padding: 30px;
        --border-radius: 100px;
    }
}

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

        --font-64: 44px;
        --font-48: 34px;
        --font-40: 32px;
        --font-36: 28px;
        --font-32: 26px;
        --font-30: 24px;
        --font-18: 17px;
    }
}

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

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

        --container-padding: 20px;
        --border-radius: 75px;
    }
}

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

        --font-64: 32px;
        --font-48: 30px;
        --font-40: 28px;

        --border-radius: 50px;
    }
}

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

        --border-radius: 45px;
    }
}

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

        --border-radius: 40px;
    }
}

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

        --border-radius: 35px;
    }
}

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

        --border-radius: 30px;
    }
}