@charset "utf-8";
/* CSS Document */ :root {
  --primary: #0196AE;
  --text: #444;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  margin: 0;
  font-family: 'Open San', Arial, serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  text-align: left;
  background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}
h1, h2 {
  font-family: 'Cormorant SC', serif;
  font-weight: bold;
}
h2, .h2 {
  font-size: clamp(28px, 2.5vw, 42px);
  margin-bottom: 0.6em;
}
h3, .h3 {
  font-size: clamp(22px, 2vw, 32px);
  font-family: 'Cormorant SC', serif;
}
img {
  max-width: 100%;
}
p {
  line-height: 1.6;
}
.anchor {
  margin-top: -75px;
  padding-top: 75px;
}
.line-hover {
  position: relative;
  display: inline-block;
}
.line-hover:after {
  -webkit-transition: all .5s;
  transition: all .5s;
  content: '';
  position: absolute;
  right: 10%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #0196AE;
}
.line-hover.active:after, .line-hover:hover:after {
  left: 10%;
  width: 80%;
  background-color: #0196AE;
}
.line-hover.active:after {
  background-color: #000;
}
@media (max-width: 767.98px) {
  .anchor {
    margin-top: -58px;
    padding-top: 58px;
  }
}
/*******************************************************************header**/
#header {
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
#mainNavbar {
  padding-left: 5px;
  padding-right: 5px;
  height: 75px;
}
.logo-symbol {
  width: 70px;
  display: block;
}
.logo-text {
  width: 220px;
  display: block;
}
#mainNavbar .navbar-brand {
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -110px;
}
#mainMenu .nav-item {
  margin-left: 10px;
  margin-right: 10px;
}
#mainMenu .nav-link {
  padding: 4px 10px;
}
@media (max-width: 767.98px) {
  .logo-symbol {
    width: 60px;
    margin-left: -8px;
  }
  .logo-text {
    width: 170px;
  }
  #mainNavbar {
    height: auto;
    min-height: 58px;
  }
  #mainNavbar .navbar-brand {
    margin-left: -85px;
    top: 15px;
  }
  #mainMenu {
    text-align: center;
    transition: 0.1s all;
  }
  #mainMenu.show {
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: center;
  }
  #mainMenu .nav-item {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
