* { -webkit-box-sizing: border-box; box-sizing: border-box; }
body { margin: 0; font-family: 'Raleway', sans-serif; font-weight: 500; color: #383838; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* This css code for Floating Call Now Button */
#floating-call-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 12000;
  font-family: inherit;
}
#call-now-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.14em;
  background: #fff;
  color: #857c6d;
  border: none;
  box-shadow: 0 2px 10px rgba(32,32,32,0.25);
  border-radius: 999px;
  padding: 13px 30px 13px 22px;
  font-weight: 600;
  cursor: pointer;
  min-width: 140px;
  gap: 10px;
}
.phone-icon {
  width: 20px;
  height: 20px;
}
#call-options-menu {
  position: absolute;
  bottom: 100%; 
  right: 0;
  margin-bottom: 12px; 
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(32,32,32,0.15);
  display: none;
  flex-direction: column;
  align-items: stretch;
  padding: 24px 16px 14px 16px;
  gap: 14px;
  min-width: 300px;
  animation:  .22s;
}
@keyframes fadeInCallMenu {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}
#call-options-menu.active {
  display: flex;
}
.call-option {
  background: #f9f9f9;
  border: none;
  color: #857c6d;
  padding: 15px 12px;
  font-size: 1.15em;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(32,32,32,0.06);
  transition:  0.19s, color 0.19s;
  cursor: pointer;
  text-decoration: none;
}
.call-option:hover {
  background: #857c6d;
  color: #fff;
}
.close-icon {
  font-size: 1.5em;
  line-height: 1;
  transition: color 0.15s;
}
.close-icon:hover {
  color: #fff;
}
  @media (max-width: 600px) {
    #call-options-menu {
      min-width: 160px; 
      padding: 12px 8px; 
      gap: 8px;
      right: 0;
      left: auto; 
      transform: none; 
    }
    
    .call-option {
      padding: 10px 8px;
      font-size: 0.95em;
    }
    
    #call-now-toggle {
      min-width: auto;
      padding: 10px 16px; 
    }
    
    .phone-icon {
      width: 16px;
      height: 16px;
    }
  }


/* This css code for Our Showroom Section */

.free-design-consultation-section {
  width: 100%;
  padding: 50px 0;
  background-image: url('/images/DesignImg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 30px 0;
  text-align: center;
  z-index: 1; 
}

.free-design-consultation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}



.free-design-consultation-section .fdc-btn {
  display: inline-block;
  background: #fff;
  color: #444;
  text-transform: uppercase;
  padding: 16px 60px;
  font-size: 1.07em;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all .18s;
  margin-top: 6px;
  box-shadow: 0 2px 16px 0 rgba(32,32,32,0.06);
}

.free-design-consultation-section .fdc-btn:hover {
  background: #857c6d;
  color: #fff;
  text-decoration: none;
}


.free-design-consultation-section .fdc-title {
  color: #fff;
  font-size: 2.2em;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1.15;
  white-space: nowrap; 
}

@media screen and (max-width: 700px) {
  .free-design-consultation-section .fdc-title {
    font-size: 1.4em; 
    white-space: nowrap; 
    margin-bottom: 18px;
  }
}

/* This css code for Footer Design Section */


.footer-showrooms-row {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    background: rgba(255,255,255,0.8);
    background-image: url('/images/FooterImg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 0 10px 0;
    margin: 0 auto;
    border-top: 1px solid #eee;
    position: relative;
    box-sizing: border-box;
    gap: 40px; 
}
.footer-showrooms-row:before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.7); 
    z-index: 0;
}
.footer-showroom-box, 
.footer-showroom-title, 
.footer-showroom-phone, 
.footer-showroom-btns {
    position: relative;
    z-index: 1;
}

.footer-showroom-box {
    flex: 1 1 0;
    max-width: 350px;
    min-width: 220px;
    text-align: center;
    padding: 0 20px; 
    position: relative;
}

