
/*
#35414d
#c4c6c8
#9ca1a5
*/




body {
    margin: 0;
    font-size: 14px;
    font-family: "Open Sans";
}

* {
    outline: none;
}

/* common */
a {
    text-decoration: none;
    color: #35414d ;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

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

.text-justify {
    text-align: justify;
}

.list-unstyled {
    list-style: none;
}

.list-striped li {
    background-color: #fff;
}

.list-striped li:nth-child(odd) {
    background-color: #9ca1a522;
}

.table {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}


#nav-icon {
    display: none;
}

/* buttons */
.btn-red,
.btn-primary,
.btn-secondary,
input[type=submit],
submit{
    width: auto;
    border: 0;
    color: #fff;
    font-size: 14px;
    padding: 5px 20px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    background-color: #06141f;
    border: 2px solid #06141f;
    position: relative;
    text-decoration: none;
    z-index: 1;
    border-radius: 2rem;
    text-transform: uppercase;
    &:hover{
        background-color: #fff;
        color: #06141f;
    } 
}

.btn-secondary{
    background-color: #fff;
    color: #06141f;
    &:hover{
        background-color: #06141f !important;
        color: #fff !important;
    }
}

/* box */
.box{
    background:#f7f7f8;
    padding: 2rem;
}

/* nav */
nav {
    position: fixed;
    z-index: 10;
    width: 100%;
    background-color: #05141f;
}

nav .header-content {
    display: table;
    width: 100%;
}

nav .header-content > * {
    display: table-cell;
    vertical-align: middle;
}

nav .logo img {
    height: 50px;
    margin: 20px 0;
}
nav .logo.logo-ch img {
    height: 40px;
    margin: 25px 0;
}

nav .logo h1{
    margin: 0;
}
nav .logo span {
    text-indent: -3333px;
    display: block;
    height: 0;
}
          
@media(min-width: 1200px){
  nav .logo{
      width: 200px;
  }
  nav .logo.logo-ch{
      width: 150px;
  }
}
/* nav */
nav .main-menu {
    text-align: right;
    max-width: 740px;
}

nav .main-menu ul {
    list-style: none;
    padding-left: 0;
}

nav .main-menu ul li {
    position: relative;
    display: inline-block;
    padding-right: 10px;
    padding-left: 5px;
}

nav .main-menu ul > li + li:before {
    content: '|';
    color: #06141f;
    margin-left: -10px;
    margin-right: 4px;
}

nav .main-menu a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    &:hover{
        text-decoration: underline;
    }
}

nav .main-menu .submenu {
    display: none;
    position: absolute;
    z-index: 2;
    padding-top: 38px;
}

nav .main-menu .submenu ul {
    background-color: #06141f;
    list-style: none;
    padding: 20px;
}

nav .main-menu .submenu ul:before {
    content: '';
    display: block;
    position: absolute;
    top: 28px;
    left: 35px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #06141f transparent;
}

nav .main-menu .submenu ul a {
    color: #fff;
    display: block;
    font-size: 17px;
    white-space: nowrap;
    text-align: left;
    padding: 5px 20px 5px 0;
}

nav .main-menu .submenu ul a:hover {
    text-decoration: underline;
}

nav .main-menu .submenu ul a:after {
    content: '';
    display: block;
    position: absolute;
    top: 13px;
    right: 0px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -ms-transform: rotate(45deg);
    -ms-transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: 50% 50%;
    transform: rotate(45deg);
    transform-origin: 50% 50%;
}

nav .main-menu li:hover .submenu {
    display: block;
}

@media(max-width: 1200px) {
    nav .logo img {
        height: 30px;
    }

    nav .logo .chevrolet-link img {
        height: 30px;
    }
}

@media(max-width: 992px) {
    nav .logo .chevrolet-link {
        display: none;
    }
}

