@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;700;800;900&display=swap');

.color-key-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #dfdfdf;
    padding: 10px 20px;
}

.color-key {
    display: flex;
    align-items: center;
    gap: 6px;
    align-content: center;
}

.color-key-element {
    width: 70px;
    height: 8px;
    border-radius: 20px;
}

.color-key-desc {
    margin: 0;
    font-family: 'Nunito Sans';
    font-weight: 900;
}

.color-key-element.color-key-no-door {
    background-color: #e20413;
}

.color-key-desc.color-key-no-door {
    color: #e20413;
}

.color-key-element.color-key-door {
    background-color: #019ee3;
}

.color-key-desc.color-key-door {
    color: #019ee3;
}

.header_floor h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2em;
    margin-top: 0;
}

.header_floor {
    background-color: #FAFAFA;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    background-image: url('https://duravan.com/data/include/cms/landing-page-floors/header1.png');
    background-position: 105% 40%;
    background-repeat: no-repeat;
    background-size: 65%;
    padding: 75px 50px;
}

.header_floor h1 span {
    color: #e10b17;
}


.header_floor > * {
    flex-basis: 50%;
}

.header_floor .header_floor__image {
    /* position: absolute;
    top: 0;
    right: 0; */
}

.header_floor .header_floor__image img {
    height: 100%;
}

.configuration_options {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
}

.configuration_options__option {
  flex-basis: 100%;
  background-color: #FAFAFA;
  position: relative;
  transition: all .2s ease-in-out; 
}

.configuration_options__option:not(.title):hover {
    transform: scale(1.03); 
  }
  
.configuration_options__option img {
   width: 100%;
  }

.configuration_options__option__content {
    padding: 25px;
}

.configuration_options__option h4 {
  font-weight: 300;
  font-size: 1.4em;
  margin: 0 0 20px;
}

.configuration_options__option.title {
  background-color: transparent;
}



.configuration_options__option .icon {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 30px;
  right: 30px;
}

.fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0px -5px 34px -22px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px -5px 34px -22px rgba(0,0,0,0.75);
  box-shadow: 0px -5px 34px -22px rgba(0,0,0,0.75);
  z-index: 15;
}

.purchase-bar {
  background-color: #FFFFFF;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.purchase-bar .purchase-bar__left-side, .purchase-bar .purchase-bar__right-side {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.purchase-bar .purchase-bar__right-side {
  gap: 20px
}

.purchase-bar .purchase-bar__left-side svg {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.purchase-bar .purchase-bar__description {
  max-width: 500px;
  font-size: 0.8em;
}

.purchase-bar .purchase-bar__selected_car__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.purchase-bar .purchase-bar__selected_car__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.purchase-bar .purchase-bar__selected_car {
  font-weight: 800;
}

.purchase-bar .btn{
  background-color: #e10b17;
  padding: 15px 35px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
  text-decoration: none;
  
}

.purchase-bar .btn:hover{
  transform:translatey(-5px);
  border-bottom: none;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.10);
  -moz-box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.10);
  box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.10);
}

.configurator-header {
  border: 2px solid #e10b17;
  color: #e10b17;
  padding: 5px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  -webkit-animation: pulsate-bck 0.5s ease-in-out 3 both;
  animation: pulsate-bck 0.5s ease-in-out 3 both;
}

@-webkit-keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}


.multiversion-item_v2 {
    margin-bottom: 10px;
}

.multiversion-item_v2_label {
  margin-bottom: 5px;
}

.multiversion-item_v2_option {
  border: 2px solid #999;
  color: #999;
  padding: 5px 10px;
  text-decoration: none;
}

.multiversion-item_v2_option:hover {
    border: 2px solid #e10b17;
    color: #e10b17;
}


.multiversion-item_v2_option.selected {
  border: 2px solid #e10b17;
  color: #e10b17;
}

.multiversion-item_v2_options-list {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.projector_details .projector_multiversions__label, .projector_details .projector_versions__label {
    display: block;
    margin-right: 15px;;
}

#paging_setting_top {
    display: none;
}


