/*!
 * Lynxsia IT Solutions - https://www.lynxsia.com
 * Contact - info@lynxsia.com
 */
/*===================
Basic & Home Page
=================*/
body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.6em;
}
strong{
  font-weight: bold;
}
.mg-10{
  margin: 10px;
}
.mg-t-10{
  margin-top: 10px;
}
.mg-b-10{
  margin-bottom: 10px;
}
.mg-tb-10{
  margin-top: 10px;
  margin-bottom: 10px;
}
.pd-10{
  padding: 10px;
}
/* Top Info Header */
.top-header{
  padding: 10px 0px 5px 20px;
  border-bottom: #1e1e4b solid thin;
}
.top-header-link{
  color: black;
}
.top-header-link:hover{
  color: black;
  text-decoration: underline;
}
/* Top Info Header End */

/* Bran Bar End */
.brand-bar{
  padding: 10px 0px 5px 20px;
}
.brand-logo{
  margin: auto 10px;
  padding: 5px;
}
.brand-search{
  margin: auto 10px;
  padding: 5px;
}
.brand-social{
  margin: auto 10px;
  padding: 5px;
}
/* Brand Bar End*/

/* Navigation Menu */
.navbar{
  background-color: #1e1e4b;
  padding-left: 20px;
}
.navbar-brand{
  font-family: Script MT;
  font-weight: bold;
  font-size: 24px;
}
.navbar-toggler{
  padding: 10px;
  border: #ffbc3b solid 2px !important;
  color: #ffbc3b !important;
}
.navbar-toggler:hover{
  background-color: #ffbc3b;
  border: #fff solid 2px !important;
  color: #fff !important;
  transition: .50s ease;
}
.navbar-nav{
  background-color: #ff5722;
  margin: 0px;
}
.nav-item:hover, .nav-item.active{
  background-color: #ffbc3b;
  border-bottom: #fff solid thick;
  transition: 0.75s ease;
}
/* Hover Dropdown PC-Screen */
@media screen and (min-width: 998px){
  .navbar-brand{
    display: none;
  }
  .dropdown:hover .dropdown-menu{
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
    border-bottom: #ffbc3b solid 5px;
    border-radius: 0px;
    display: block;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    transition: 0.75s ease;
  }
  .dropdown-menu{
    margin-top: 0px;
    height: 300px;
    overflow-y: scroll;
  }
  .dropdown-toggle{
    margin-bottom: 0px;
  }
  .navbar .dropdown-toggle, .nav-tabs .dropdown-toggle{
    margin-bottom: 0;
  }
  .dropdown-item:hover{
    border-left: #ffbc3b solid 5px;
    color: #ffbc3b !important;
  }
}
/* Hover Dropdown PC-Screen */
/* Hover Dropdown Tablet-Screen */
@media only screen and (max-width:998px) {
  .dropdown-menu{
    margin-top: 0px;
    height: 200px;
    overflow-y: scroll;
  }
  .dropdown-menu:hover{
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
    border-bottom: #ffbc3b solid 5px;
    border-radius: 0px;
    display: block;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    transition: 0.75s ease;
  }
  .dropdown-item:hover{
    border-left: #ffbc3b solid 5px;
    color: #ffbc3b !important;
  }
}
/* Hover Dropdown Tablet-Screen */
/* Hover Dropdown MB-Screen */
@media only screen and (max-width:568px) {
  .dropdown-menu{
    margin-top: 0px;
    height: 200px;
    overflow-y: scroll;
  }
  .dropdown-menu:hover{
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
    border-bottom: #ffbc3b solid 5px;
    border-radius: 0px;
    display: block;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    transition: 0.75s ease;
  }
  .dropdown-item:hover{
    border-left: #ffbc3b solid 5px;
    color: #ffbc3b !important;
  }
}
/* Hover Dropdown MB-Screen */
/* Navigation Menu Fixed On Scroll */
.navMenuFixed{
  top: 0;
  z-index: 100;
  position: fixed;
  width: 100%;
  opacity: 0.9;
}
/* Navigation Menu Fixed On Scroll */
/* Navigation Menu End */