@media(max-width: 767px) {
    nav .logo img {
        margin: 0 0;
    }

    nav .main-menu {
        display: none;
    }

    nav.open .main-menu {
        position: absolute;
        display: block;
        width: 100%;
        left: 0;
        top: 77px;
        z-index: 2;
        background-color: #06141f;
        overflow: auto;
        border-bottom: 3px solid #06141f;
    }

    nav.open .main-menu ul {
    }

    nav.open .main-menu ul li + li:before {
        display: none;
    }

    nav.open .main-menu ul li {
        display: block;
        text-align: center;
    }

    nav.open .main-menu ul li a {
        display: block;
        padding: 5px;
    }

    #nav-icon {
        width: 40px;
        height: 24px;
        padding: 0;
        position: relative;
        margin: 10px 0 10px auto;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }

    #nav-icon span {
        display: block;
        position: absolute;
        height: 5px;
        width: 100%;
        background: #fff;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    #nav-icon span:nth-child(1) {
        top: 0px;
    }

    #nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
        top: 10px;
    }

    #nav-icon span:nth-child(4) {
        top: 20px;
    }

    #nav-icon.open span:nth-child(1) {
        top: 18px;
        width: 0%;
        left: 50%;
    }

    #nav-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #nav-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #nav-icon.open span:nth-child(4) {
        top: 18px;
        width: 0%;
        left: 50%;
    }
}

@media(max-width: 500px) {
    nav.open .main-menu{
        top: 68px;
    }
}

nav .container{
    position:relative;
}
nav .header-link{
    position: absolute;
    right: 20px;
}
nav .header-link a{
    background-color: #fff;
    padding: 1px 5px;
    font-weight: 600;
}
nav .header-link a:hover{
    text-decoration: underline;
}

@media(max-width: 767px){
    nav .header-link{
        position: relative;
        right: 0;
    }
    nav .header-link a{
        display: block;
        text-align: center;
        margin: 0 -15px;
    } 
}
/* slick */
.slick-slide img {
    max-width: 100%;
}

.video-background video{
    width: 100%;
}

/* slick banner */
.slick-banner{
    background-color: #000000;
}
.slick-banner .slick-slide {
    position: relative;
    background-color: black;
}

.slick-banner .slick-slide .text {
    position: absolute;
    bottom : 110px;
    z-index: 3;
    color: #fff;
    width: 100%;
}

.slick-banner .slick-slide .text .button.right {
    float: right;
}
.slick-banner .slick-slide .text a {
}


.slick-banner .slick-slide .text a:hover {
    opacity: 0.75; 
}

.slick-banner .slick-slide .text span {
    font-size: 50px;
    font-weight: 100;
    font-style: italic;
}

.slick-dots {
    position: absolute;
    bottom: 0;
    list-style: none;
    text-align: center;
    width: 100%;
    padding-left: 0;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button {
    background-color: #fff;
    border: 0px;
    margin: 0 5px;
    color: transparent;
    height: 6px;
    width: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
}

.slick-dots li.slick-active button {
    background-color: #35414d;
}

nav + section {
    padding-top: 94px;
}

@media(max-width: 1200px){
    nav + section {
        padding-top: 68px;
    }
}

@media(max-width: 992px) {
    .slick-banner .slick-slide .text span {
        font-size: 30px;
    }
}

@media(max-width: 767px) {
    .slick-banner .slick-slide .text {
        position: relative;
        bottom: 0;
        background-color: #000;
        padding: 10px 0 30px 0;
    }
    .slick-banner .slick-slide .text span {
        font-size: 25px;
    }
    .slick-dots{margin-bottom: 0;margin-top: 0;}
}

/* section new cars */
section.new-cars .new-cars-slick {
    padding: 20px 0;
}

section.new-cars header {
    background-color: #000000;
}

section.new-cars header h2 {
    color: #fff;
    text-align: center;
    font-style: italic;
    font-size: 50px;
}

section.new-cars header:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: #06141f transparent transparent transparent;
}