.footer-showroom-title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
    margin-top: 0;
}
.footer-showroom-phone {
    font-size: 15px;
    margin-bottom: 16px;
    color: #444;
}
.footer-showroom-phone a {
    color: #444;
    text-decoration: underline;
}
.footer-showroom-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-showroom-box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: -40px; 
    width: 1px;
    height: 70%;
    background-color: black; 
    opacity: 1;
}

.footer-showroom-btn {
    background: transparent;
    border: 2px solid #383838;
    color: #383838;
    padding: 12px 12px;
    font-size: 10px;
    font-weight: 500;
    text-transform: none;
    margin-bottom: 0;
    display: inline-block;
    transition: all 0.2s;
    text-align: center;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0;
    white-space: nowrap;
    line-height: 1.2;
}
.footer-showroom-btn.dark {
    background: #383838;
    color: #fff;
}
.footer-showroom-btn:hover,
.footer-showroom-btn.dark:hover {
    background: #857c6d;
    color: #fff;
    border-color: #857c6d;
}
@media screen and (max-width: 900px) {
    .footer-showrooms-row {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-showroom-box {
        max-width: none;
        width: 96%;
        margin: 0 0 30px 0;
    }

    @media screen and (max-width: 900px) {
    .footer-showroom-box:not(:last-child)::after {
        display: none;
    }
}
}

@media screen and (max-width: 900px) {
    .footer-showrooms-row {
        gap: 0; 
    }
    
    .footer-showroom-box {
        width: 90%;
        margin: 0 auto 30px;
        padding: 20px 0;
        position: relative;
    }
    .footer-showroom-box:not(:last-child)::after {
        display: block !important; 
        content: "";
        position: absolute;
        bottom: -15px; 
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 1px;
        background-color: black; 
        top: auto; 
        right: auto;
    }
}

#map-popup-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(32,32,32,0.64);
    justify-content: center;
    align-items: center;
}
.map-popup-content {
    position: relative;
    background: #fff;
    max-width: 420px;
    width: 95vw;
    border-radius: 16px;
    padding: 10px 0;
    margin: 40px auto 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
}
#close-map-popup {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #383838;
    cursor: pointer;
    z-index: 2;
}
#popup-map-iframe {
    width: 98vw;
    max-width: 390px;
    height: 410px;
    border: none;
    border-radius: 12px;
    margin: 32px 0 12px 0;
    background: #eee;
}
@media screen and (min-width: 600px) {
    .map-popup-content {
        max-width: 500px;
    }
    #popup-map-iframe {
        width: 460px;
        max-width: 98vw;
        height: 400px;
    }
}
@media screen and (max-width: 500px) {
    .map-popup-content {
        border-radius: 0;
        margin: 0;
    }
    #popup-map-iframe {
        max-width: 100vw;
        height: 360px;
        border-radius: 0;
    }
}
h1, h2 { margin-top: 0; margin-bottom: 40px; font-weight: bold; overflow: hidden; }
main h1 { text-align: center; }
h1, h2, h3 { text-transform: uppercase; }
h4 { margin: 0; }
section h2 { text-align: center; }
section h2.header,
section .header { margin: 0; text-align: center; text-transform: uppercase; font-weight: bold; }
ul, ol { padding-left: 15px; }
  ul li:not(:last-child),
  ol li:not(:last-child) { margin-bottom: 5px; }