body {
    font-family: 'Nunito Sans', sans-serif;
    color: #0d181c;
    background-color: ; /* KOLOR TŁA */
}

header{
    background-color: ; /* KOLOR TŁA MENU */
}

.btn {
    font-family: 'Nunito Sans', sans-serif;
}
.font() {
	font-family: 'Nunito Sans', sans-serif;
}

.projector_status__description{
    display: inline !important;
}

#projector_shipping_info {
    display: none !important;
}
#main_hotspot_zone4{
    display: none;
}
#main_hotspot_zone2 {
    display: none;
}
#main_hotspot_zone3 {
    display: none;
}
#main_hotspot_zone1 {
    display: ;
}
#search_hotspot_zone1 {
    display: ;
}
#product_askforproduct {
    display: none;
}
#opinions_section {
    display: none;
}
// #projector_dictionary .dictionary__group .dictionary__param:first-child, #projector_dictionary .dictionary__group .dictionary__param:last-child{
//     display: none;
// }
// .projector_details .projector_versions .f-dropdown-toggle{
//     font-size: 1.5rem;
// }
.big_label, .headline {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 3rem;
    text-transform: none !important;
    letter-spacing: 0px;
}
a:hover {
    color: #e10b17;
}
.product__name:hover {
    color: #e10b17;
}
header a.nav-link:hover {
    color: #e10b17
}
#search .product:hover {
    border: 1px solid #c4c7c8;
}
#search .product__details {
    border: 1px solid #e10b17;
}
#menu_categories2 ul li a.active {
    color: #e10b17;
    border-left: 5px solid #e10b17;
    padding-left: 5px;
}
#menu_categories2 ul li a.active:hover {
    border-color: #e10b17;
}
.benefits__block {
    display: none;
}
/*#projector_buttons a.projector_buttons_obs {
    display: none;
}*/
footer {
    margin-top: 35px;
    border-top: #e10b17 2px solid;
    background: #fefefa;
    font-size: 3px;
}
#footer_links {
    font-size: 1.2rem
}
#menu_contact {
    background: #fefefa;
}
#menu_contact a {
    font-weight: 400 !important;
}
#menu_contact ul {
    background: #fefefa;
    font-size: 1.6rem;
}
.logo_iai {
    background: #fefefa;
}
#ck_dsclr {
    background: #e10b17 !important;
    border-top: none !important;
}

.wishes_link {
    display: none !important;
}

.product__sizes.mb-1 {
    display: none !important;
}
.header .nav-link {
    color: #fff;
    text-transform: lowercase !important;
}

#Navigation .navigation_item .name{
    color: rgb(13, 24, 28);
    text-decoration: none;
}

.product__prices .price{
    color: rgb(13, 24, 28);
}

/* #footer_links a, #footer_links span{
    color: #333;
}

#footer_links .footer_links_sub > li.menu_orders_item i{
    color: #333;
} */

@media (min-width: 979px) {
    
    header .nav-link {
        font-size: 1.5rem;
		font-weight: 400;
		text-transform: none !important;
	}
	
	.info__image.desktop{
	    display: inline-block;
	}
	header .navbar-subnav {
	    width: 300px;
	}
	
	.photos .label_icons {
	    left: auto;
	    right: 10px !important;
	}
	
	h1.headline{
        width: 70%;
        margin: 0 auto;
    }
    h1.headline span{
        text-align: center;
        line-height: 1.2em;
    }
    .main-image__section.video{
        text-align: center;
    }
    .main-image__section video{
        width: 75%;
        margin: 0;
    }
}

/* TOP BUTTONS */
.btn-box {
    display: flex;
    gap: 15px;
}


/* Main Container */

.main__container {
    /* overflow: hidden; */
}

.main__container p {
    font-size: 18px;
    line-height: 1.5em;
}

.main__container h2 {
    font-size: 40px;
    font-weight: 700;
}

.main__container h2 span {
    color: #e10b17;
}

/* Showcase */

.hero__section {
    background-color: #FAFAFA;
}

.hero__wrapper{
    padding: 0 0 0 30px;
    min-height: 500px;
}

.hero__section h1{
    margin: 0 0 25px;
    color: rgb(13, 24, 28)
}