/*******************************************************************custom-toggle**/
.custom-toggle {
  position: relative;
  height: 30px;
  width: 30px;
  padding: 0;
  margin: 0 10px 0 10px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.custom-toggle .icon-bar {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 0;
  background-color: var(--text);
  position: absolute;
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  top: 13px;
  left: 2px;
  opacity: 1;
}
@media (min-width: 992px) {
  #header .custom-toggle {
    display: none;
  }
}
.custom-toggle:hover, .custom-toggle:focus {
  outline: 0;
}
.custom-toggle.collapsed .bar1 {
  opacity: 1;
  top: 10px;
}
.custom-toggle.collapsed .bar2 {
  opacity: 1;
  top: 20px;
}
.custom-toggle .icon-bar.bar1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.custom-toggle .icon-bar.bar2 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.custom-toggle.collapsed .icon-bar {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}
/*******************************************************************mainBanner**/
.mainBanner {
  display: flex;
  height: 100vh;
  width: 100%;
  background-image: url('../images/banner.jpg');
  background-color: #0196AE;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  justify-content: center;
  align-items: center;
}
.mainBanner .title {
  margin-top: -30vh;
  font-family: 'Cormorant SC', serif;
  font-size: clamp(36px, 3vw, 64px);
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.mainBanner .title span {
  display: block;
  font-size: 0.7em;
  margin-top: 0px;
}
@media (max-width: 1366px) {
  .mainBanner {
    max-height: 800px;
  }
}
@media (max-width: 767.98px) {
  .mainBanner {
    max-height: 700px;
    align-items: flex-start;
  }
  .mainBanner .title {
    margin-top: 170px;
  }
  .mainBanner .title span {
    font-size: 0.8em;
  }
}
/*******************************************************************about Us**/
#about-us {
  /*background: linear-gradient(#0196ae 0%, #03bcda 100%);*/
  background-color: #2E2E2E;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.btn {
  padding: 0.7em 2em;
  border-radius: 0;
}
.hide {
  display: none;
}
@media (max-width: 767.98px) {
  #about-us {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/*******************************************************************catalogue**/
#catalogue {}
.imgBanner {
  height: 480px;
  max-height: 50vh;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../images/cabinet-tv-modern-living-room-with-armchair-lamp-table-flower-plant-concrete-wall-background-3d-rendering.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: inherit;
  color: #fff;
}
.product-list-container {
  padding-top: 15px;
}
.navTab-wrapper {
  position: sticky;
  top: 75px;
  z-index: 10;
  padding: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.75);
}
@-moz-document url-prefix() {
  .navTab-wrapper {
    background: white;
  }
}
.navTab-wrapper .navTab-container {
  max-width: 1570px;
  margin: auto;
}
.navTab-wrapper .navTab-list {
  margin: 0;
  padding: 15px 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.navTab-wrapper .navTab-list > li {
  display: block;
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin: 2px 1.5vw;
  padding: 5px 2px; 
}
.navTab-wrapper .navTab-list > li button {
  color: #777;
  border: none;
  background-color: transparent;
  white-space: nowrap;
  padding: 3px 5px;
}
.navTab-wrapper .navTab-list > li button:hover {
  color: #333;
}
.navTab-wrapper .navTab-list > li button.active {
  color: var(--text);
}
.navTab-wrapper .navTab-list > li button.active::after {
  left: 0;
  width: 100%;
  background-color: #000;
}
.navTab-wrapper .navTab-container {
  overflow: auto;
}
@media (max-width: 1200px){
  .navTab-wrapper .navTab-list {
    justify-content: flex-start;
    padding: 15px 10px;
  }
}
@media (max-width: 991.98px) {
  .imgBanner {
    height: 400px;
    background-position: 20%;
  }
  .navTab-wrapper {
    top: 75px;
  }
}
@media screen and (max-width: 767.98px) {
  .imgBanner {
    height: 300px;
  }
  .navTab-wrapper {
    top: 56px;
  }
  .navTab-wrapper .navTab-list > li{
    padding-left: 5px;
    padding-right: 5px;
  }
}
.coverWrapper {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
.coverWrapper::after {
  padding-top: 66.66%;
  display: block;
  content: '';
}
.coverWrapper.scale169::after {
  padding-top: 56.25%;
}
.coverWrapper.square::after, .coverWrapper.circle::after {
  padding-top: 100%;
}
.coverWrapper.circle .cover {
  border-radius: 1000px;
  overflow: hidden;
}
.coverWrapper .cover, .coverWrapper .coverText {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.coverWrapper .cover {
  z-index: 1;
}
.coverWrapper .cover img {
  /*position: absolute;*/
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.coverWrapper .cover.contain img {
  object-fit: contain;
}
.coverWrapper .cover-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.coverWrapper .cover-tag > .cover-tag-item {
  display: inline-block;
  font-size: 0.8rem;
}
.coverWrapper .cover-hover {
  z-index: 0;
  opacity: 0;
  transition: 0.3s all;
}
.coverWrapper .overlays {
  z-index: 5;
}
.coverWrapper .coverText {
  z-index: 10;
}
.coverWrapper .cover-button {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: .3s ease-in-out;
}
.coverWrapper a:hover img, .coverWrapper a:focus img {
  transform: scale(1.05);
}
@media screen and (max-width: 767.98px) {
  .coverWrapper .cover-button {
    display: none;
  }
}
.sl-wrapper {
  position: fixed;
  top: 0;
  left: 0;
}
.sl-overlay {
  background-color: #000;
}
.sl-wrapper .sl-close, .sl-wrapper .sl-navigation button {
  color: #fff;
}
/*******************************************************************product list**/
#product-list {
  min-height: calc(20vw - 3px);
  padding-left: 2px;
  padding-right: 2px;
}
.product-list {
  margin-top: 15px;
  margin-left: -2px;
  margin-right: -2px;
}
.product-list > .product-item {
  padding: 2px;
}
.product-item {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  position: relative;
  width: 100%;
}
.product-list .cover img {
  object-position: center;
  object-fit: contain;
}
@media (max-width: 1200px) {
  #product-list {
    min-height: 25vw;
  }
  .product-item {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 991.98px) {
  #product-list {
    min-height: 33vw;
  }
  .product-item {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (max-width: 767.98px) {
  .product-list-container {
    padding-top: 0;
  }
  #product-list {
    min-height: 50vw;
  }
  .product-item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/*******************************************************************contact us**/
#contact-us {
  background-color: #2E2E2E;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 30px;
}
.contactInfo {
  display: flex;
  flex-wrap: nowrap;
}
.contactInfo > div {
  padding-left: 10px;
}
.form-control {
  border: none;
  padding: 25px 12px;
  font-size: 1em;
}
@media (max-width: 767.98px) {
  #contact-us {
    padding-top: 50px;
  }
}
footer {
  font-size: 14px;
}
footer a {
  color: white !important;
  text-decoration: none !important;
}
.footer-up .fa-solid {
  width: 1em;
  display: block;
  text-align: center;
  margin-top: 0.1em;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #fff;
}