/* Carousel */
.carousel-navigation{
  color: #1e1e4b;
}
.carousel-content{
  position: absolute;
  top: -200px;
  left: -30px;
  text-align: left;
  width: 550px;
}
.carousel-heading{
  color: #1e1e4b;
  font-weight: bold;
  font-family: monospace;
}
.carousel-text{
  color: #1e1e4b;
  font-family: monospace;
}
.carousel-link{
  padding: 15px 30px;
  background-color: #ffbc3b;
  border-left: #fff solid 5px;
  color: #fff;
  font-family: monospace;
  display:inline-block;
  vertical-align:middle;
  -webkit-transform:perspective(1px) translateZ(0);
  transform:perspective(1px) translateZ(0);
  box-shadow:0 0 1px rgba(0,0,0,0);
  position:relative;
  -webkit-transition-property:color;
  transition-property:color;
  -webkit-transition-duration:.75s;
  transition-duration:.75s;
}
.carousel-link:before{
  content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#fff;
  -webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 50%;transform-origin:0 50%;
  -webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.75s;
  transition-duration:.75s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out;
}
.carousel-link:active,.carousel-link:focus,.carousel-link:hover{
  background-color: #fff;
  border-right: #ffbc3b solid 5px;
  color: #ffbc3b;
  font-weight: bold;
  transition: .75s;
}
.carousel-link:active:before,.carousel-link:focus:before,.carousel-link:hover:before{
  -webkit-transform:scaleX(1);transform:scaleX(1);
  -webkit-transition-timing-function:cubic-bezier(0.52,1.64,.37,.66);
  transition-timing-function:cubic-bezier(0.52,1.64,.37,.66);
}
@media only screen and (max-width:998px){
  .carousel-content{
    position: absolute;
    top: -150px;
    left: -30px;
  }
}
/* Carousel End */