.hero__section p{
    margin: 0 0 35px;
}

.hero__section .grid{
    gap: 0px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.column__right{
    background-image: url('https://duravan.com/data/include/cms/landing-page-media/duravan-header-new-min.jpg');
    /* background-image: url('https://duravan.com/data/include/cms/landing-page-media/zabudowa-busa.jpg'); */
    /* background-image: url('https://duravan.com/data/include/cms//5555.jpg'); */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-size: cover;
    background-position: left center;
    display: block;
    min-height: 100%;
    min-width: 100%;
}


.column__left {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 90%;
}

.column__left h1 {
    font-size: 47px;
    font-weight: 100;
    line-height: 1.2em;
}

.column__left h1 span {
    font-weight: 700;
    color: #e10b17;
}

/* Brands Section */

.brands__section {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    /* background-color: #eeeeee; */
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: auto;
    align-content: space-between;
}

.brands__image {
    margin: 0 20px;
}

.brands__image img{
    opacity: 1;
}

/* Information Sections */

.info__section{
    padding: 50px 0;
}

.info__section h2{
    margin: 0 0 25px;
}

.info__section p{
    margin: 0 0 35px;
}

.info__section p span{
    font-weight: 700;
}

.info__image img{
    max-width:100%;
    height: auto;
    border-radius: 0;
    
}

.info__image video{
    width: 100% !important;
    height: auto !important;
    border-radius: 0px;
}

.information1__section{
    
}

#main_cms .information1__section h2 {
    margin-left: auto;
    margin-right: auto;
}

.information1__section h2{
    width: 60%;
}

.information1__section p{
    width: 60%;
}

.information1__section p span{
    color: #e10b17;
    font-weight: 700;
}

.information1__section img{
    max-width:100%;
    height:auto;
    border-radius: 0px;
    margin-bottom: 35px;
}

.information1__section video{
    width: 80% !important;
    height: auto !important;
    border-radius: 0px;
    margin-bottom: 35px;
}

.information3__image{
    display: inline-block;
}

/* Help Section */

.help__section{
    background-color: #FAFAFA;
    text-align: center;
    padding: 50px 30px;
}

.help__section .grid{
    align-items: start;
    justify-items: center;
}

.help__section h2{
    color: #e10b17;
    margin-bottom: 35px;
}

.help__element{
    width: 75%;
}

.help__element h4{
    font-size: 20px;
    color: #e10b17;
}

.help__section .icon {
    max-width: 120px;
}

/* Features Section */

/* .grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px 40px;
  grid-template-areas:
    "img1 content1"
    "img2 content2";
}

.features__img1 { grid-area: img1; }
.features__img2 { grid-area: img2; }
.features__content1 { grid-area: content1; }
.features__content2 { grid-area: content2; }
*/

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px 40px;
  grid-template-areas:
    "content__1 content__2"
    "content__3 content__4";
}

.content__1 { grid-area: content__1; }
.content__2 { grid-area: content__2; }
.content__3 { grid-area: content__3; }
.content__4 { grid-area: content__4; }


.features__section{
    padding: 50px 0;
    text-align: center;
}

.features__section h3{
    font-size: 36px;
    font-weight: 300;
    margin-top: 0;
}

.features__section h3 span{
    color: #e10b17;
}

.features__element{
    margin-bottom: 50px;
    border-left: 5px solid #e10b17;
    padding-left: 30px;
    text-align: left;
}

/*.features__element:last-child{
    margin-bottom: 0;
}*/

.features__section img{
    border-radius: 0px;
}

.features__section .btn{
    display: inline-block;
    text-align: center;
    margin-top: 30px;
}

.main__container .btn{
    background-color: #E1E8EC;
    padding: 15px 35px;
    color: #e10b17;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-left: 5px solid #e10b17;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.05);
    transition: 0.3s;
    
}

.main__container .btn:hover{
    transform:translatey(-5px);
    border-bottom: none;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.10);
    box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.10);
}



/* "Marki" - Brands Sub Page */

.flexbox{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: auto;
    align-content: space-between;
}
.brand__element {
    flex: 0 0 auto;
    margin: 15px;
    text-align: center;
}