hr { width: 100%; height: 1px; float: left; margin-top: 0; margin-bottom: 25px; background-color: #d2d2d2; border: 0; }
p:last-child { margin-bottom: 0; }
main p a { color: #857c6d; }

.hidden { display: none; }
iframe { border: 0; }

.full-frame,
.container, 
.row { width: 100%; float: left; }

section .sub-header { text-align: center; font-size: 18px; }

.news-detail {margin-bottom: 40px;}

#sidePanel {position: absolute; right: 0; top: 65%; width: 240px; z-index: 30; background-color: #040404;}
#sidePanel .text {position: relative; width: 100%; height: auto; padding: 12px 23px; color: #fff; text-align: center;}
#sidePanel .text H4 {font-size: 16px; padding: 0; margin: 0;}
#sidePanel .text .popis {font-size: 12px;}
#sidePanel .text .close {position: absolute; right: 0; top: 0; padding: 6px; cursor: pointer;}
#sidePanel .image {width: 100%; height: auto;}
#sidePanel .image IMG {width: 100%; height: auto;}

header { display: -webkit-flex; -webkit-flex-wrap: wrap; -webkit-justify-content: space-between; -webkit-align-items: center; }
header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; }
  header .head { display: -webkit-flex; -webkit-justify-content: space-between; }
  header .head { display: flex; justify-content: space-between; font-size: 16px; }
    nav.menu a { line-height: 25px; float: left; }
    nav.menu a:not(:last-child) { margin-right: 23px; }
    nav.menu a.right { float: right; }
    header .phone { line-height: 32px; padding-left: 45px; background: url("/images/icon/phone.png") left no-repeat; }
    header .phone.fixed { position: fixed; top: 11px; right: 30px; z-index: 111; background: url("/images/icon/phone-white.png") left no-repeat; color: #fff; }
  .category-menu { -webkit-flex-basis: 100%; display: -webkit-flex; -webkit-justify-content: space-between; -webkit-align-items: center; }    
  .category-menu { flex-basis: 100%; position: relative; display: flex; justify-content: space-between; align-items: center; background-color: #857c6d; color: #fff; }
  .category-menu.fixed { position: fixed; top: 0; left: 0; z-index: 101; }
  .category-menu nav { -webkit-flex: 1; }  
  .category-menu nav { flex: 1; }
    .category-menu ul { float: left; margin: 0; padding: 0; list-style-type: none; }
      .category-menu li { float: left; position: relative; padding: 0px 15px; }
      .category-menu li:not(:last-child) { margin-bottom: 0; }
      .category-menu li A {height: 100%; display: flex; align-items: center;}
      .category-menu li A.arrowD {/*background-image: url('/images/arrow-d.png'); padding-right: 15px; background-position: right center; background-repeat: no-repeat;*/}
      .category-menu li A.arrowD.on {}
        .category-menu nav a { float: left; }
          .category-menu li .u2 {min-width: 245px; position: absolute; top: 74px; left: 0px; padding: 10px 0px; background-color: #96928a; z-index: 100; display: none;}
          .category-menu.fixed li .u2 {top: 45px;}
          .category-menu li .u2 LI {width: 100%; height: auto; float: left; padding: 0px 0px;}
          .category-menu li .u2 LI A {width: 100%; height: auto; float: left; padding: 10px 25px; background-image: url('/images/icon/banner-arrow.png'); background-position: right 25px center; background-repeat: no-repeat; background-size: 5px;}
      /*.category-menu li:HOVER .u2 {display: block;}*/
    .search input { line-height: 28px; float: left; background-color: transparent; border: 0; outline: none; }
    .search input[type="submit"] { width: 40px; background: transparent url("/images/icon/find.png") left center no-repeat; border-right: 2px solid #c9c0b1; cursor: pointer; }
    .search input[type="text"] { width: 105px; padding-left: 14px; font-size: 14px; color: #c2bbae; transition: width .25s; }
    .search input[type="text"].focus { width: 200px; }
  header .home { float: right; font-weight: 600; margin-right: 25px; }
  header .gallery { float: right; font-weight: 600; margin-right: 25px; margin-left: auto;}
  
  header .phone-contact {padding-right: 20px; font-size: 20px;}

@media screen and (max-width: 1200px) 
{
  header .phone-contact {font-size: 16px;}
}

.categories-item-list.items { padding-bottom: 60px; }
  .categories-item-list.items .perex { line-height: 1.5; text-align: center; }
    
::-webkit-input-placeholder { opacity: .6; color: #c2bbae; }
::-moz-placeholder { opacity: .6; color: #c2bbae; }
:-ms-input-placeholder { opacity: .6; color: #c2bbae; }
:-moz-placeholder { opacity: .6; color: #c2bbae; }

.search-results a:hover { text-decoration: underline; }

p { margin-top: 0; }  
p:not(:last-child) { margin-bottom: 25px; }
main { position: relative; }
main:not(.main-home) { padding: 60px 0; }
.main-home { background-color: #f1efeb; }
.main-home p:not(:last-child) { margin-bottom: 15px; }
main.no-padding-bottom { padding-bottom: 0 !important; }
  .main-home h1 { margin-top: 0; text-align: center; text-transform: none; font-weight: bold; }
  .why h2 { margin-top: 10px; text-align: center; text-transform: uppercase; font-size: 20px; font-weight: bold; }
  .icons { display: -webkit-flex; -webkit-justify-content: space-between; }  
  .icons { display: flex; justify-content: space-between; }
    .icons .icon { padding-top: 85px; background-position: center top; background-repeat: no-repeat; text-align: center; font-size: 15px; }
    .icon.ideas { background-image: url("/images/icon/ideas.png"); }
    .icon.services { background-image: url("/images/icon/services.png"); }
    .icon.shipping { background-image: url("/images/icon/shipping.png"); }
    .icon.materials { background-image: url("/images/icon/materials.png"); }
    .icon.top { background-image: url("/images/icon/top.png"); }
      .icon b { font-weight: 700; }
main .back-to-list { line-height: 31px; padding-left: 45px; background: url("/images/icon/back-to-list.png") left center no-repeat; font-size: 15px; color: #a0998e; }

.cards { display: -webkit-flex; }  
.cards { display: flex; }    
  .card { position: relative; }
    .card .text { display: -webkit-flex; -webkit-flex-direction: column; -webkit-align-items: center; -webkit-justify-content: center; } 
    .card .text { width: 100%; height: 100%; position: absolute; top: 0; left: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; transition: all .25s; }
      .card .title { text-transform: uppercase; font-size: 25px; font-weight: bold; transition: background-color .25s; }
      .card .link { width: 51px; height: 51px; background: url("/images/icon/magnifier.png") center no-repeat; }
          
.cards-home .card:hover .text { background-color: rgba(156,149,136,.8); }
  .cards-home img { display: block; }
  .cards-home .title { background-color: rgba(156,149,136,.8); transition: background-color .25s; }
  .cards-home .card:hover .title { background-color: transparent; }
  .cards-home .card .link { display: none; }
  .cards-home .card:hover .link { display: block; }
      
.testimonials { color: #857c6d; }
  .testimonials .text { margin-top: 40px; text-align: center; border: 2px solid #e4e4e4; }
    .testimonials h3 { margin-top: 0; font-size: 18px; text-transform: uppercase; }
    .testimonials p { font-weight: 400; }
    .testimonials .more { font-size: 16px; font-weight: bold; }
      
.portfolio .categories { margin-top: 25px; }
  .portfolio .category { cursor: pointer; }
  .portfolio .category.active { color: #857c6d; }
.portfolio-items { -webkit-flex-wrap: wrap; }  
.portfolio-items { flex-wrap: wrap; }
  .portfolio-item:not(:nth-child(-n + 3)) { margin-top: 1px; }
    .portfolio-item img { width: 100%; display: block; }
    .portfolio-item .text { -webkit-align-items: flex-start; }    
    .portfolio-item .text { align-items: flex-start; background-color: rgba(156,149,136,.8); }
      .portfolio-item .title { margin-bottom: 35px; }
      .portfolio-item .more { margin-bottom: 25px; font-size: 16px; }
      
.news .news-list { margin-top: 35px; } 
article { display: -webkit-flex; margin-top: 15px; margin-bottom: 15px; }
article { position: relative; display: flex; padding: 10px; background-color: #edebe7; transition: box-shadow .25s; }
/*article:not(:nth-child(-n + 2)) { margin-top: 30px; }*/
article:hover { box-shadow: 5px 5px 15px rgba(0,0,0,.3); }
  article a { width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 11; }
  article .image { -webkit-flex-basis: 44%; }  
  article .image { flex-basis: 44%; margin-right: 20px; overflow: hidden; background-repeat: no-repeat; background-position: center center; background-size: cover; }
    article img { transition: transform .25s; }
    article:hover img { transform: translateZ(0) scale(1.05); }
  article .text { flex: 1; padding-bottom: 15px; }
    article h2,
    article h3 { margin-top: 20px; margin-bottom: 10px; text-align: left; font-size: 20px !important; font-weight: bold; line-height: 1.2; }
    article p { margin-top: 0; margin-bottom: 30px; font-weight: 400; }
    article .more { font-size: 14px; font-weight: bold; }
.button-news { width: 262px; line-height: 55px; float: left; margin-top: 35px; padding-right: 55px; padding-left: 15px; background: url("/images/icon/double-arrow.png") calc(100% - 15px) center no-repeat; color: #c6c2b9; border: 2px solid #c6c2b9; transition: all .25s; }
.button-news:hover { background: #c6c2b9 url("/images/icon/double-arrow-white.png") calc(100% - 15px) center no-repeat; color: #fff; }
    
.video-home { position: relative; background-color: #303030; }
  .video-home iframe { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
  
.logos .main-frame { display: -webkit-flex; -webkit-flex-wrap: wrap; }  
.logos .main-frame { display: flex; flex-wrap: wrap; }
  .partner-logo { display: -webkit-flex; -webkit-justify-content: center; -webkit-align-items: center; }
  .partner-logo { display: flex; justify-content: center; align-items: center; }
  .partner-logo:not(:nth-child(-n + 4)) { margin-top: 25px; }
    
footer { background-color: #857c6d; font-size: 14px; color: #fff; }
  footer a:hover { text-decoration: underline; }
  footer .main-frame { display: -webkit-flex; -webkit-justify-content: space-between; }  
  footer .main-frame { display: flex; justify-content: space-between; }
  footer .title { margin-bottom: 15px; text-transform: uppercase; font-weight: bold; }
  footer .links { display: -webkit-flex; -webkit-flex-direction: column; -webkit-align-items: flex-start; }  
  footer .links { display: flex; flex-direction: column; align-items: flex-start; }
  footer .links a:not(:last-child) { margin-bottom: 10px; }
  footer .links.extra { margin-top: 30px; text-transform: uppercase; font-weight: bold; }
  footer .socials { display: -webkit-flex; }  
  footer .socials { margin-top: 35px; margin-bottom: 85px; display: flex; }
    footer .social { float: left; background-repeat: no-repeat; }
    footer .social:not(:last-child) { margin-right: 25px; }
    footer .facebook { width: 16px; height: 30px; background-image: url("/images/logo/facebook.png"); }
    footer .linkedin { width: 29px; height: 28px; background-image: url("/images/logo/linkedin.png"); }
    footer .twitter { width: 32px; height: 25px; background-image: url("/images/logo/twitter.png"); }
    footer .instagram { width: 27px; height: 26px; background-image: url("/images/logo/instagram.png"); }
    footer .pinterest { width: 24px; height: 31px; background-image: url("/images/logo/pinterest.png"); }
    footer .houzz { width: 18px; height: 30px; background-image: url("/images/logo/houzz.png"); }
  footer .netsimple { line-height: 27px; float: left; padding-right: 20px; background: url("/images/logo/netsimple.png") right center no-repeat; }
    
.items { padding: 0 30px; }
  .item {padding: 10px 10px 25px 10px; background-color: #f3f3f3; transition: box-shadow .25s; }
  .item.book {color: #f3f3f3; /*background-color: #383838;*/ background-color: #857c6d; }
  .item:hover { box-shadow: 5px 5px 15px rgba(0,0,0,.3); }
    .item.catalog img { width: 100%; }
    .item .title { display: -webkit-flex; -webkit-justify-content: center; -webkit-align-items: center;}    
    .item .title { display: flex; justify-content: center; align-items: center; text-align: center; padding-top: 0px; text-transform: uppercase; }
    .item .decor { text-align: center; color: #7f7f7f; font-weight: bold; line-height: 1; }
.items.showrooms .item {width: calc(50% - 10px); flex-basis: calc(50% - 10px); margin: 10px 20px 10px 0px; padding: 10px 10px; /*color: #f3f3f3; background-color: #383838;*/}
.items.showrooms .item:nth-child(2n+2) {margin-right: 0px;}
.items.showrooms .item .title {font-size: 40px;}
.items.onlyTitle .item {padding: 10px 10px 0px 10px; }
.items.onlyTitle .item .title {height: auto; padding: 10px 0px 15px 0px; display: flex; align-items: center; }
@media screen and (min-width: 1401px)
{
  /*.items.showrooms .item .title {height: auto;  padding: 15px 0px 10px 0px; }*/
  
}
@media screen and (max-width: 1400px)
{
  .items.showrooms .item .title {height: auto;  padding: 15px 0px 10px 0px; font-size: 20px; }
}
@media screen and (max-width: 800px)
{
  .items.showrooms .item .title {height: auto;  padding: 15px 0px 10px 0px; font-size: 15px; }
  .items { padding-right: 2.5%; padding-left: 2.5%; }
}

.widget .wrapper { position: relative; }
  .widget h3,
  .widget h4 { font-weight: 500; }
  .widget h4 { margin-bottom: 10px; }
  .widget .head { display: -webkit-flex; -webkit-justify-content: center; }  
  .widget .head { width: 100%; display: flex; justify-content: center; }
    .widget .head .name { display: -webkit-flex; -webkit-justify-content: center; -webkit-align-items: center; } 
    .widget .head .name { display: flex; justify-content: center; align-items: center; background-color: #edebe7; text-align: center; text-transform: uppercase; color: #535353; cursor: pointer; transition: background-color .25s; }
    .widget .head .name:hover,
    .widget .head .name.active { background-color: #f7f7f7; }
    .widget .text { width: 100%; display: none; }
    .widget .files .text { display: block; }
    .widget:not(.frame) .text { float: left; }
  .widget .text.active { display: -webkit-flex; }    
  .widget .text.active { z-index: 1; display: flex; } 
  .widget .text.active.has-sub-head { -webkit-flex-direction: column; }  
  .widget .text.active.has-sub-head { flex-direction: column; }
    .widget .image { background-size: cover; background-position: center; }
    .widget.frame .content { font-weight: 400; color: #535353; }
      .widget.frame .title { font-size: 20px; }
      .widget .title { margin-bottom: 25px; text-transform: uppercase; font-weight: 500; }
      .widget strong { font-weight: 500; }
      .button { width: 100%; line-height: 55px; float: left; padding-left: 25px; background-position: calc(100% - 25px) center; background-repeat: no-repeat; transition: all .25s; }
      .button.ergonomics:not(.black) { background-image: url("/images/icon/double-arrow.png"); color: #c6c2b9; border: 2px solid #c6c2b9; }
      .button.ergonomics:not(.black):hover { background-color: #c6c2b9; background-image: url("/images/icon/double-arrow-white.png"); color: #fff; }
      .button.materials:not(.black) { background-image: url("/images/icon/double-arrow.png"); color: #c6c2b9; border: 2px solid #c6c2b9; }
      .button.materials:not(.black):hover { background-color: #c6c2b9; background-image:  url("/images/icon/double-arrow-white.png"); color: #fff; }
      .button.black { background-image: url("/images/icon/double-arrow-black.png"); color: #383838; border: 2px solid #383838; }
      .button.black:hover { background-color: #383838; background-image: url("/images/icon/double-arrow-white.png"); color: #fff; }
      .widget .button { margin-top: 40px; }
      .button.demand { width: 100%; float: right; padding-right: 60px; }
      .widget .sub-head { display: -webkit-flex; -webkit-justify-content: center; }      
      .widget .sub-head { display: flex; justify-content: center; }  
        .widget .sub-head .name { position: relative; cursor: pointer; }
        .widget .sub-head .name:after { content: ""; width: 100%; height: 2px; position: absolute; top: 100%; left: 0; background: #383838; opacity: 0; transition: .25s; }
        .widget .sub-head .name.active:after,
        .widget .sub-head .name:hover:after { top: 120%; opacity: 1; }
        .widget .sub-text .content { display: none; }
        .widget .sub-text .content.active { display: block; }

.photos { display: -webkit-flex; -webkit-justify-content: flex-start; -webkit-flex-wrap: wrap; }
.photos { display: flex; justify-content: flex-start; flex-wrap: wrap; }
  .photos a { outline: none; overflow: hidden; }
    .photos img { display: block; transition: transform .2s; }
    .photos img:hover { transform: translateZ(0) scale(1.025); }

.material-photos .photo { display: -webkit-flex; -webkit-flex-direction: column; }
.material-photos .photo { display: flex; flex-direction: column; border: 1px solid #cecbc6; transition: all .25s; }
.material-photos .photo:hover { box-shadow: 5px 5px 15px rgba(0,0,0,.3); }
  .material-photos .photo-cont { overflow: hidden; }
  .material-photos .photo-name { -webkit-flex: 1; display: -webkit-flex; -webkit-justify-content: center; -webkit-align-items: center; }  
  .material-photos .photo-name { flex: 1; min-height: 55px; display: flex; justify-content: center; align-items: center; padding: 0 5px; text-align: center; font-weight: 400; color: #797775; }
  .material-photos .photo-btn {display: flex; text-align: center; margin-bottom: 10px;}
  .material-photos .photo-btn A {flex: 1; background-image: url("/images/icon/banner-arrow.png"); background-color: rgb(4, 4, 4); color: #fff; background-repeat: no-repeat; background-position: right 14px center; padding: 6px 36px 6px; display: inline-block;}
  .material-photos .photo-btn A:HOVER {background-color: rgba(4, 4, 4, 0.7);}
    
.product-detail .image { margin-bottom: 25px; }
  .product-detail img { width: 100%; display: block; }
.gallery-detail .image { margin-bottom: 25px; }
  .gallery-detail img { width: 100%; display: block; }
.product-detail .text { display: -webkit-flex; -webkit-flex-direction: column; -webkit-justify-content: space-between; }  
.product-detail .text { display: flex; flex-direction: column; justify-content: space-between; align-items: center; }
.gallery-detail .text { display: flex; flex-direction: column; justify-content: space-between; align-items: center; }
  .product-detail .content { margin-bottom: 35px; } 
  .product-detail .links { margin-bottom: 25px; display: flex; flex-direction: column; align-items: flex-end; }
    .product-detail .button:not(:last-child) { margin-bottom: 10px; }
  .product-detail .files a { line-height: 55px; float: left; padding-right: 15px; background: #edebe7 url("/images/icon/product-pdf.png") 15px center no-repeat; text-align: right; font-size: 14px; }
 
.contact-text { float: left; }
.contact-location { float: right; }
  .google-map { height: 300px; margin-bottom: 25px; }
  
.locations .map { float: left; }
.locations .places { float: right; }
  .locations .place { display: -webkit-flex; -webkit-align-items: flex-start; }
  .locations .place { width: 100%; display: flex; align-items: flex-start; transition: 250ms; }
  .locations .place.hidden { opacity: .2; overflow: hidden; animation: toZero 250ms forwards 500ms; transition: opacity 250ms; }
  .locations .place:not(:last-child) { margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid #d2d2d2; }
    .locations .text { -webkit-flex: 1; }  
    .locations .text { flex: 1; }
      .locations h2 { margin-bottom: 10px; font-size: 25px; }
    .locations img { margin-left: 10px; }

.showroomDetailFrame {width: 100%; float: left; padding: 0px;}
.showroomDetailFrame .topFrame {width: 100%; float: left; padding: 0px 30px; display: flex;}
.showroomDetailFrame .topFrame .leftFrame {width: 50%; float: left; padding: 0px; }
.showroomDetailFrame .topFrame .leftFrame H1 {text-align: left; font-size: 45px; margin: 0px;}
.showroomDetailFrame .topFrame .leftFrame H2 {text-align: left; font-size: 40px; margin: 0px; font-weight: 300; text-transform: none;}
.showroomDetailFrame .topFrame .rightFrame {width: 50%; float: left; padding: 0px; display: flex; align-items: flex-end; justify-content: flex-end;}
.showroomDetailFrame .topFrame .rightFrame P {font-size: 20px; text-align: right;}
@media screen and (max-width: 800px)
{
  .showroomDetailFrame .topFrame {padding: 0px 10px; flex-wrap: wrap;}
  .showroomDetailFrame .topFrame .leftFrame {width: 100%; display: flex; flex-direction: column; align-items: center;}
  .showroomDetailFrame .topFrame .rightFrame {width: 100%; display: flex; flex-direction: column; align-items: center; margin: 25px 0px 0px 0px;}
}

.showroomDetailFrame .bannerFrame {width: 100%; float: left; margin: 30px 0px;}
.showroomDetailFrame .addressMapFrame {width: 100%; float: left; padding: 0px 30px; margin: 30px 0px; display: flex;}
.showroomDetailFrame .addressFrame {width: 32.5%; float: left; margin: 0px 1.25% 0px 0px;}
.showroomDetailFrame .addressFrame H3 {width: 100%; margin: 0px 0px 15px 0px; font-size: 35px; font-weight: 500; text-transform: uppercase;}
.showroomDetailFrame .addressFrame .blogFrame {width: 100%; float: left; padding: 30px; margin: 20px 0px 0px 0px; border: 2px #c4c4c4 solid; }
.showroomDetailFrame .addressFrame .blogFrame .button-1 {width: auto; float: left; padding: 15px 35px 15px 20px; border: 2px #c4c4c4 solid; display: block; background-image: url('/images/arrow-r-gray.png'); background-position: right 15px center; background-repeat: no-repeat;}
.showroomDetailFrame #showroomMapFrame {width: 100%; height: auto; float: left;}
.contact-location #showroomMapFrame {width: 100%; height: 300px; float: left;}

.showroomDetailFrame #googleMapCont {width: 66.25%; height: auto; float: left; display: flex; position: relative;}
.showroomDetailFrame #googleMapCont .googleMapLink {width: 100%; height: 100%; position: absolute; z-index: 100;}

@media screen and (max-width: 800px)
{
  .showroomDetailFrame .addressMapFrame {flex-wrap: wrap; padding: 0px 10px;}
  .showroomDetailFrame .addressFrame {width: 100%; margin: 0px 0px 20px 0px;}
  .showroomDetailFrame #googleMapCont {width: 100%;}
  .showroomDetailFrame #showroomMapFrame {width: 100%; height: 300px;}
  .showroomDetailFrame .addressFrame .blogFrame {padding: 15px;}
}

.headingCenter1 {font-size: 45px; display: flex; justify-content: space-around; font-weight: 300; text-transform: none; margin: 0px 0px 20px 0px;}
    
@-webkit-keyframes toZero {
  from { height: auto; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid #d2d2d2; }
  to { height: 0; margin: 0; padding: 0; border: 0; }
}     
@keyframes toZero {
  from { height: auto; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid #d2d2d2; }
  to { height: 0; margin: 0; padding: 0; border: 0; }
}

.mb-0 {margin-bottom: 0px !important;}
.mb-20 {margin-bottom: 20px !important;}
.mb-30 {margin-bottom: 30px !important;}                                                                                           