/*Colors*/
.banner {
  background: #e7e7e7;
  width: 100%;
  aspect-ratio: 19/3;
  background-image: url("/Content/images/InteriorBanner.jpg");
  background-size: cover; }
  @media only screen and (max-width: 1250px) {
    .banner {
      height: 200px;
      aspect-ratio: initial; } }
  @media only screen and (max-width: 700px) {
    .banner {
      height: 150px; } }

.body-wrap *:last-child {
  margin-bottom: 0; }

.visual-nav-section .visual-nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: clamp(20px, 3.6vw, 55px); }
  @media only screen and (max-width: 850px) {
    .visual-nav-section .visual-nav {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }
  .visual-nav-section .visual-nav .nav-item a {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2/1;
    position: relative;
    width: 100%;
    display: block; }
    .visual-nav-section .visual-nav .nav-item a img {
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      -o-object-fit: cover;
      object-fit: cover;
      position: absolute;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
    .visual-nav-section .visual-nav .nav-item a span {
      position: absolute;
      width: 100%;
      padding: 40px 30px;
      color: #ffffff;
      bottom: 0;
      left: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      text-align: center;
      font-size: clamp(16px, 1.45vw, 22px);
      font-weight: 600;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
      background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
      background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
      transition: .3s all ease;
      height: 30%; }
    .visual-nav-section .visual-nav .nav-item a:hover img, .visual-nav-section .visual-nav .nav-item a:active img, .visual-nav-section .visual-nav .nav-item a:focus img {
      -webkit-transform: scale(1.06);
      -ms-transform: scale(1.06);
      transform: scale(1.06); }
    .visual-nav-section .visual-nav .nav-item a:hover span, .visual-nav-section .visual-nav .nav-item a:active span, .visual-nav-section .visual-nav .nav-item a:focus span {
      height: 100%; }

.bottom-cta {
  width: 100%;
  padding-block: 40px;
  background: #fbcb07; }
  .bottom-cta h5 {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .bottom-cta h5 a {
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease;
      color: #000000;
      text-align: center; }
      .bottom-cta h5 a:hover {
        color: #555;
        text-decoration: underline; }

.brands-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 40px 0 80px;
  gap: 30px;
  list-style-type: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .brands-list li {
    width: clamp(125px, 25vw, 250px);
    overflow: hidden; }
    .brands-list li a img {
      height: auto;
      display: block;
      width: 100%;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
    .brands-list li a:hover img, .brands-list li a:active img, .brands-list li a:focus img {
      -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
      transform: scale(1.02); }

.SiteMain ul:not([class]) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  gap: 10px;
  padding-left: 15px;
  margin-bottom: clamp(20px, 3.25vw, 50px); }

.SiteMain ul.multicolumn {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 50px;
  padding-left: 15px;
  margin-bottom: clamp(20px, 3.25vw, 50px); }
  @media only screen and (max-width: 1350px) {
    .SiteMain ul.multicolumn {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media only screen and (max-width: 850px) {
    .SiteMain ul.multicolumn {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }

.tall-bg {
  background-color: #000000;
  background-size: contain;
  background-position: bottom; }

.sticky-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33% 1fr;
  grid-template-columns: 33% 1fr; }
  @media only screen and (max-width: 1250px) {
    .sticky-grid {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }
  .sticky-grid .img-wrapper {
    position: -webkit-sticky;
    position: sticky;
    width: 100%;
    height: 100vh;
    max-height: 100%;
    position: sticky;
    top: 0; }
    @media only screen and (max-width: 1250px) {
      .sticky-grid .img-wrapper {
        height: auto;
        aspect-ratio: 2/1;
        position: relative; } }
    .sticky-grid .img-wrapper img {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      -o-object-fit: cover;
      object-fit: cover;
      display: block; }
  .sticky-grid .sticky-inner hr {
    margin-block: clamp(20px, 3.33vw, 50px);
    height: 2px;
    background-color: #fbcb07;
    border: none; }

.contact-split {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 700px 1fr;
  grid-template-columns: 700px 1fr;
  gap: 0 clamp(40px, 6.5vw, 100px);
  position: relative; }
  @media only screen and (max-width: 1600px) {
    .contact-split {
      -ms-grid-columns: 45% 1fr;
      grid-template-columns: 45% 1fr; } }
  @media only screen and (max-width: 1100px) {
    .contact-split {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }
  @media only screen and (min-width: 1101px) {
    .contact-split .contact-header {
      -ms-grid-column-span: 2;
      grid-column: span 2; } }
  @media only screen and (max-width: 1100px) {
    .contact-split .contact-header {
      margin-bottom: 30px; } }
  @media only screen and (min-width: 1101px) {
    .contact-split .contact-body {
      -ms-grid-column-span: 2;
      grid-column: span 2;
      margin-bottom: 60px; } }
  @media only screen and (max-width: 1100px) {
    .contact-split .contact-body {
      -ms-grid-row: 3;
      -ms-grid-row-span: 1;
      grid-row: 3/4;
      margin-bottom: 30px; } }
  .contact-split .form-wrapper {
    height: 100%;
    /* Default */ }
    .contact-split .form-wrapper #ContactForm {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      background: #fbcb07;
      padding: clamp(20px, 4vw, 60px); }
      .contact-split .form-wrapper #ContactForm .inner {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        gap: 15px; }
        .contact-split .form-wrapper #ContactForm .inner label {
          display: block;
          font-weight: 700;
          margin-bottom: 3px; }
          .contact-split .form-wrapper #ContactForm .inner label.error {
            display: block;
            color: #f00;
            margin-top: 3px;
            font-size: 12px; }
        .contact-split .form-wrapper #ContactForm .inner input[type="text"], .contact-split .form-wrapper #ContactForm .inner input[type="email"], .contact-split .form-wrapper #ContactForm .inner input[type="tel"], .contact-split .form-wrapper #ContactForm .inner textarea {
          border: none;
          color: #000000;
          font-size: 20px;
          padding: 8px;
          width: 100%;
          border-radius: 5px;
          background: #ffffff; }
          .contact-split .form-wrapper #ContactForm .inner input[type="text"]:focus, .contact-split .form-wrapper #ContactForm .inner input[type="email"]:focus, .contact-split .form-wrapper #ContactForm .inner input[type="tel"]:focus, .contact-split .form-wrapper #ContactForm .inner textarea:focus {
            border: 1px solid #22a; }
          .contact-split .form-wrapper #ContactForm .inner input[type="text"].error, .contact-split .form-wrapper #ContactForm .inner input[type="email"].error, .contact-split .form-wrapper #ContactForm .inner input[type="tel"].error, .contact-split .form-wrapper #ContactForm .inner textarea.error {
            color: #f00;
            background-color: #e7e7e7; }
        .contact-split .form-wrapper #ContactForm .inner textarea {
          height: 125px;
          resize: none; }

ul.contacts {
  list-style-type: none;
  padding: 0;
  margin-block: 30px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px; }
  @media only screen and (max-width: 1600px) {
    ul.contacts {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }
  @media only screen and (max-width: 1100px) {
    ul.contacts {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr; } }
  @media only screen and (max-width: 650px) {
    ul.contacts {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }
  ul.contacts li {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 10px; }
    @media only screen and (max-width: 800px) {
      ul.contacts li {
        font-size: 14px; } }

.featured-gallery {
  border: 2px solid #fbcb07;
  border-radius: 10px;
  margin-bottom: 80px; }
  .featured-gallery h2 {
    background: #fbcb07;
    text-align: center;
    padding: 10px;
    margin-top: 0; }
  .featured-gallery p {
    margin-inline: 40px; }
  .featured-gallery .featured-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: clamp(20px, 3.6vw, 55px);
    margin-inline: 40px;
    margin-bottom: 40px; }
    @media only screen and (max-width: 850px) {
      .featured-gallery .featured-grid {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%; } }
    .featured-gallery .featured-grid .item {
      width: 100%; }
      .featured-gallery .featured-grid .item a {
        border-radius: 10px;
        overflow: hidden;
        aspect-ratio: 5/4;
        position: relative;
        width: 100%;
        display: block; }
        @media only screen and (max-width: 850px) {
          .featured-gallery .featured-grid .item a {
            aspect-ratio: 5/2; } }
        .featured-gallery .featured-grid .item a img {
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          -o-object-fit: cover;
          object-fit: cover;
          position: absolute;
          -webkit-transition: .3s all ease;
          -o-transition: .3s all ease;
          transition: .3s all ease; }
        .featured-gallery .featured-grid .item a span {
          position: absolute;
          width: 100%;
          padding: 40px 30px;
          color: #ffffff;
          bottom: 0;
          left: 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          text-align: center;
          font-size: clamp(16px, 1.45vw, 22px);
          font-weight: 600;
          -webkit-transition: .3s all ease;
          -o-transition: .3s all ease;
          transition: .3s all ease;
          background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
          background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
          background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
          background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
          transition: .3s all ease;
          height: 30%; }
        .featured-gallery .featured-grid .item a:hover img, .featured-gallery .featured-grid .item a:active img, .featured-gallery .featured-grid .item a:focus img {
          -webkit-transform: scale(1.06);
          -ms-transform: scale(1.06);
          transform: scale(1.06); }
        .featured-gallery .featured-grid .item a:hover span, .featured-gallery .featured-grid .item a:active span, .featured-gallery .featured-grid .item a:focus span {
          height: 100%; }

.main-gallery h2 {
  text-align: center; }

.main-gallery .gallery-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: clamp(15px, 3.6vw, 30px);
  margin-block: 40px 80px; }
  @media only screen and (max-width: 1100px) {
    .main-gallery .gallery-grid {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media only screen and (max-width: 850px) {
    .main-gallery .gallery-grid {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }
  .main-gallery .gallery-grid .item {
    width: 100%; }
    .main-gallery .gallery-grid .item a {
      border-radius: 10px;
      overflow: hidden;
      aspect-ratio: 5/4;
      position: relative;
      width: 100%;
      display: block; }
      @media only screen and (max-width: 850px) {
        .main-gallery .gallery-grid .item a {
          aspect-ratio: 5/2; } }
      .main-gallery .gallery-grid .item a img {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
        position: absolute;
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
      .main-gallery .gallery-grid .item a span {
        position: absolute;
        width: 100%;
        padding: 40px 30px;
        color: #ffffff;
        bottom: 0;
        left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        font-size: clamp(14px, 1.45vw, 18px);
        font-weight: 600;
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
        transition: .3s all ease;
        height: 30%; }
      .main-gallery .gallery-grid .item a:hover img, .main-gallery .gallery-grid .item a:active img, .main-gallery .gallery-grid .item a:focus img {
        -webkit-transform: scale(1.06);
        -ms-transform: scale(1.06);
        transform: scale(1.06); }
      .main-gallery .gallery-grid .item a:hover span, .main-gallery .gallery-grid .item a:active span, .main-gallery .gallery-grid .item a:focus span {
        height: 100%; }

.gallery-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: clamp(15px, 3.6vw, 30px);
  margin-block: 40px 80px; }
  @media only screen and (max-width: 1100px) {
    .gallery-wrapper {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media only screen and (max-width: 850px) {
    .gallery-wrapper {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }
  .gallery-wrapper .item {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3; }
    .gallery-wrapper .item img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
    .gallery-wrapper .item:hover img {
      -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
      transform: scale(1.02); }
    .gallery-wrapper .item:hover span {
      background: #777;
      color: #ffffff; }

.back-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000000;
  font-size: 24px;
  margin-top: 30px;
  font-weight: 600; }
  .back-link svg {
    fill: currentColor;
    height: 18px;
    width: 18px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }

.company-info-grid {
  margin-bottom: 60px;
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-columns: (auto)[3];
  grid-template-columns: repeat(3, auto); }
  @media only screen and (max-width: 1800px) {
    .company-info-grid {
      -ms-grid-columns: (auto)[2];
      grid-template-columns: repeat(2, auto); } }
  @media only screen and (max-width: 1200px) {
    .company-info-grid {
      -ms-grid-columns: (auto)[1];
      grid-template-columns: repeat(1, auto); } }
  @media only screen and (max-width: 1100px) {
    .company-info-grid {
      -ms-grid-columns: (auto)[3];
      grid-template-columns: repeat(3, auto); } }
  @media only screen and (max-width: 950px) {
    .company-info-grid {
      -ms-grid-columns: (auto)[2];
      grid-template-columns: repeat(2, auto); } }
  @media only screen and (max-width: 500px) {
    .company-info-grid {
      -ms-grid-columns: (auto)[1];
      grid-template-columns: repeat(1, auto); } }
  @media only screen and (max-width: 1800px) and (min-width: 1201px) {
    .company-info-grid .item-wide {
      -ms-grid-column-span: 2;
      grid-column: span 2; } }
  @media only screen and (max-width: 950px) and (min-width: 501px) {
    .company-info-grid .item-wide {
      -ms-grid-column-span: 2;
      grid-column: span 2; } }