.brand__element a {
    text-decoration: none;
}

.brand__element .name__element{
    max-width: 150px;
    max-height: 150px;
    height: 150px;
    width: 150px;
    background-color: #eeeeee;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #232323;
    transition: 0.3s;
    align-items: flex-start;
}

.brand__element .name__element:hover {
    transform:translatey(-5px);
    border-bottom: none;
    color: #242424;
}

/* Menu */

/* Others */

#Navigation .navigation_item .count {
    display: none;
}

#Navigation .navigation_item { /* RAMKA DO SAMOCHODU */
    padding-top: 0px; /* GÓRA */
    padding-bottom: 10px; /* DÓŁ */
}

/* Product Page */

.product_name__name{
    font-weight: bold;
    font-size: 2.5rem; /* WIELKOSC CZCIONKI - NAZWA PRODUKTU - STRONA PRODUKTU */
}

.product_name__description {
    font-size: 14px; /* WIELKOSC CZCIONKI - KRÓTKI OPIS PRODUKTU - STRONA PRODUKTU */su
}

/* HEADER INFO */

.header-info{
    max-width: 1170px;
    margin: 0 auto;
    padding: 15px 0 0 0;
    vertical-align: middle;
}

.header-info .delivery-truck{
    background-image: url(https://duravan.com/data/include/cms/landing-page-media/truck.png);
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 8px;
    margin-left: 4px;
    vertical-align: middle;
}

.header-info .email{
    background-image: url(https://duravan.com/data/include/cms/landing-page-media/email.png);
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 8px;
    margin-left: 4px;
    vertical-align: middle;
}

.header-info .phone-call{
    background-image: url(https://duravan.com/data/include/cms/landing-page-media/phone-call.png);
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 8px;
    margin-left: 4px;
    vertical-align: middle;
}

.info__image.mobile{
        display: none;
    }
    
    
    header #menu_categories .navbar-nav > .nav-item > .nav-link:not(:only-child)::after {
    display: none;
}

.image-small{
    display: none !important;
}

@media (max-width: 1200px) {
    .column__left h1 {
        font-size: 40px;
        font-weight: 100;
        line-height: 1.2em;
    }
    
    .information1__section video{
        width: 100% !important;
    }
}

@media (max-width: 979px) {
    
    .grid{
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    
    .column__left h1 {
        font-size: 34px;
        font-weight: 100;
        line-height: 1.2em;
    }
    
    .information1__section h2{
        width: 100%;
    }
    
    .information1__section p{
        width: 100%;
    }

    .column__left {
        width: 100%;
    }
    
    .help__element{
        width: 100%;
    }
    
    .grid-container {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr;
      gap: 0;
      grid-template-areas: none;
    }
    
    .features__img1 { grid-area: auto; }
    .features__img2 { grid-area: auto; }
    .features__img3 { grid-area: auto; }
    .features__content { grid-area: auto; }
    
    .features__img2, .features__img3 {
        display: none;
    }
    .info__image.mobile{
        display: inline-block;
    }
    
    .brands__section{
        display: none;
    }
    
    .features__content1{
        margin-bottom: 40px;
    }
    
    .features__img1{
        margin-bottom: 40px;
    }
    
    .content__1 { grid-area: auto; }
    .content__2 { grid-area: auto; }
    .content__3 { grid-area: auto; }
    .content__4 { grid-area: auto; }
    
    .hero__wrapper{
        min-height: 0;
    }
    
    .image-small{
        display: inline-block !important;
        height: ;
        width: 100%;
    }
    .info__image.desktop{
	    display: none;
	}
	.hero__wrapper{
        padding: 0 20px 0 20px;
    }
        .hero__wrapper {
        padding:  25px 0 0 0;
    }
    
    .hero__section{
        background: none;
    }
    
    .hero__section p {
        margin: 35px 0;
    }
    .header-info{
        display: none;
    }
    .main__sidebar{
        display: none;
    }
    .main__content{
        flex: 0 0 100% !important;
    }
}

@media (max-width: 757px) {
    .column__left h1 {
        font-size: 32px;
        font-weight: 100;
        line-height: 1.2em;
    }
    
    .main__container h2 {
        font-size: 26px;
        font-weight: 700;
    }
    
    .features__section h3{
        font-size: 28px;
        font-weight: 300;
    }
    
    .features__content1{
        margin-bottom: 40px;
    }
    
    .features__img1{
        margin-bottom: 40px;
    }
    
    /* .d-none{
        display: inline-block !important;
    }*/
    
    .info__image.mobile{
        display: inline-block;
    }
    
    .brands__section{
        display: none;
    }
    
    
    .brand__element {
        width: 100%;
        margin: 10px 0;
    }
    
    .brand__element .name__element{
        height:;
        width: 100%;
        margin: 0 auto;
    }
    
    .brand__element a h3{
        display: none;
    }
    
    .flexbox{
        flex-direction: column;
    }
    .video-btn{
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-top: 10px
    }
}

/* OTHERS */

div.search_categoriesdescription h1 {
    padding-top: 0;
}

#menu_categories2 ul li a {
    font-size: px; /* ROZMIAR CZCIONKI MENU ELEMENTY / PODKATEGORIE */
    padding-top: 6px; /* ODSTĘP GÓRA */
    padding-bottom: 6px; /* ODSTĘP DÓŁ */
}

#menu_categories2 .menu_categories_label{
    text-transform: none;
    font-size: 20px; /* WIELKOŚCIC CZCIONKI */
    font-weight: 500; /* GRUBOŚĆ CZCIONKI */
}

.navigation_page .navigation_description h1.big_label, .text_page H1.text_menu_title_header { /* PODKATEGORIA */
    margin-top: 0px; /* NAGŁÓWEK MARGINES GÓRA */
    margin-bottom: 0px; /* NAGŁÓWEK MARGINES DÓŁ */
}

#menu_categories2 .menu_categories_label.menu_go_up:after{
    color: #333333; /* STRZAŁKA KOLOR */
}