/* Section Heading */
.divider {								/* minor cosmetics */
  display: table;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  width: 75%; 						/* divider width */
  margin: 70px auto;					/* spacing above/below */
}
.divider span { display: table-cell; position: relative; }
.divider span:first-child, .divider span:last-child {
  width: 50%;
  top: 13px;							/* adjust vertical align */
  -moz-background-size: 100% 2px; 	/* line width */
  background-size: 100% 2px; 			/* line width */
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
}
.divider span:first-child {				/* color changes in here */
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), to(#000));
  background-image: -webkit-linear-gradient(180deg, transparent, #000);
  background-image: -moz-linear-gradient(180deg, transparent, #000);
  background-image: -o-linear-gradient(180deg, transparent, #000);
  background-image: linear-gradient(90deg, transparent, #000);
}
.divider span:nth-child(2) {
color: #1e1e4b; padding: 0px 5px; width: auto; white-space: nowrap;
}
.divider span:last-child {				/* color changes in here */
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#000), to(transparent));
  background-image: -webkit-linear-gradient(180deg, #000, transparent);
  background-image: -moz-linear-gradient(180deg, #000, transparent);
  background-image: -o-linear-gradient(180deg, #000, transparent);
  background-image: linear-gradient(90deg, #000, transparent);
}
/* Section Heading End */

/* Know More Button */
.know-more{
  padding: 15px 30px;
  background-color: #fff;
  border-top: #ffbc3b solid 3px;
  border-bottom: #ffbc3b solid 3px;
  color: #ffbc3b;
  float: right;
  font-family: monospace;
  display:inline-block;
  vertical-align:middle;
  -webkit-transform:perspective(1px) translateZ(0);
  transform:perspective(1px) translateZ(0);
  box-shadow:0 0 1px rgba(0,0,0,0);
  position:relative;
  background:#fff;
  -webkit-transition-property:color;
  transition-property:color;
  -webkit-transition-duration:.75s;
  transition-duration:.75s;
}
.know-more:before{
  content:"";position:absolute;z-index:-1;top:0;bottom:0;left:0;right:0;background:#ffbc3b;
  -webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:50%;transform-origin:50%;
  -webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.75s;
  transition-duration:.75s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out;
}
.know-more:active,.know-more:focus,.know-more:hover{
  border-top: #f57f17 solid 5px;
  border-bottom: #f57f17 solid 5px;
  color: #fff;
  font-weight: bold;
  transition: .75s;
}
.know-more:active:before,.know-more:focus:before,.know-more:hover:before{
  -webkit-transform:scaleY(1);
  transform:scaleY(1);
}
/* Know More Button End */
/* Products */
.product-container{
  background-color: #ffbc3b;
  border-top: #1e1e4b solid 5px;
  border-bottom: #1e1e4b solid 5px;
}
/* Card */
.card{
  z-index: 0 !important;
  box-shadow: none !important;
  border: #ffbc3b solid thin;
  transition: .50s ease;
}
.card:hover{
  z-index: 999 !important;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15) !important;
}
.card-title{
  color: #1e1e4b !important;
}
/* Card End */
/* Products End */

/* Category Card */
.category-card-chair{
  background-image: url("../images/home/category-chair.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 110%;
  height: 250px;
  width: 100%;
  display: flex;
  transition: all .50s ease-in-out;
}
.category-card-chair:hover{
  background-size: 100%;
}
.category-card-table{
  background-image: url("../images/home/category-table.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 110%;
  height: 250px;
  width: 100%;
  display: flex;
  transition: all .50s ease-in-out;
}
.category-card-table:hover{
  background-size: 100%;
}
.category-card-sofa{
  background-image: url("../images/home/category-sofa.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 110%;
  height: 250px;
  width: 100%;
  display: flex;
  transition: all .50s ease-in-out;
}
.category-card-sofa:hover{
  background-size: 100%;
}
.category-card-bed{
  background-image: url("../images/home/category-bed.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 110%;
  height: 250px;
  width: 100%;
  display: flex;
  transition: all .50s ease-in-out;
}
.category-card-bed:hover{
  background-size: 100%;
}
.category-card-link{
  margin: auto;
  padding: 30px;
  background-color: #ffbc3b;
  font-size: 24px;
  font-weight: bold;
  font-family: Arial;
  color: #fff;
  opacity: 0.5;
  text-transform: uppercase;
}
.category-card-link:hover{
  opacity: 0.9;
  transition: .75s;
  color: #fff;
  border-bottom-right-radius: 40px;
  border-top-left-radius: 40px;
}
/* Category Card End */

/* Footer */
.footer{
  margin-top: 20px;
  background-color: #1e1e4b;
  color: #fff;
}
.footer-col-border{
  border-right: #ffbc3b solid thin;
}
@media only screen and (max-width:998px){
  .footer-col-border{
    border-bottom: #ffbc3b solid thin;
    border-right: none;
  }
}
.copyright-row{
  background-color: #ffbc3b;
}
.copyright-col{
  display: flex;
}
.copyright-content{
  margin: auto;
}
/* Footer End */

/* Back To Top Button */
#backToTop {
  padding: 5px;
  background-color: #fff;
  border: #ffbc3b solid thick;
  border-radius: 10px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  outline: none;
  color: #ffbc3b;
  cursor: pointer;
  font-size: 14px;
  opacity: 0.7;
  transition: .50s;
}
#backToTop:hover {
  background-color: #eceff1;
  border: #f57f17 solid thick;
  color: #f57f17;
  transition: .50s;
}
/* Back To Top Button End */
/*===================
Basic & Home Page End
=================*/

/*===================
About US Page
=================*/
/* Breadcrumb */
.breadcrumb-container{
  height: 200px;
  padding: 40px;
  text-align: center;
  background-image: url("../images/breadcrumb-background.jpg");
  /* Parallx Effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.breadcrumb-container h1{
  color: #ffbc3b;
  font-weight: bold;
  text-transform: uppercase;
}
.breadcrumb-container ul li.active{
  color: #ffbc3b;
}
.breadcrumb-container ul li a{
  color: #fff;
  transition: .50s;
}
.breadcrumb-container ul li a:hover{
  padding: 5px;
  border: #ffbc3b solid thin;
  border-radius: 5px;
  color: #fff;
  transition: .50s;
}
/* Breadcrumb End */

/* Data Section */
.data-section{
  margin: 70px 0;
  padding: 10px 20px;
  background-color: #ffbc3b;
}
.data-col{
  margin: 10px 50px;
  padding: 20px;
  border: #fff solid thin;
  transition: .50s;
}
.data-col:hover{
  box-shadow: 0px 10px 15px 5px rgba(0, 0, 0, 0.32);
  transition: .50s;
}
/* Data Section End */
/*===================
About US Page End
=================*/

/*===================
Contact US Page
=================*/
.form-control{
  border-radius: 0;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.32);
}
/*===================
Contact US Page End
=================*/