section.new-cars .new-cars-slick .slick-slide {
    text-align: center;
}

section.new-cars .new-cars-slick .slick-slide img {
    transform: scale(0.9);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

section.new-cars .new-cars-slick .slick-slide span {
    font-size: 22px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

section.new-cars .new-cars-slick .slick-slide a {
    opacity: 0;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

section.new-cars .new-cars-slick .slick-slide:hover img {
    transform: scale(1)
}

section.new-cars .new-cars-slick .slick-slide:hover a, section.new-cars .new-cars-slick .slick-slide.slick-current a {
    opacity: 1;
}

@media(max-width: 1200px) {
    section.new-cars header h2 {
        font-size: 40px;
    }
}

@media(max-width: 992px) {
    section.new-cars header h2 {
        font-size: 30px;
    }
}

/* section page content */
.page-content header{
    background-color: #06141f;
    color: #fff;
    margin-bottom: 20px;
}

.page-content header h2 {
    font-size: 50px;
    line-height: 1em;
    font-style: italic;
    margin: 20px 0;
}

.page-content header h2 small {
    font-size: 30px;
}

@media(max-width: 1200px) {
    .page-content header h2 {
        font-size: 40px;
        margin: 20px 0;
    }

    .page-content header h2 small {
        font-size: 25px;
    }
}

@media(max-width: 992px) {
    .page-content header h2 {
        font-size: 30px;
        margin: 15px 0;
    }

    .page-content header h2 small {
        font-size: 20px;
    }
}

@media(max-width: 767px) {
    .page-content header h2 {
        font-size: 20px;
    }

    .page-content header h2 small {
        font-size: 16px;
    }
}

.leasing-wrapper{
    text-align: center;
    h3{
        margin: 0;
    }
    .leasing-box{
        border-radius: 1rem;
        display: flex;
        flex-direction: column;
        min-width: 15rem;
        strong{
            font-size: 1.4rem;
        }
        .lb-price{
            background-color: #05141f;
            color: #fff;
            padding: .5rem;
            margin: 0.25rem 0;
        }
        .lb-other{
            span{
                font-size: 1.rem !important;;
            }
        }
    }
}

/* used-car */
.used-car-middle{
    word-break: break-word;
}
.used-car-top {
    padding-top: 20px;
}

.used-car-top .main-image {
    position: relative;
    border: 1px solid #dbdbdb;
}

.used-car-top .main-image img {
    width: 100%;
    display: block;
}

.used-car-top .main-image .flags {
    position: absolute;
}

.used-car-top .main-image .flags ul {
    padding: 0;
    overflow: hidden;
}

.used-car-top .main-image .flags ul li {
    display: block;
    position: relative;
    list-style: none;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    padding: 6px 30px 6px 50px;
    background-color: transparent;
    margin-left: -40px;
}

.used-car-top .main-image .flags ul li:before{
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #06141f;
    display: block;
    transform: skew(-15deg) scale(1);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    opacity: 1;
}

.used-car-top .images {
    padding: 20px;
    position: relative;
}
 
.used-car-top .images .slick-next, .used-car-top .images .slick-prev {
    color: transparent;
    border: 0px;
    background-color: transparent;
    position: absolute;
    display: block;
    left: 5px;
    top: 47px;
    cursor: pointer;
}

.used-car-top .images .slick-next {
    left: auto;
    right: -5px;
}

.used-car-top .images .slick-next:after, .used-car-top .images .slick-prev:after {
    content: '';
    display: block;
    position: relative;
    height: 18px;
    width: 18px;
    border-top: 2px solid #06141f;
    border-right: 2px solid #06141f;
    -ms-transform: rotate(-135deg);
    -ms-transform-origin: 50% 50%;
    -webkit-transform: rotate(-135deg);
    -webkit-transform-origin: 50% 50%;
    transform: rotate(-135deg);
    transform-origin: 50% 50%;
}

.used-car-top .images .slick-next:after {
    border: 0px;
    border-bottom: 2px solid #06141f;
    border-left: 2px solid #06141f;
}

.used-car-top .images .image {
    padding: 0 10px;
}

.used-car-top .images .image img {
    border: 1px solid #dbdbdb;
}

.used-car-top .specification ul {
    padding: 0px;
}

.used-car-top .specification ul li {
    padding: 5px;
}

.used-car-top .specification ul li span {
    display: inline-block;
    width: 35%;
}

.used-car-top .prices {
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    margin: 20px 0;
    padding: 20px;
    .catalog-price{
        margin-bottom: .5rem;
        *{
            display: inline;
            font-size: 12px;
        }
        strong{
            font-weight: normal;
            /* text-decoration: line-through; */
        }
    }
}

.used-car-top .prices span {
    font-size: 18px;
    display: block;
}

.used-car-top .prices .price {
    margin-top: 15px;
    line-height: 1em;
}

.used-car-top .prices .price strong {
    font-size: 42px;
    font-weight: 800;
    color: #06141f;
}

.used-car-top .prices .price-tax strong {
    font-size: 26px;
    font-weight: 800;
}

.used-car-top .prices ul li:hover {
    opacity: 0.9;
}

.used-car-top .prices ul li a {
    display: block;
    margin: 5px 0;
    color: #fff;
    padding: 5px 10px 5px 0px;
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    position: relative;
}
.used-car-top .prices ul li a:before {
    content: '';
    background-color: #35414d;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: skew(-20deg);
}

.used-car-top .prices ul li a:after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    right: 25px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -ms-transform: rotate(45deg);
    -ms-transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: 50% 50%;
    transform: rotate(45deg);
    transform-origin: 50% 50%;
}

.used-car-middle strong {
    display: block;
}

@media(max-width: 992px) {
    .used-car-top .prices {
        flex-wrap: wrap;
        text-align: center;
        padding: 2rem 0;
        
        & > *{
            flex-basis: 100%;
        }
    }

    .used-car-top .prices > * {
        display: initial;
    }

    .used-car-top .prices ul li a {
        display: inline-block;
        padding: 5px 40px;
    }

    .used-car-top .prices .price strong {
        font-size: 25px;
    }

    .used-car-top .prices .price-tax strong {
        font-size: 20px;
    }
}

/* used-car-list */
.car-items-wrap {
    margin-bottom: 20px;
}

.car-items-wrap .car-items {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-bottom: 1rem;
    gap: 1rem;

    
    & > * {
        flex-basis: calc(33.33% - 0.67rem);    
        
        @media(max-width: 767px) {
            flex-basis: calc(50% - .5rem);    
        }
        @media(max-width: 400px) {
            flex-basis: calc(100%);    
        }
        
        display: flex;
        flex-direction: column;
            
        outline: 2px solid transparent;
        border: 1px solid #c4c6c8;
        -webkit-transition: all 300ms ease-in-out;
        -moz-transition: all 300ms ease-in-out;
        -ms-transition: all 300ms ease-in-out;
        -o-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
        &:hover{
            outline: 2px solid #05141f;
            border: 1px solid #05141f;
        }

        
        .akce-label{
            text-align: center;
            margin: -20px -10px 10px -10px;
            padding: .2rem 1rem;
        }

    }
    ul{
        list-style: none;
    }
    .prices{
        margin-top: auto;
    }
    footer{
        
         text-align: center;   
    }
}

.akce-label{
    text-align: center;
    padding: .2rem 1rem;
    color: #fff;
    background-color:  #05141f;
    font-size: 1rem;
    text-transform: uppercase;
}

.used-car-list form {
    padding: 0 0 20px;
    margin-bottom: 0;
}

.used-car-list .row > * {
    padding: 0 10px;
}

.car-thumb-used {
    padding: 10px;
    font-size: 13px;
}

.car-thumb-used h3 {
    margin-top: 0;
}

.car-thumb-used h3 small {
    display: block;
    height: 17px;
    overflow: hidden;
}

.car-thumb-used img {
    width: 100%;
}

.car-thumb-used .bottom {
    display: table;
    width: 100%;
}

.car-thumb-used .bottom > * {
    display: table-cell;
}

.car-thumb-used .prices{
    text-align: center;
    .catalog-price{
        font-size: 12px;
        strong{
            font-weight: normal; 
            /*text-decoration: line-through;*/
        }
    }
    .price{
        color: #6a7179;
    }
    .price-tax{
        font-size: 25px;
    }
}

.car-thumb-used .bottom span strong {
    display: block;
    font-size: 20px;
}

.car-thumb-used a {
    text-align: center;
    margin-top: 10px;
}

.car-thumb-used ul {
    padding: 0;
    columns: 2;
}

.car-item-sorting {
    display: table;
    width: 100%;
}

.car-item-sorting > * {
    display: table-cell;
    vertical-align: middle;
}

.car-item-sorting label span {
    cursor: pointer;
    padding: 0 10px;
    color: #06141f;
}

.car-item-sorting span {
    text-align: right;
    font-weight: 600;
}

@media(max-width: 400px) {
    .car-items-wrap .car-items > * {
        width: 100%;
    }
}

/* breadcrumbs */
.breadcrumbs-wrapper {
    background-color: #fff;
    @media(max-width: 767px) {
        display: none;
    }
    
    .breadcrumbs {
        padding: 0;
        margin: 5px 0;
        display: flex;
        list-style: none;
        li { 
            a {
                color: #05141f;
                text-decoration: none;;
        font-size: 14px;
            }
            & + li a:before {
                content: '/';
                margin: 0 5px;
                color: #05141f;
            }
    
        }
    }
}

/* module form */
.module.form h2 {
    border-top: 2px solid #dbdbdb;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 30px;
    font-style: italic;
}

.form, .form-horizontal {
    margin-bottom: 30px;
}

.form .form-group, .form-horizontal .form-group {
    display: table;
    width: 100%;
    padding: 2px 0;
}

.form .form-group > *, .form-horizontal .form-group > * {
    display: table-cell;
    vertical-align: top;
}

.form label, .form-horizontal label {
    min-width: 100px;
    width: 20%;
}

.form-horizontal input, .form-horizontal select, .form-horizontal textarea {
    padding: 5px 10px;
    font-size: 16px;
    border: 0;
    border-bottom: 2px solid #9ca1a5;
    resize: none;
    width: 80%;
}

.form input:not([type=submit]), .form select, .form textarea {
    padding: 5px 10px;
    font-size: 16px;
    border: 0;
    border-bottom: 2px solid #9ca1a5;
    resize: none;
    width: 100%;
}

.form input[type=checkbox]{
    width: auto;
    float: left;
}

.form .control-group-checkbox{
    margin-left: 15px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.form_message {
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    color: green;
}

.form .help-block, .form .error, .form-horizontal .help-block {
    color: #b30000;
}

.form .form-actions {
    text-align: center;
}

.form-vertical h4 {
    margin: 15px 0 0 5px;
    font-size: 13px;
    color: #c4c6c8;
    font-weight: normal;
}

.form-vertical select, .form-vertical input, .form-vertical select {
    padding: 5px;
    font-size: 16px;
    border: 0;
    border-bottom: 2px solid #c4c6c8;
    width: 100%;
}

.form-vertical .car-check-list label{
    display: block;
    cursor: pointer;
}
.form-vertical .car-check-list label:before{
    content: '';
    width: 14px;
    height: 14px;
    background-color: #fff;
    border: 2px solid #c4c6c8;
    display: inline-block;
    margin-right: 5px;
    top: 2px;
    position: relative;
}
.form-vertical .car-check-list input:checked + label:before{
    background-color: #06141f;
}
.form-vertical .car-check-list input[type=checkbox]{
    display: none;
}

.form-vertical .car-range input {
    width: 48%;
}

@media(max-width: 992px) {
    .form-vertical .car-range input {
        width: 100%;
        margin-bottom: 2px;
    }
}

.form-vertical .car-range input + input {
    float: right;
}

.form-vertical .input-fulltext {
    position: relative;
}

.form-vertical .input-fulltext button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    border: 0;
    font-size: 20px;
    color: #06141f;
    cursor: pointer;
    padding: 3px 7px;
}

.form-vertical .submit {
    margin: 10px 0;
}

.car-item-sorting select {
    padding: 5px;
    font-size: 16px;
    border: 0;
    border-bottom: 2px solid #c4c6c8;
}

.search-cars-filter {
    padding-top: 8px;
}

/* page new-car */
.module.form-test h2 {
    font-weight: 100;
    border: 0;
}

.new-car .slide .text {
    top: 100px;
}

.new-car .slide .text .text-container {
    background-color: #000000cc;
    padding: 30px 30px;
    max-width: 50%;
}

.new-car .slide .text .text-container header {
    display: table;
    width: 100%;
    background-color: transparent;
}

.new-car .slide .text .text-container header > * {
    display: table-cell;
    vertical-align: middle;
    font-size: 30px; 
}

.new-car .slide .text .text-container header span + span {
    text-align: right;
}

.new-car .slide .text .text-container header small {
    font-size: 18px;
    font-style: italic;
    color: #ffffff;
    font-weight: 800!important;
    width: 50%;
}

.new-car .slide .text .text-container header small + span {
    text-align: right;
}

.new-car .slide .text .text-container header small strong {
    display: block;
    color: #fff;
    font-size: 36px;
    line-height: 1em;
}

.new-car .slide .text .text-container section {
    margin: 20px 0;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
}

.scroll-down a:after {
    content: '';
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    -ms-transform: rotate(45deg);
    -ms-transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: 50% 50%;
    transform: rotate(45deg);
    transform-origin: 50% 50%;
}

#slides {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
#slides ul{
    transform: translateX(15px)
}
#slides ul li{
    transform: skew(-25deg);
    background-color: #35414d;
}
#slides ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    font-weight: 600;
    padding: 10px 35px 10px 25px;
    background-position: 0 0;
    margin-bottom: 5px;
    display: block;
    transform: skew(25deg);
    text-align: center;
}