.search_categoriesdescription .cm p {
    margin-top: 10px; /* */
    margin-bottom: 0px; /* */
}

@media (min-width: 757px) {
    div.search_categoriesdescription .search_categoriesdescription_sub{
        margin-top: 15px; /* */
        margin-bottom: 0px; /* */
    }
}



/**** NADPISANIE ****/

.information1__content{
    text-align: center;
}

.information1__section h2 {
    width: 75%;
    margin: 0 auto 25px;
}

.information1__section p {
    width: 75%;
    margin: 0 auto 35px !important;
}

@media (max-width: 979px) {
    .information1__section h2, .information1__section p{
        width: 100%;
        text-align: left;
    }
}

/* GALLERY */
.gallery-section {
	padding: 20px 0;
}

.gallery-section .gallery-box {
	background: #fff;
	padding: 15px;
	display: grid;
	grid-template-columns: repeat(4, auto);
	/*grid-template-rows: repeat(1, 18vw);*/
	grid-auto-rows: 16vw;
	grid-gap: 1rem;
    grid-auto-flow: dense;
}

.gallery-section .gallery-box .box {
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
    box-shadow: 0px 8px 24px 1px #00000020;
	transition: all .5s ease;
}

.gallery-section .gallery-box .box:hover {
    box-shadow: 0px 8px 24px 1px #00000040;
}

.gallery-section .gallery-box .box.big {
	grid-row: span 2;
	grid-column: span 2;
}

.gallery-section .gallery-box .box.horizontal {
	grid-column: span 2;
}

.gallery-section .gallery-box .box.vertical {
	grid-row: span 2;
}

.gallery-section .gallery-box .box img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: all .5s ease;
}

.gallery-section .gallery-box .box:hover img {
	transform: scale(1.2);
}

/**** MEDIA QUERIES ****/
@media (max-width: 979px) {

    .gallery-section .gallery-box {
        grid-template-columns: repeat(4, auto);
        grid-auto-rows: 18vw;
    }
    .column__right{
        display: none;
    }
}

