.product_technical_details{
    height: 600px;
}

.product_technical_details .row{
    --bs-gutter-x: 0;
}

.product_technical_details .details{
    background-color: #f6f6f6;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.product_technical_details .details h1{
    font-size: 28px;
}

.product_technical_details .details ul li{
    list-style: none;
}

.btn-product-test-drive{
    background-color: #c5132b;
    color: #fff;
    width: 220px;
}

.btn-product-test-drive:hover{
    color: #fff;
}

.btn-product-buy{
    background-color: #fff;
    color: #262626;
    width: 220px;
    -webkit-box-shadow: 0px 0px 36px -50px rgba(0,0,0,0.49);
    -moz-box-shadow: 0px 0px 36px -50px rgba(0,0,0,0.49);
    box-shadow: 0px 0px 36px -50px rgba(0,0,0,0.49);
}

.product_technical_details .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 992px) {
    .product_technical_details{
        height: auto;
    }

    .product_technical_details .details{
        order: 2;
        height: auto !important;
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .product_technical_details .image{
        order: 1;
        height: auto !important;
    }
}

/**
exterior
*/
.product_exterior .row{
    --bs-gutter-x: 0;
}

.product_exterior .img-pc, .product_exterior .img-mobile{
    width: 100%;
}

.hotspot-dot-loader {
    position: absolute;
    width: 1px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0 0 0 0 #b3b3b3;
    animation: l1 1.5s infinite;
    background-color: transparent;
    border: 2px solid rgba(237, 237, 237, 0.9);
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 8px;
}

.hotspot-dot-loader:hover{
    cursor: pointer;
}

.hotspot-data{
    width: 40%;
    background-color: #262626;
    color: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

.hotspot-data.active{
    right: 0;
    z-index: 9999;
}

.hotspot-data .head-title{
    color: #878787;
    opacity: 0;
    transition: all 1s ease-in-out;
}

.hotspot-data .head-title.active{
    opacity: 1;
}

.hotspot-data .head-title .line{
    width: 106px;
    height: 1px;
    background-color: #434343;
    margin-left: 16px;
    margin-right: 8px;
}

.hotspot-data .hotspot-name{
    opacity: 0;
    transition: all 2s ease-in-out;
}

.hotspot-data .hotspot-name.active{
    opacity: 1;
}

.hotspot-data .hotspot-name .description{
    font-size: 12px;
}

.hotspot-data .hotspot-name .head{
    color: #fff !important;
}

.hotspot-data .hotspot-name p{
    font-size: 12px;
}

.hotspot-close {
    position: absolute;
    left: -20px;
    top: 50%;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px 14px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.hotspot-close:hover{
    padding: 12px 16px;
}

.hotspot-close img{
    width: 14px;
}

.product_exterior .title{
    position: absolute;
    top: 10%;
    right: 10%;
    width: 650px;
}

.product_exterior .title .slogan{
    font-size: 12px;
}

.product_exterior .title .name{
    font-size: 24px;
}

.product_exterior .title .description{
    font-size: 14px;
}

.product_exterior .title .video-play img{
    width: 16px;
}

.product_exterior .title .video-play .text{
    font-size: 12px;
}

.exterior-video{
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: #262626;
    opacity: 0;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

.exterior-video.active{
    opacity: 1;
    z-index: 9999;
}

.exterior-video video{
    width: 100%;
    height: 100%;
}

.exterior-video .video-close{
    top: 0;
    z-index: 99999;
    right: 0;
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px 14px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.exterior-video .video-close:hover{
    padding: 12px 16px;
}

.exterior-video .video-close img{
    width: 14px;
}

.hotspot-image-animation{
    scale: 2;
    margin-right: 50%;
    transition: all 0.5s ease-in-out;
}

.hotspot-image-not-animation{
    scale: 1;
    margin-right: 0;
    transition: all 0.5s ease-in-out;
}

.hotspot-image-holder{
    overflow: hidden;
}

.not-active{
    opacity: 0;
    transition: all 0.1s ease-in-out;
}

.is-active{
    opacity: 1;
    transition: all 1s ease-in-out;
}

@media screen and (max-width: 992px) {
    .hotspot-dot-loader {
        padding: 5px;
    }

    .hotspot-data{
        width: 90%;
    }

    .product_exterior .title {
        top: 15%;
        right: 5%;
        width: 500px;
    }
}

@media screen and (max-width: 640px) {
    .product_exterior .title {
        width: 350px;
    }
}

@media screen and (max-width: 360px) {
    .product_exterior .title {
        width: 260px;
        top: 10%;
    }

    .product_exterior .title .name {
        font-size: 18px;
    }
}

@keyframes l1 {
    100% {box-shadow: 0 0 0 30px #0000}
}

/**
* technologySwiper
*/
#technology{
    height: 100vh;
}

/**
* safely
*/
#swiper-vertical{
    height: 800px;
}

/**
* gallery
*/
.gallery{
    background-color: #262626;
}

.gallery .title p{
    font-weight: 300;
    color: #dbdbdb;
}

.gallery .title h5{
    font-size: 28px;
    color: #fff !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #c5132b !important;
}

#swiper-with-progress .swiper-slide:hover{
    cursor: pointer;
}

#gallery-full{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    background-color: #262626;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

#gallery-full.active{
    z-index: 9999;
    opacity: 1;
}

#gallery-full .gallery-close {
    top: 100px;
    z-index: 99999;
    right: 100px;
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px 14px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

#gallery-full .gallery-close:hover{
    padding: 12px 16px;
}

#gallery-full .gallery-close img{
    width: 14px;
}

#gallery-full .swiper-container{
    width: 1200px;
    height: 800px;
}

@media screen and (max-width: 992px) {
    #gallery-full .swiper-container{
        width: 100%;
        height: 100vh;
    }

    #gallery-full .gallery-close {
        top: 25px;
        left: 25px;
        right: unset;
    }
}

/**
* catalogs
*/
.catalogs .items .download a{
    border: 1px solid #262626;
    padding: 15px;
    transition: all 0.3s ease-in-out;
}

.catalogs .items .download a:hover{
    border: none;
    background-color: #c5132b;
    color: #fff;
}

.catalogs .items .download a:hover path{
    fill: rgba(255,255,255,1);
}

.three-col-design .items{
    padding:3rem
}

.three-col-design .items:after{
    content:'';
    width:1px;
    height:70%;
    background-color:#d6d6d6;
    display:block;
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    margin:auto
}

.selling-point{
    font-size:1.5rem;
    line-height:30px
}

.selling-point img{
    height:100%;
    width:auto;
    object-fit:cover;
    background-size:cover
}

.three-col-design .items:last-child:after{
    display:none
}

.product-show-decription{
    font-size:1.5rem;
    line-height:30px
}

.product-show-decription li{
    list-style:disc
}

.product_exterior .title{
    z-index: 1;
}

.bg-light-grey {
    background-color: #f6f6f6;
}

.selling-point{
    line-height: 30px;
    text-align: justify;
}

.selling-point img {
    height: 100%;
    width: auto;
    object-fit: cover;
    background-size: cover;
}

@media (max-width: 768px) {
    .three-col-design .items::after {
        width: 90%;
        height: 1px;
        top: unset;
        right: 0;
    }
}