#slides ul li.active , 
#slides ul li:hover {
    background-color: #c4c6c8;
}


@media(max-width: 1200px) {
    .new-car .slide .text {
        top: 50px;
    }

    .new-car .slide .text .text-container header small strong {
        font-size: 30px;
    }

    .new-car .slide .text .text-container header > * {
        font-size: 25px;
    }

    #slides ul li a {
        font-size: 20px;
        padding: 5px 30px 5px 15px;
    }

    .new-car .slide .text .text-container {
        padding: 20px;
    }
}

@media(max-width: 992px) {
    .new-car .slide .text {
        top: 25px;
    }

    .new-car .slide .text .text-container header small strong {
        font-size: 25px;
    }

    .new-car .slide .text .text-container header > * {
        font-size: 20px;
    }

    #slides ul li a {
        font-size: 18px;
    }

    .new-car .slide .text .text-container {
        padding: 15px;
        max-width: 75%;
    }
}

@media(max-width: 767px){
    .new-car .slide .text .text-container header {
        display: block;
    }
    .new-car .slide .text .text-container header > * {
        display: block;
    }
    .new-car .slide .text .text-container header small{
        width: 100%;
    }
    .new-car .slide .text .text-container header small + span{
        text-align: left;
    }
}


@media(max-width: 600px) {
    .new-car .slide .text {
        top: 0px;
        position: relative;
    }
    .new-car .slide .text .container {
        padding: 0;
    }
    .new-car .slide .text .text-container{
        width: 100%;
        max-width: 100%;
        padding-right: 40px;
    }
}
/* choose-car */
.choose-car {
    padding: 50px 0;
}