@media (max-width: 767px) {
    .gallery-section .gallery-box {
        grid-template-columns: repeat(3, auto);
    }
    .product-list-type {
        flex-wrap: wrap;
    }
    .search_categoriesdescription .big_label {
        margin-top: 10px;
    }
}


.video-section {
	background: #fff;
	padding: 15px;
	display: grid;
	grid-template-columns: repeat(2, auto);
	/*grid-template-rows: repeat(1, 18vw);*/
	grid-gap: 1rem;
    grid-auto-flow: dense;
}

.video-section .video-box {
	display: inline-block;
	max-width: 100%;
}

@media (max-width: 1200px) {

    .video-section  {
        grid-template-columns: repeat(1, auto);
        overflow: hidden;
    }
    
    .video-section iframe{
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .no-touch .wide .navbar-nav > li:hover > ul {
        display: none;
    }
}

.freeShipping{
    display: none !important;
}

.navbar-nav .nav-item:nth-child(n+5) a{
    font-weight: 800;
}

/*.navbar-nav .nav-item:nth-child(n+1) a{
    font-weight: 800;
}*/

#projector_form div.product_section.versions--select .versions__label{
    font-weight: 700;
}

.big_label{
    font-weight: bold;
}

.video-btn {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    padding: 15px 35px;
    text-decoration: none;
}

.video-btn:hover{
    background-color: #f1f1f1;
}

.video-btn svg {
    margin-right: 7px;
    width: 14px;
    height: 14px;
    margin-top: -4px;
}

.section_full_width p {
    width: 100%;
    text-align: left;
}

.info__content .ui-sortable {
    margin: 0 0 35px;
}

.info__content .ui-sortable li {
    font-size: 18px;
}

.about .info__section:first {
    padding: 0;
}

.about .info__section {
    padding: 0 0 50px 0;
}

.about .info__section:last-of-type {
    padding-bottom: 0;
}

.about .info__section:last-of-type p {
    margin-bottom: 0;
}

.btn__scroll {
    display: block;
    margin: 25px auto 0;
    font-size: 16px;
    text-decoration: none;
    font-weight: 800;
}

.btn__scroll::after{
}

.main__section{
    display: flex;
    margin-bottom: 100px;
}

.main__section .main__sidebar{
    flex: 0 0 33.3333%;
}

.main__section .main__content{
    flex: 0 0 66.6666%;
}

.sidebar__widget{
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    padding: 10px 50px 10px 0;
}

.sidebar__widget ul {
    list-style-type: none;
    padding-left: 0 !important;
}
.sidebar__widget ul li {
    padding: 10px 0;
}

.sidebar__widget ul a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}

.mini_info__module{
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.mini_info__item{
    flex: 1 1 48%;
}

.bullet__section {
    display: flex;
}

.bullet__section h3 {
    font-size: 2em;
}

.bullet__element {
    flex: 0 0 10%;
    margin-right: 30px;
}

.bullet_content {
    flex: 0 0 90%;
}

.bullet__circle {
    border-radius: 50%;
    width: 64px;
    height: 64px;
    box-shadow:
        0px 0px 2px rgb(0 0 0 / 10%),
        0px 100px 80px rgb(0 0 0 / 3%),
        0px 41.7776px 33.4221px rgb(0 0 0 / 2%),
        0px 22.3363px 17.869px rgb(0 0 0 / 2%),
        0px 12.5216px 10.0172px rgb(0 0 0 / 2%),
        0px 6.6501px 5.32008px rgb(0 0 0 / 1%),
        0px 2.76726px 2.21381px rgb(0 0 0 / 1%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bullet__circle img {
    width: 32px;
    height: 32px;
}

#main_cms h2 {
    font-size: 2.5em;
}


#main_cms h3 {
    font-size: 2em;
}

.main__content .info__content h2 {
    margin-bottom: 30px;
}

.space--top {
    margin-top: 30px;
}

.space--bottom {
    margin-bottom: 75px;
}

.quote__section p {
    font-style: italic;
}

.last__section{
    background-color: #FAFAFA;
    padding: 75px 35px;
}

.video-border{
    border: 5px solid #fafafa;
}

.bullet__content ul {
    list-style-type: none;
    font-size: 18px;
    line-height: 1.5em;
}

.bullet__content ul li {
    margin-bottom: 10px;
}

.headline__name {
    font-size: 40px
    font-weight: 700;
}

.no-padding-top{
    padding-top: 0;
}

.btn-arrow {
    display: inline-block;
}

.btn-arrow img {
    width: 20px;
    margin: 10px 0 0;
    position: relative;
}

.btn-arrow:hover img {
    top: 10px;
    transition: 0.3s;
}

.car_list__section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.car_list__brand{
    flex-grow: 0;
    padding: 0 25px;
    width: 25%;
}

.car_list__brand ul li {
    text-align: left;
}

.bestseller, .label.--bestseller{
    display: none;
}

@media (max-width: 575px) {
    .gallery-section .gallery-box {
        grid-template-columns: repeat(1, auto);
        grid-auto-rows: 35vw;
    }
    .mini_info__item {
        flex: 1 1 100%;
    }
    .bullet__circle {
        width: 32px;
        height: 32px;
        margin-top: 14px;
    }
    
    .bullet__circle img {
        width: 16px;
        height: 16px;
    }
    .bullet__element {
    flex: 0 0 5%;
    margin-right: 15px;
    }
    .bullet__content ul {
        padding: 0 !important;
    }
}

.mini_info__module .mini_info__item h4 {
    text-align: center;
}

.transport-info-container {
}
.transport-info h2 {
    margin-bottom: 10px;
}
.transport-info p {
    margin-bottom: 15px;
    text-align: left;
}
.transport-info-container .table {
    width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}
.transport-info-container .table th, .transport-info-container .table td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: center;
}
.transport-info-container .table th {
	background-color: #f2f2f2;
}
.transport-info-container .table tr:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
}
.transport-info-container .table tr:hover {
	background-color: #ddd;
}

.narrow {
    width: 960px;
    margin: 0 auto;
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 20px;
}

.navigation_page .navigation_description {
    margin-bottom: 1.4rem;
}

/*#Navigation .navigation_item {*/
/*    border: none;*/
/*}*/

.cm {
  overflow: visible;
}

.gray {
  background-color: #f3f3f3;
}

.border {
  border-radius: 10px;
  padding: 50px !important;
}

.feature-section {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 50px;
  padding: 80px 0;
}

.feature-section * {
  flex-basis: 50%;
}

.feature-section .description-section {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-section h1,
.feature-section h2 {
  font-size: 3em;
  font-weight: 900;
  line-height: 1.1em;
}

.feature-section h3 {
  font-size: 2em;
  font-weight: 900;
  line-height: 1.1em;
}

.single-benefit h1,
.single-benefit h2,
.single-benefit h3,
.single-benefit p,
.feature-section h1,
.feature-section h2,
.feature-section h3,
.feature-section p {
  margin: 0;
}

.feature-section .button-cta {
  background-color: #e10b17;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 600;
  padding: 12px 24px;
  text-decoration: none;
}

.asset-section video {
  aspect-ratio: 16/9;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.center-content {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.benefits-section {
  display: flex;
  flex-direction: row;
  padding: 80px 0;
  justify-content: center;
  row-gap: 60px;
  column-gap: 40px;
  flex-wrap: wrap;
}

.single-benefit {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-basis: 30%;
}

.single-benefit-icon {
  border-radius: 4px;
  width: 40px;
  height: auto;
  background-color: #e10b17;
  padding: 8px;
}

.single-benefit:hover {
  transform: scale(1.05);
  transition: all 0.25s ease-in-out;
}

.single-benefit h3 {
  font-size: 1.5em;
  text-align: center;
}

.single-benefit p {
  font-size: 1.25em;
  text-align: center;
}

.product-section {
  border-radius: 10px;
  padding: 20px;
}

.banner {
  aspect-ratio: 16/6;
  object-fit: cover;
}

.rounded {
  border-radius: 10px;
}

.square-asset,
video.square-asset {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.specification p {
  font-size: 1.1em;
}

.asset {
  position: relative;
}

.asset svg {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
}

.shadow {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

@media (max-width: 768px) {
  .feature-section {
    flex-direction: column;
  }
}