.choose-car h2 {
    color: #fff;
    text-align: center;
    font-size: 50px;
    font-weight: 100;
    font-style: italic;
    margin-top: 0;
}

.choose-car .car-thumb {
    background-color: rgba(0,0,0,0.8);
    padding: 20px 40px 0 40px;
    color: #fff;
    text-align: center;
}

.choose-car .car-thumb img {
    max-width: 100%;
}

.choose-car .car-thumb small {
    color: #06141f;
    display: block;
    font-weight: 600;
    font-style: italic;
    text-align: left;
    font-size: 18px;
}

.choose-car .car-thumb h3 {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    font-style: italic;
    text-align: left;
}

.choose-car .car-thumb ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
}

.choose-car .car-thumb span {
    display: block;
    text-align: center;
    font-size: 32px;
    font-style: italic;
    font-weight: 100;
}

.choose-car .car-thumb a {
    margin: 20px 0 20px;
    text-decoration: none;
}

/* car-model-thumb */
.car-model-list {
    margin-bottom: 20px;
}

.car-model-thumb {
    text-align: center;
    position: relative;
}

.car-model-thumb h3 {
    font-size: 24px;
    position: relative;
    z-index: 2;
    margin-top: -20px;
    margin-bottom: 5px;
}

.car-model-thumb > span {
    font-size: 18px;
    padding-bottom: 10px;
    display: block;
}

.car-model-thumb > small {
    position: absolute;
    font-size: 14px;
    width: 110px;
    padding: 5px;
    line-height: 1em;
    display: block;
    color: #fff;
    background-color:#06141f; 
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.car-model-thumb img {
    display: block;
    margin: 0px auto 5px auto;
    position: relative;
    transform: scale(0.9,0.9);
    z-index: 1;
    width: 100%;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.car-model-thumb footer a:not(.btn) {
    color: #fff;
    opacity: 0;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.car-model-thumb:hover img {
    transform: scale(1,1);
}

.car-model-thumb:hover footer a {
    opacity: 1;
}

.car-model-thumb footer {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #35414d;
    padding: 0;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.car-model-thumb {
    footer {
        display: flex;
        justify-content: center;
        align-items: center;
        a:not(.btn):hover {
            color: #9ca1a5;
        }
        .links {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
                
    }
    &:Hover{
        footer{
            opacity: 1;
            
        }
    }
}

/* section social */
section.social {
    padding: 30px 0;
    background-color: #1f2123;
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: 100;
}

section.social a {
    display: inline-block;
    color: #141618;
    background-color: #fff;
    text-decoration: none;
    text-align: center;
    width: 40px;
    height: 40px;
    font-size: 25px;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 2px;
}

section.social a:hover {
    background-color: #06141f;
}

section.social a i {
    width: 20px;
    display: inline-block;
}

@media(max-width: 767px) {
    section.social {
        font-size: 18px;
    }
}

/*  section contacts */
section.contacts {
    background-color: #05141f;
    padding: 50px 0;
    color: #fff;
    font-weight: 100;
}

section.contacts .row + .row {
    margin-top: 20px;
}
/*articleDetail */

.slim-menu{
    list-style: none;
    text-align: center;
    width: 100%;
    border-bottom: 2px solid #35414d;
}
.slim-menu li{
    display: inline-block;
    margin: 5px 10px;
}
.slim-menu li a{
    color: #000000;
    font-size: 14px;
}
.slim-menu li.active a{
    font-weight: 600;
    color: #35414d;
}
article .articleDetail {
    min-height: 400px;
    padding-bottom: 2rem;
}

article .articleDetail img{
    max-width: 100%;
    display: block;
}

article .articleDetail .row.no-gap {
    margin: 0;
}

article .articleDetail .row.no-gap > *[class*=col-]{
    padding: 0;
}

article .articleDetail table{
    margin:20px 0;
    font-size:15px;
    line-height:1.6em;
    width:100%;
    border-spacing: 0;
}

article .articleDetail table th{
    font-weight:700;
    font-size:16px;
    border-bottom:3px solid #bb162b;
}
article .articleDetail table.noRedBord th{
    border-bottom:1px solid #c7c7c7;
}
article .articleDetail table th,
article .articleDetail table td{
    padding:9px 15px 9px 15px!important;
    text-align:left
}
article .articleDetail table.alignCenter td,article .articleDetail table.alignCenter th{
    text-align:center;
}
article .articleDetail table th:first-child,article .articleDetail table td:first-child{
    text-align:left
}
article .articleDetail table th:last-child,article .articleDetail table td:last-child{
    padding-right:0!important;
}
article .articleDetail table td{
    border-bottom:1px solid #c7c7c7
}
article .articleDetail table tr:hover th,
article .articleDetail table tr:hover td{
    background-color: #f4f4f4;
}

section.contacts strong {
    color: #ffffff;
}

section.contacts a:not(.btn) {
    color: #fff;
    text-decoration: none;
}

section.contacts a:not(.btn):hover {
    color: #06141f;
}

@media(max-width: 767px) {
    section.contacts {
        padding: 20px 0;
        text-align: center;
    }

    section.contacts .text-right {
        text-align: center;
        margin-top: 10px;
    }
}

.iframe-youtube {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.iframe-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slick-slider img{
    width: 100%;
}
/*articleDetail */
article .articleDetail {
    min-height: 400px;
}

/* footer */
section > footer {
    border-top: 1px solid #f7f8f833;
    background-color: #05141f;
    font-size: 16px;
    padding: 10px 0;
     
    &,*{
        color: #fff;    
        
        @media(max-width: 767px) {
            text-align: center !important;
        }
    }
    a{
        &:hover {
            text-decoration: underline;
        }
    }
}


section > footer a

@media(max-width: 767px) {
    section > footer, section > footer .text-right {
        text-align: center;
    }
}

/* page contents */
.page .articleDetail a:not(.btn) {
    color: #35414d;
    text-decoration: underline
}

.page .articleDetail a:not(.btn):hover {
    text-decoration: none;
}

.persons > div >p {
    border-left: 2px solid #c4c6c8;
    padding-left: 5px;
}

/* gallery */
.gallery-wrapper h2 {
    margin: 0;
}

.photoGallery {
    margin-bottom: 30px;
}

.photoGallery > div {
    padding: 5px;
}

#photoGallery .image img,
.photoGallery .photo img {
    display: block;
    width: 100%;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    transform: scale(1);
}

#photoGallery .image:hover img,
.photoGallery .photo:hover img {
    position: relative;
    box-shadow: 0px 0px 10px #000;
    z-index: 2;
    transform: scale(1.1);
}

#photoGallery .image{
    padding: 10px;
    text-align: center;
}

.iframe-fb-kia iframe {
    border: 0;
    overflow: hidden;
    margin: 10px auto 50px;
    display: block;
}



/* cookie */
body.cookie-visible .footer {
    padding-bottom: 30px;
}

@media(max-width: 992px) {
    body.cookie-visible .footer {
        padding-bottom: 50px;
    }
}

.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #35414d;
    text-align: center;
    color: #fff;
    z-index: 100;
    padding: 5px 0;
}

.cookie .text + a {
    color: #fff;
    padding: .5rem 1rem !important;
    margin: .5rem;
}

.cookie .text a {
    color: #fff;
    text-decoration: underline;
}
article img,
section.module .row img {
    max-width: 100%;
}

.video-wrapper{
    video{
        max-width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}