@import url('https://fonts.googleapis.com/css2?family=Kameron:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/*
font-family: 'Manrope', sans-serif;
font-family: 'Kameron', serif;
*/

.pad0{
padding: 0;
}

.app-title{
font-weight: 700;
padding: 10px 0;
font-size: 40px;
cursor: default;
-webkit-text-stroke: 1px #502b21;
animation: marquee 20s linear infinite;
position: relative;
width: 150%;
color: transparent;
font-family: 'Kameron', serif;
letter-spacing: 1px;
}


@keyframes marquee {
  0% { left: 50%; }
  100% { left: -100%; }
}


.top{
background: url("../images/top-bg.jpg");
font-family: 'Manrope', sans-serif;
padding: 7px 0;
}

.top-left ul{
padding-left: 0;
margin: 0;
}

.top-left ul li{
display: inline-block;	
margin-right: 8px;
}

.top-left ul li a{
color: #fff;
text-decoration: none;
font-size: 15px;
}

.top-left ul li:nth-child(1) a{
padding-right: 8px;
border-right:1px solid rgba(255,255,255, 0.2);
}

.top-left ul a span{
padding-right: 5px;
color: #f7a145;
}

.top-right ul{
padding-left: 0;
margin: 0;
float: right;
}


.top-right ul li{
display: inline-block;
color: rgba(255,255,255, 0.7);	
font-size: 15px;
}

.top-right ul a{
color: #f7a145;
text-decoration: none;
font-size: 15px;
border-right:1px solid rgba(255,255,255, 0.2);
padding:0px 10px; 
}


header{
padding:6px 0;
position: relative;
}

.top-cnt{
display: flex;
align-items: center;
margin-top: 15px;
margin-top: 28px;
}

.top-cnt span{
color: #f1f1f1;
font-size: 30px;
margin-right: 15px;
}

.top-cnt div{
border-left:1px solid rgba(255,255,255, 0.4); 
padding-left: 15px;
}

.top-cnt h6{
font-family: 'Poppins', sans-serif;
margin-bottom: 4px;
font-size: 17px;
font-weight: 600;
color: #fff;
}

.top-cnt p{
font-family: 'DM Sans', sans-serif;
margin: 0;
font-size: 15px;
color: rgba(255,255,255, 0.8);
letter-spacing: 0.5px;
font-weight: 500;
}

.top-cnt p a{
text-decoration: none;
color: rgba(255,255,255, 0.8);
}

.ast_header_bottom {
  float: left;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  margin-top: 0;
  z-index: 10;
  background:#e4ded4;
}

.ast_header_bottom.style_2{
    background-color: rgba(0, 0, 0, 0);
    margin-top: 21px;
    padding: 0px 50px;
}

.ast_main_menu_wrapper{
  height: 100%;
}

.ast_menu {
 /*   float: right;*/
  position: relative;
 /* padding-top: 8px;*/
 display: flex;
 align-items: center;
 height: 100%;
}
.ast_menu ul {
  padding: 0;
  margin: 0;
}

.ast_menu ul li {
  list-style:none;
  float:left;
  margin-right:0px;
  position:relative;
  -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.ast_menu ul li:last-child{
 margin-right:0px;
}

.ast_menu ul li a {
  display: block;
  color: #502b21;
text-transform: uppercase;
  position: relative;
  font-weight: 600;
  padding:15px 6px;
  margin: 0px 15px;
  z-index: 1;
  font-size: 15px;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
font-family: 'Manrope', sans-serif;
}
.ast_menu ul li a:hover {
  color:#f7a145;
  text-decoration: none;
}

.ast_menu ul li.active a {
color: #f7a145;
}

.ast_menu ul li ul.submenu{
  position:absolute;
  top:100%;
  left:0px;
  width:220px;
  opacity:0;
  visibility:hidden;
  background-color:#fff;
    z-index: 10;
  -webkit-box-shadow: 0px 4px 22px -7px #000000;
    -moz-box-shadow: 0px 4px 22px -7px #000000;
    -o-box-shadow: 0px 4px 22px -7px #000000;
    -ms-box-shadow: 0px 4px 22px -7px #000000;
    box-shadow: 0px 4px 22px -7px #000000;
  -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    padding: 10px 11px;
border-radius: 4px;
z-index: 999;
}
.ast_menu ul li:hover ul.submenu{
  opacity:1;
  visibility:visible;
  -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.ast_menu ul li ul.submenu li a{
  margin: 0px;
}

.ast_menu ul li ul.submenu li a::before, .ast_menu ul li ul.submenu li a::after{
display: none;
}

.ast_menu ul li ul.submenu li a{
    padding:10px;
    border-right: 0px solid #222;
    width: 100%;
    border-top: 0px;
border-bottom:1px solid #f1f1f1;
    color: #502b21;
  -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
font-family: 'Manrope', sans-serif;
  text-transform: capitalize;
font-size: 15px;
font-weight: 600;
}

.ast_menu ul li ul.submenu li {
  float: left;
  width: 100%;
  padding: 0px 0px;
}


.ast_menu ul li ul.submenu li a:hover{
  border-top:0px;
 color:#f7a145;
  -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.ast_menu ul li ul.submenu li ul.submenu{
  position:absolute;
  top:0px;
  left:auto;
  right:100%;
  width:140px;
  opacity:0;
  visibility:hidden;
  background-color:#333333;
    z-index: 10;
  -webkit-box-shadow: 0px 4px 22px -7px #000000;
    -moz-box-shadow: 0px 4px 22px -7px #000000;
    -o-box-shadow: 0px 4px 22px -7px #000000;
    -ms-box-shadow: 0px 4px 22px -7px #000000;
    box-shadow: 0px 4px 22px -7px #000000;
  -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.ast_menu ul li ul.submenu li:hover ul.submenu{
  opacity:1;
  visibility:visible;
  -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.ast_menu_btn{
  display:none;
}
.menu_fixed {
    position: fixed;
    z-index: 1000;
    padding: 0px 0px;
    -moz-box-shadow: 0px -5px 20px;
    -webkit-box-shadow: 0px -5px 20px;
    box-shadow: 0px -5px 20px;
}
.menu_fixed.ast_header_bottom {
  margin-top:0px;
    background-color:#e4ded4;
}

.menu_fixed .ast_menu ul li ul.submenu {
    background-color:#333333;
    z-index: 10;
    -webkit-box-shadow: 0px 4px 22px -7px #000000;
    -moz-box-shadow: 0px 4px 22px -7px #000000;
    -o-box-shadow: 0px 4px 22px -7px #000000;
    -ms-box-shadow: 0px 4px 22px -7px #000000;
    box-shadow: 0px 4px 22px -7px #000000;
}
.menu_fixed .ast_menu ul li ul.submenu li ul.submenu{
    background-color:#333333;
    z-index: 10;
    -webkit-box-shadow: 0px 4px 22px -7px #000000;
    -moz-box-shadow: 0px 4px 22px -7px #000000;
    -o-box-shadow: 0px 4px 22px -7px #000000;
    -ms-box-shadow: 0px 4px 22px -7px #000000;
    box-shadow: 0px 4px 22px -7px #000000;
}


.ast_menu ul li a:before {
position: absolute;
left: 0;
bottom: 4px;
height: 1px;
width: 40px;
content: "";
background-color: #f7a145;
transition: visibility .4s ease, opacity .4s ease, transform .4s ease;
transform: translate3d(50px, 0, 0);
opacity: 0;
visibility: hidden;
}
.ast_menu ul li a:after {
position: absolute;
left: 0;
bottom: 0px;
height: 1px;
width: 20px;
content: "";
background-color: #f7a145;
transition: visibility .4s ease, opacity .4s ease, transform .4s ease;
transform: translate3d(50px, 0, 0);
opacity: 0;
visibility: hidden;
}

.ast_menu ul li a:hover:before,
.ast_menu ul li.active a:before,
.ast_menu ul li a:hover:after,
.ast_menu ul li.active a:after {
opacity: 1;
transform: translate3d(0px, 0, 0);
visibility: visible;
}


.ast_menu ul li a.whats{
background: #0cb74c;
display: flex;
color: #fff;
text-decoration: none;
border-radius: 30px;
/*margin: 3px 0px 0px 15px;*/
margin: 0;
padding: 6px 18px 2px !important;
}

.whats i{
  font-size: 30px;
line-height: 40px;
margin-right: 10px;
animation: swing 0.8s ease-out infinite;
-webkit-animation: swing 0.8s ease-out infinite;
}

.whats h2{
  font-size: 18px;
  margin-bottom: 2px;
font-family: 'Manrope', sans-serif;
font-weight: 600;
}

.whats h6{
font-family: 'Manrope', sans-serif;
font-size: 10px;
letter-spacing: 0.3px;
}


.ast_menu ul li a.whats::before, .ast_menu ul li a.whats::after {
display: none;
}

.carousel-caption {
	right: 20%;
	left: 20%;
	text-align: center;
	z-index: 9;
	top: 25%;
}

.carousel-caption h2{
font-family: 'Kameron', serif;
	font-weight: 700;
	font-size: 40px;
}

.carousel-caption p{
font-family: 'Manrope', sans-serif;
font-size: 18px;	
padding: 0 90px;
}

.carousel-caption a{
font-family: 'Manrope', sans-serif;
display: inline-block;
background: #f7a145;
padding: 10px 20px;
margin: 0 4px;
font-size: 15px;
text-decoration: none;
color: #fff;
}

.carousel-caption a span{
	position: relative;
	top: 2px;
	padding-left: 5px;
}

.carousel .carousel-item.active .animated1 {
  -webkit-animation: fadeInRight 1s ease-in-out 500ms both;
  animation: fadeInRight 1s ease-in-out 500ms both;
}
.carousel .carousel-item.active .animated2 {
  -webkit-animation: fadeInLeft 1s ease-in-out 500ms both;
  animation: fadeInLeft 1s ease-in-out 500ms both;
}
.carousel .carousel-item.active .animated3 {
  -webkit-animation: fadeInDown 1s ease-in-out 500ms both;
  animation: fadeInDown 1s ease-in-out 500ms both;    
}
.carousel .animated4 {
  -webkit-animation: fadeInUp 1s ease-in-out 500ms both;
  animation: fadeInUp 1s ease-in-out 500ms both;    
}
.carousel-caption::before{
  -webkit-animation: fadeInLeft 1s ease-in-out 500ms both;
  animation: fadeInLeft 1s ease-in-out 500ms both;
}
.carousel-caption {
    transition: opacity 500ms;
    text-shadow: none;
/*    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;*/
}

.carousel .carousel-item img{
  width: 100%;
}
.carousel-inner .carousel-caption img{
  width: 20%;
}
.carousel-inner > .carousel-item .carousel-caption {
  z-index: 99;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}

.carousel .carousel-item.active .carousel-caption {
  z-index: 99;
  opacity: 1;
  -webkit-transition: opacity 100ms;
  -moz-transition: opacity 100ms;
  -o-transition: opacity 100ms;
  transition: opacity 100ms;  
}

.carousel-fade .carousel-control {
  z-index: 2;
}
.carousel-control.right {
  background: none;
}
.carousel-control.left {
  background: none;
}
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}
.carousel-fade  .carousel-item.active,
.carousel-fade  .carousel-item-next.carousel-item-left,
.carousel-fade  .carousel-item-prev.carousel-item-right {
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-right {
  opacity: 0;
}
.carousel-fade  .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}



.sec-1 h2 {
    font-family: 'Kameron', serif;
    font-size: 33px;
    font-weight: 700;
    color: #502b21;
}
.sec-1 h6 {
    color: #f7a145;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    letter-spacing: 1.5px;
    position: relative;
}
.sec-1  .btn{
  font-family: 'Manrope', sans-serif;
    display: inline-block;
    background: #f7a145;
    padding: 10px 20px;
    border-color: #f7a145;
    border-radius: 0;
    margin: 0 4px;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
}
.sec-1 .btn a span {
    position: relative;
    top: 2px;
    padding-left: 5px;
}
.sec-1 h6::before {
    position: absolute;
    top: -5px;
    left: -5px;
    height: 27px;
    width: 27px;
    content: "";
    background-color: #f2e6e3;
    z-index: -1;
}
 .sec-1 h6::after {
    position: absolute;
    top: -5px;
    left: -5px;
    height: 5px;
    width: 5px;
    content: "";
    background: #502b21;
    z-index: -1;
}
.sec-1 h4{
  font-weight: 800;
  text-transform: capitalize;
  color: #492921;
}

.sec1-box{
position: relative;
padding: 25px 30px;
transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
height: 100%;
}

.sec1-box:hover{
background: #faf7f6;
}

.sec1-box::before, .sec1-box::after {
	content: "";
	position: absolute;
	background: #d1d1d1;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}

.sec1-box::before {
	width: calc( 100% + 6px );
	height: 1px;
	bottom: -6px;
	left: -12px;
}

.sec1-box::after {
	width: 1px;
	height: calc( 100% + 4px );
	top: 10px;
	left: -6px;
}

.sec1-box:hover::before{
	width: calc( 100% + 6px );
	left: -6px;
}

.sec1-box:hover::after{
	height: calc( 100% + 0px );
	top: 5px;	
}

.sec1-box img{
width: 70px;
margin-bottom: 20px;
transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
}

.sec1-box:hover img{
transform: scale(1.1);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
}

.sec1-box h4{
font-family: 'Kameron', serif;
font-size: 26px;
font-weight: 600;
color: #502b21;
}

.sec1-box p{
color: #666;
font-family: 'Manrope', sans-serif;
font-size: 15px;
line-height: 26px;
letter-spacing: 0.3px;
margin: 0;
}

 #variant_description{
      display: none;
    }
    table th, table td{
      color: #666;
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      line-height: 26px;
    }
    table th{
      color: white;
    }
    #furniture_type,#furniture_Variant ,#furniture_type option,#furniture_Variant option{
      color: #666;
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      line-height: 26px;
    }

.sec-2{
padding: 60px 0;
position: relative;
background: #faf7f6;
z-index: 9;
overflow-x: hidden;
}

.sec2-shape-1 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.float-wave-x {
	-webkit-animation-name: float-bob-x;
	animation-name: float-bob-x;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.sec2-shape-2 {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

.float-wave-y {
	-webkit-animation-name: float-bob-y;
	animation-name: float-bob-y;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

/***
=============================================
    Float Bob X Animation Css
=============================================
***/
@-webkit-keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

/*** 
=============================================
    Float Bob Y Animation Css
=============================================
***/
@-webkit-keyframes float-bob-y {
	0% {
		transform: translateY(-20px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(-20px);
	}
}

@keyframes float-bob-y {
	0% {
		transform: translateY(-20px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(-20px);
	}
}


.sec2-left{
position: relative;
}

.sec2-left::before {
position: absolute;
  top: 0px;
  left: -40px;
  height: 90%;
  width: 100px;
  background: #f7a145;
  content: "";
  z-index: -1;
}


.wel-img1{
	position: relative;
	display: block;
	z-index: 1
}


.wel-img1::before {
	position: absolute;
	top: 100px;
	left: 2px;
	content: "";
	border-style: solid;
	border-width: 1px;
	border-color: rgb(229, 222, 220);
	background-color: rgba(219, 94, 65, 0);
	width: 95%;
	z-index: -1;
	bottom: -90px;
}

.wel-img2 {
position: absolute;
  bottom: -50px;
  left: -20px;
  z-index: 2;
}

.wel-img1 img{
border-top-left-radius: 30px;
}


.wel-img2 img{
border-top-left-radius: 30px;
border-top-right-radius: 30px;
}

.wel-box {
	position: absolute;
	bottom: -20px;
	right: 15px;
	background: #f7a145;
	display: flex;
	align-items: center;
	padding: 33px 30px 33px;
	z-index: 2;
}

.wel-box::before {
	position: absolute;
	content: "";
	height: 30px;
	width: 3px;
	top: 6px;
	left: 7px;
	background:#fff;
}

.wel-box::after {
	position: absolute;
	content: "";
	height: 30px;
	width: 3px;
	top: 12px;
	left: 13px;
	background:#fff;
}

.wel-box span{
	color: #fff;
	margin-right: 15px;
	font-size: 35px;
}


.wel-box h4{
color: #fff;
margin: 0;
font-size:18px;
font-family: 'Manrope', sans-serif;
}

.cc-dot {
  position: absolute;
  top: -6px;
  right: 5px;
}

.sec2-right{
	position: relative;
	z-index: 99;
}

.sec2-right h6{
color: #f7a145;
font-family: 'Manrope', sans-serif;
font-size: 15px;
letter-spacing: 1.5px;
position: relative;
}

.sec2-right h6::before {
	position: absolute;
	top: -5px;
	left: -5px;
	height: 27px;
	width: 27px;
	content: "";
	background-color: #f2e6e3;
	z-index: -1;
}

.sec2-right h6::after {
	position: absolute;
	top: -5px;
	left: -5px;
	height: 5px;
	width: 5px;
	content: "";
	background: #502b21;
	z-index: -1;
}

.sec2-right h2{
	font-family: 'Kameron', serif;
  font-size: 33px;
  font-weight: 700;
  color: #502b21;
}

.sec2-right p {
	color: #666;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	line-height: 26px;
	letter-spacing: 0.3px;
}

.sec2-right ul{
padding-left: 0;
}

.sec2-right ul li{
list-style: none;
color: #666;
font-family: 'Manrope', sans-serif;
font-size: 15px;
line-height: 28px;
display: inline-block;
width: 48%;
letter-spacing: 0.3px;
}

.sec2-right ul li span{
padding-right: 5px;
color: #f7a145;
}

.sec2-right a {
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	font-size: 14px;
	padding: 12px 20px;
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	background: #502b21;
	border: 1px solid transparent;
	color: #fff;
	position: relative;
	font-family: 'Manrope', sans-serif;
}

.sec2-right a span {
	position: relative;
	top: 2px;
	padding-left: 5px;
}

.sec2-right a:hover{
background: #f7a145;
}

.sec2-right a::before, .sec2-right a::after {
	content: "";
	position: absolute;
	background: #f7a145;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}

.sec2-right a::before {
	width: calc( 100% + 2px );
	height: 1px;
	bottom: -6px;
	left: 10px;
}

.sec2-right a::after {
	width: 1px;
	height: calc( 100% + 2px );
	top: 10px;
	right: -6px;
}

.sec2-right a:hover::before{
	width: 0;
}

.sec2-right a:hover::after{
	height: 0;
}


.slick-pre, .slick-nxt{
display: none !important;
}

.sec3-title{
padding: 50px 0;
}

.sec3-title h6{
color: #f7a145;
font-family: 'Manrope', sans-serif;
font-size: 15px;
letter-spacing: 1.5px;
position: relative;
}

.sec3-title h6::after {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 5px;
  width: 5px;
  content: "";
  background: #502b21;
  z-index: -1;
}

.sec3-title h6::before {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 27px;
  width: 27px;
  content: "";
  background-color: #f2e6e3;
  z-index: -1;
}

.sec3-title h2 {
  font-family: 'Kameron', serif;
  font-size: 35px;
  font-weight: 700;
  color: #502b21;
}

.sec3-title p {
  color: #666;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.3px;
}


.sec3-box{
position: relative;
}

.sec3-box h2{
position: absolute;
bottom: 10px;
font-size: 27px;
left: 20px;
-webkit-transition: all 500ms ease;
transition: all 500ms ease;
color: #fff;
font-family: 'Kameron', serif;
z-index: 9;
text-transform: uppercase;
font-weight: 600;
text-shadow: 0px 2px 5px #000;
}

.sec3-box span{
font-size: 16px;
background: #f7a145;
padding: 12px;
border-radius: 50%;
position: absolute;
right: 10px;
bottom: 15px;
color: #fff;
-webkit-transition: all 500ms ease;
transition: all 500ms ease;
}

.sec3-box:hover span{
  opacity: 0;
}

.sec3-box:hover h2{
bottom: 0%;
opacity: 0;
}

.sec3-box::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	background: rgba(0,0,0, .4);
	transform: scaleY(0);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.sec3-box:hover::before{
transform: scaleY(1);
}

.sec3-box .sec3-hover{
	position: absolute;
/*  bottom: -50px;*/
  bottom: 0px;
  left: 0;
  right: 0;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 35px 0px rgba(180, 181, 184, 0.35);
  margin-left: 55px;
  margin-right: 55px;
  padding: 33px 30px 35px;
  transform: translateY(-50px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
margin-left: 10px;
margin-right: 10px;
padding: 33px 25px 35px;
}

.sec3-box .sec3-hover h6{
color: #f7a145;
font-family: 'Manrope', sans-serif;
font-size: 15px;
letter-spacing: 1.5px;
position: relative;
}

.sec3-box .sec3-hover h3{
font-family: 'Kameron', serif;
font-weight: 700;
color: #502b21;
}

.sec3-box .sec3-hover h3 a{
  text-decoration: none;
  color: #502b21;
}

.sec3-box .sec3-hover p{
color: #666;
font-family: 'Manrope', sans-serif;
font-size: 15px;
line-height: 26px;
letter-spacing: 0.3px;
}

.sec3-box:hover .sec3-hover {
	visibility: visible;
	transform: translateY(0%);
	opacity: 1;
}

.sec3-box .sec3-hover a{
  text-decoration: none;
  display: block;
}

.sec3-box .sec3-hover .sec3-btn{
  text-decoration: none;
  background: #f7a145;
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
}


.sec-4{
padding: 80px 0;
background: url(../images/sec4-bg.jpg) center;
background-size: cover;
position: relative;
z-index: 9;
}

.sec-4::before{
position: absolute;
content: '';
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0,0,0, 0.7);
z-index: -1;
}

.sec4-title{
text-align: center;
}

.sec4-title h6{
color: #f7a145;
font-family: 'Manrope', sans-serif;
font-size: 15px;
letter-spacing: 1.5px;
position: relative;
display: inline-block;
}

.sec4-title h6::before {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 27px;
  width: 27px;
  content: "";
  background-color: #f2e6e3;
  z-index: -1;
  opacity: 0.2;
}

.sec4-title h2 {
  font-family: 'Kameron', serif;
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  position: relative;
  margin-bottom: 45px;
}

.sec4-title h2::before{
position: absolute;
content: '';
left: 50%;
bottom: -8px;
width: 50px;
height: 2px;
background: #f7a145;
transform: translate(-50%, 50%);
}


.counter{
text-align: center;
}

.counter img{
width: 100px;
border: 1px solid rgba(255,255,255,0.3);
border-radius: 50%;
padding: 10px;
margin-bottom: 15px;
transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
}

.counter:hover img{
background: #f7a145;
border: 1px solid #f7a145;
}

.counter h3{
 font-family: 'Kameron', serif;
 font-size: 42px;
 font-weight: 700;
 color: #fff;
 position: relative;
}

.counter p{
font-family: 'Manrope', sans-serif;
color: #fff;
font-size: 15px;
}

.counter h3.add::after{
  content: "\f067";
position: absolute;
display: inline-block;
font-family: FontAwesome;
font-size: inherit;
text-rendering: auto;
font-size: 22px;
-webkit-font-smoothing: antialiased;
top: -7px;
font-weight: 400;
}


.sec-5{
padding: 60px 0;
}

.sec5-title{
  text-align: center;
}

.sec5-title h6{
color: #f7a145;
font-family: 'Manrope', sans-serif;
font-size: 15px;
letter-spacing: 1.5px;
position: relative;
display: inline-block;
}

.sec5-title h6::before {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 27px;
  width: 27px;
  content: "";
  background-color: #f2e6e3;
  z-index: -1;
  opacity: 0.2;
}

.sec5-title h2 {
  font-family: 'Kameron', serif;
  font-size: 35px;
  font-weight: 700;
  color: #502b21;
  position: relative;
  margin-bottom: 45px;
}

.sec5-title h2::before{
position: absolute;
content: '';
left: 50%;
bottom: -8px;
width: 50px;
height: 2px;
background: #f7a145;
transform: translate(-50%, 50%);
}

.sec5-box {
  text-align: center;
  background: url(../images/sec5-bg.png) center center no-repeat;
  background-size:cover;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.35);
  padding: 20px 15px;
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
}

.sec5-box:hover{
box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.25);
}

.sec5-box img{
width: 100px;
margin-bottom: 12px;
}


.sec5-box h3 {
  font-family: 'Kameron', serif;
  color: #502b21;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sec5-box p {
  color: #666;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.3px;
}

.sec-6{
padding: 50px 0;
background: url(../images/sec-6.jpg) right;
position: relative;
z-index: 9;
}

.sec-6::before{
position: absolute;
content: '';
left: -82px;
width: 72%;
height: 316px;
background: #ec8210;
z-index: -1;
transform: skewX(-25deg);
-webkit-transform: skewX(-25deg);
-moz-transform: skewX(-25deg);
-ms-transform: skewX(-25deg);
-o-transform: skewX(-25deg);
top: 0px;
}

.sec-6::after{
position: absolute;
content: '';
left: -82px;
width: 72.9%;
height: 316px;
background: #502b21;
z-index: -2;
transform: skewX(-21deg);
-webkit-transform: skewX(-21deg);
-moz-transform: skewX(-21deg);
-ms-transform: skewX(-21deg);
-o-transform: skewX(-21deg);
top: 0px;
}

.sec-6 h5{
font-family: 'Kameron', serif;
font-size: 23px;
color: #fff;
font-weight: 600;
}

.sec-6 p{
font-family: 'Manrope', sans-serif;
font-size: 15px;
margin: 0;
color: rgba(255,255,255,0.85);
}

.sec-6 p span{
  padding:0 5px;
}

.sec-7{
padding: 40px 0;
}

.sec7-title h6{
color: #f7a145;
font-family: 'Manrope', sans-serif;
font-size: 15px;
letter-spacing: 1.5px;
position: relative;
}

.sec7-title h6::after {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 5px;
  width: 5px;
  content: "";
  background: #502b21;
  z-index: -1;
}

.sec7-title h6::before {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 27px;
  width: 27px;
  content: "";
  background-color: #f2e6e3;
  z-index: -1;
}

.sec7-title h2 {
  font-family: 'Kameron', serif;
  font-size: 35px;
  font-weight: 700;
  color: #502b21;
  margin-bottom: 15px;
}

.sec-7 ul li{
list-style: square;
}

.inner-banner{
background: url(../images/in-banner.jpg);
position: relative;
padding: 60px 0;
background-size: cover;
z-index: 9;
}

.inner-banner::before{
  position: absolute;
content: '';
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0,0,0, 0.7);
z-index: -1;
}

.in-ban{
display: flex;
justify-content: right;
align-items: center;  
}

.in-ban-title h1{
  font-family: 'Kameron', serif;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 9;
}

.in-ban-title h1::after {
content: "";
display: block;
width: 20%;
height: 10px;
background: #f7a145;
position: absolute;
bottom: 8px;
left: -8px;
z-index: -1;
}

.in-ban ul{
padding-left: 0;
margin: 0;
}

.in-ban ul li{
display: inline-block;
font-family: 'Manrope', sans-serif;
font-size: 14px;
letter-spacing: 0.3px;
color: #f7a145;
}

.in-ban ul li span{
  font-size: 10px;
  padding: 0 4px;
}

.in-ban ul li a{
text-decoration: none;
color: #fff;
transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
}

.in-ban ul li a:hover{
  color: #d0d0d0;
}


.inner-matter{
padding: 50px 0;
}

.abt-2{
padding: 40px 0;
}

.abt-2 .row{
background: #502b21;
padding: 20px;
position: relative;
}

.abt-2 .row::before{
content: '';
position: absolute;
background:#502b21;
opacity: .3;
left: 20px;
right: 20px;
bottom: -10px;
top: 20px;
z-index: -2;
}

.abt-2 .counter img {
  width: 80px;
  padding: 8px;
}

.abt-2 .counter h3 {
font-size: 32px;
}

.abt-2 .counter p {
font-size: 14px;
margin: 0;
}


.abt-3{
padding: 60px 0 40px;
}

.vision-box{
  padding: 15px 0;
}

.vision-box h4{
font-family: 'Kameron', serif;
font-weight: 700;
color: #f7a145;
font-size: 28px;
position:relative;
z-index: 9;
}

.vision-box h4::before{
content: "";
display: block;
width: 20%;
height: 10px;
background: #fff3e6;
position: absolute;
bottom: 3px;
left: 0;
z-index: -1;
}


.vision-box p{
color: #666;
font-family: 'Manrope', sans-serif;
font-size: 15px;
line-height: 26px;
letter-spacing: 0.3px;
}

.abt-4{
padding: 40px 0;
background: #faf7f6;
position: relative;
z-index: 9;
overflow-x:hidden; 
}

.abt-4 .sec2-shape-1{
right: -40px;
left: auto;
}

.abt4-title{
text-align: center;
}

.abt4-title h6{
color: #f7a145;
font-family: 'Manrope', sans-serif;
font-size: 15px;
letter-spacing: 1.5px;
position: relative;
display: inline-block;
z-index: 9;
}


.abt4-title h6::before {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 27px;
  width: 27px;
  content: "";
  background-color: #f2e6e3;
  z-index: -1;
}

.abt4-title h6::after {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 5px;
  width: 5px;
  content: "";
  background: #502b21;
  z-index: -1;
}

.abt4-title h2{
font-family: 'Kameron', serif;
font-size: 33px;
font-weight: 700;
color: #502b21;
}

.abt4-title p {
  color: #666;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.3px;
  margin-bottom: 30px;
}

.abt-why{
display: flex;
margin: 20px 0;
align-items: center;
border-bottom: 1px solid #e1e0e0;
padding-bottom: 20px;
position: relative;
transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
}

.abt-why::before{
  position: absolute;
  content: '';
  right: 0;
  bottom: 0;
  height: 20px;
  width: 1px;
  background: #e1e0e0;
  transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
}

.abt-why span{
  height: 70px;
  width: 70px;
  font-size: 23px;
  background: #f7a145;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 70px;
  margin-right: 15px;
}

.abt-why p{
color: #666;
font-family: 'Manrope', sans-serif;
font-size: 16px;
line-height: 26px;
letter-spacing: 0.3px;
margin: 0;
font-weight: 500;
}

.abt-why:hover{
border-bottom: 1px solid #ac8f88;
}

.abt-why:hover::before{
background: #ac8f88;
}

.qty-box{
  position: relative;
  display: block;
  background: #f0edea;
  padding: 20px 30px 40px;
  margin: 15px 0;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}

.qty-box::before {
position: absolute;
content: "";
bottom: 21px;
right: 21px;
height: 8px;
width: 8px;
background: #f7a145;
-webkit-transition: all 500ms linear;
transition: all 500ms linear;
  transition-delay: 0s;
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}

.qty-box::after {
position: absolute;
content: "";
bottom: 6px;
right: 5px;
height: 16px;
width: 16px;
background: #502b21;
-webkit-transition: all 500ms linear;
transition: all 500ms linear;
  transition-delay: 0s;
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}

.qty-box h4 {
  font-family: 'Kameron', serif;
  color: #502b21;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  z-index: 9;
}

.qty-box h4::before {
position: absolute;
top: 2px;
left: -5px;
height: 27px;
width: 40px;
content: "";
background: rgba(247, 161, 69, 0.35);
z-index: -1;
}

.qty-box p {
  color: #666;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.3px;
  position: relative;
z-index: 5;
}


.qty-box img{
width: 150px;
position: absolute;
top: 20px;
right: 20px;
z-index: 1;
opacity: 0.1;
}

.qty-box:hover {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  -webkit-transform: translate3d(0,-4px,0);
  transform: translate3d(0,-4px,0);
}

.plywood-img{
position: relative;
margin-bottom: 40px;
}

.plywood-img::before{
width: 100%;
border: 20px solid #eee;
content: '';
height: 100%;
display: block;
position: absolute;
top: 30px;
right: -30px;
z-index: -1;
}

.pro-table h4 {
  font-family: 'Kameron', serif;
  font-weight: 700;
  color: #f7a145;
  font-size: 28px;
  position: relative;
  z-index: 9;
  margin-top: 30px;
}

.pro-table h4::before {
  content: "";
  display: block;
  width: 20%;
  height: 10px;
  background: #fff3e6;
  position: absolute;
  bottom: 3px;
  left: 0;
  z-index: -1;
}

.pro-table table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
  font-family: 'Manrope', sans-serif;
}

.pro-table table tr:nth-child(2n+1) {
background: #fff;
}

.pro-table table tr:nth-child(2n) {
background: #f7f7f7;
}

.pro-table table tr th {
  padding: 8px;
  color: #502b21;
  border-bottom: 1px solid #eee;
}

.pro-table table tr td {
  padding: 8px;
  font-size: 15px;
  color: #666;
  border-bottom: 1px solid #eee;
}

.pro-box{
border: 1px solid #ececec;
padding: 4px;
}

.cnt-title h6{
color: #f7a145;
font-family: 'Manrope', sans-serif;
font-size: 15px;
letter-spacing: 1.5px;
position: relative;
}

.cnt-title h6::after {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 5px;
  width: 5px;
  content: "";
  background: #502b21;
  z-index: -1;
}

.cnt-title h6::before {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 27px;
  width: 27px;
  content: "";
  background-color: #f2e6e3;
  z-index: -1;
}

.cnt-title h2 {
  font-family: 'Kameron', serif;
  font-size: 33px;
  font-weight: 700;
  color: #502b21;
  margin-bottom: 20px;
}

.cnt-box{
padding: 35px;
background: #faf7f6;
height: 100%;
position: relative;
}

.cnt-box::after {
content: "";
width: 3px;
height: 80px;
background-color: #f7a145;
transition: all .5s ease-in;
-moz-transition: all .5s ease-in;
-ms-transition: all .5s ease-in;
-o-transition: all .5s ease-in;
-webkit-transition: all .5s ease-in;
transform: translateY(-50%);
position: absolute;
left: 0px;
top: 50%;
transform: translate(-50%, -50%);
}

.cnt-box span{
  background: #f7a145;
  width: 60px;
  height: 60px;
  color: #fff;
  display: inline-block;
  line-height: 60px;
  text-align: center;
  font-size: 25px;
  margin-bottom: 20px;
}

.cnt-box h4{
font-family: 'Kameron', serif;
font-size: 25px;
font-weight: 600;
color: #502b21;
}

.cnt-box p{
color: #666;
font-family: 'Manrope', sans-serif;
font-size: 15px;
line-height: 26px;
letter-spacing: 0.3px;  
}

.cnt-box:hover::after{
height: 100%;
}

.form-bx .form-control{
font-family: 'Manrope', sans-serif;
font-size: 14px;
border-radius: 0;
margin-bottom: 15px;
height: 45px;
border: 1px solid #e6e6e6;
padding-left: 40px;
}

.form-bx textarea.form-control{
  height: auto;
}

.form-bx span {
position: absolute;
padding: 14px 12px;
font-size: 16px;
}


.enq-form .sendbtn {
  background: #f7a145;
  color: #fff;
  padding: 0 20px;
  height: 40px;
  border: 0;
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  width: 100%;
  font-size: 14.5px;
}




footer .social-links a {
    color: #f7a145;
    text-decoration: none;
    font-size: 15px;
    border-right: 1px solid rgba(255,255,255, 0.2);
    padding: 0px 10px;
}

footer{
background:rgba(0,0,0, 0.5) url(../images/footer-bg.jpg);
padding: 50px 0;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
z-index: 9
}

footer::before{
position: absolute;
content: '';
left: 0;
right: 0;
top: 0;
bottom: 0;
background: linear-gradient(180deg, #1616167A 0%, #161616 100%);
z-index: -1;
}


.f-about img{
width: 50%;
margin-bottom: 10px;
}

.f-about p{
font-family: 'Manrope', sans-serif;
color:#fff;
letter-spacing: 0.5px;
line-height: 26px;
font-size: 15px;
}

.f-cnt p{
  font-family: 'Manrope', sans-serif;
color:#fff;
letter-spacing: 0.5px;
line-height: 26px;
font-size: 15px;
margin-bottom: 5px;
}

.f-cnt p small{
  display: block;
  font-size: 14px;
  color:rgba(255,255,255, 0.8); 
}

.f-cnt p span{
font-size: 16px;
color:#f7a145;
float: left;
padding-top: 5px;
padding-right: 8px;
}

footer h4 {
font-family: 'Kameron', serif;
color: #f7a145;
font-size: 24px;
font-weight: 600;
margin-bottom: 15px;
position: relative;
}

footer h4::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: -4px;
  width: 30px;
  height: 2px;
  background: #fff;
}

.f-links ul{
padding-left: 0;
}

.f-links ul li{
list-style: none;
}

.f-links ul li a{
text-decoration: none;
  font-family: 'Manrope', sans-serif;
font-size: 15px;
display: block;
color:#fff;
letter-spacing: 0.5px;
transition: ease .4s;
-webkit-transition: ease .4s;
-moz-transition: ease .4s;
line-height: 32px;
}

.f-links ul li a:hover{
color: #f7a145;
padding-left: 5px;
}

.f-links ul li a span{
  padding-right: 2px;
  font-size: 12px;
  color: #f7a145;
}





.fixed-tp{
position: fixed;
bottom: 10px;
right: 10px;
background: #f7a145;
z-index: 999;
width: 38px;
height: 38px;
text-align: center;
line-height: 38px;
color: #fff !important;
text-decoration: none;
}

.our-products-sec h4{
  font-family: 'Kameron', serif;
  font-size: 20px;
  font-weight: 700;
  color: #502b21;
}
.our-products-sec h5{
  color: #666;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.3px;
}
.our-products-sec .btn{
  transition: all .7s ease;
}
.our-products-sec .btn:hover{
  background-color: #502b21;
  color: white;
  border-color: #502b21; 
}

@media (min-width:667px) and (max-width:768px) {
.ast_menu_btn {
  display: block;
  float: none;
  position: absolute;
  top: 32px;
  right: 15px;
  border: none;
  width: 40px;
  height: 30px;
  font-size: 21px;
  color: #1d1d1d;
  background-color: #e4ded4;
  border-radius: 3px;
  z-index: 99;
}

}

@media (max-width:991px){
  .ast_menu_btn {
display: block;
float: none;
position: absolute;
top: 34px;
right: -32px;
border: none;
width: 40px;
height: 34px;
font-size: 21px;
color: #fff;
background-color: #0b2239;
border-radius: 3px;
cursor: pointer;
z-index: 99;
}
.ast_menu_btn:hover, .ast_menu_btn:focus{
  outline:none;
  border:none;
  box-shadow:none;
  text-shadow:none;
}
.ast_main_menu_wrapper{
  z-index: 2;
  position:fixed;
    left: 0px;
    top: 0px;
  bottom:0px;
    background-color:#333333;
  -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 99999;
}
.ast_main_menu_wrapper {
    width: 300px;
}
.ast_main_menu_wrapper.ast_main_menu_hide{
  -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.ast_menu::-webkit-scrollbar {
    width: 5px;
}
.ast_menu::-webkit-scrollbar-track {
    background-color: #f4f4f4;
}
.ast_menu::-webkit-scrollbar-thumb {
  background-color: #ff1515;
  outline: 0px;
}
.ast_menu ul {
    width: 100%;
}

.ast_menu ul li a:hover, .ast_menu ul li a.active{
  color:#f7a145;
  border-top: 0px;
}
.ast_menu ul li a{
    padding:10px 10px;
    border-top: 0px;
    color: #fff;
}
}

@media (min-width:320px) and (max-width:414px){

.ast_menu_btn {
right: 20px;
background-color: #f7a145;
}

.ast_menu ul li a {
padding: 15px 6px;
font-size: 14px;
}
.ast_menu {
float: none;
}

.ast_menu ul li {
float: none;
}

/*
.ast_menu ul li {
  float: none;
}

.ast_menu ul li a {
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 500;
}

.ast_menu ul li.active a {
  color: #cecece;
}

.ast_menu ul li a::before {
  background-color: #cecece;
}

.ast_menu ul li ul.submenu li a:hover {
  color: #fff;
}

.ast_menu ul li a i {
  float: right;
  display: block;
}*/

.logo{
text-align: center;
}

.logo img {
width: 45%;
display: inline-block;
}

.carousel-caption {
  right: 10%;
  left: 10%;
  top:20%;
}

.carousel-caption h2 {
  font-size: 16px;
}

.carousel-caption p {
display: none;
}

.carousel-caption a {
  padding: 4px 6px;
  margin: 0 2px;
  font-size: 13px;
}

.sec-1 h6 {
font-size: 14px;
}

.sec-1 h2 {
  font-size: 20px;
}

.sec-1 h4 {
  font-size: 16px;
}

.border-end {
  margin: 10px 0;
}

#furniture_type, #furniture_Variant, #furniture_type option, #furniture_Variant option {
  font-size: 14px;
  line-height: 24px;
}

.sec-1 .btn {
  padding: 6px;
  font-size: 14px;
}

.position-relative {
margin-bottom: 60px;
}

#variant_description_head{
font-size: 15px !important;
}

.wel-img1 img {
  width: 100%;
}

.sec2-right {
margin-top: 60px;
}

.sec2-right h6 {
font-size: 14px;
}

.sec2-right h2 {
font-size: 23px;
}

.sec2-right p {
font-size: 14px;
}

.sec2-right ul li {
font-size: 14px;
width: 100%;
}

.sec2-right a {
  font-size: 13px;
  padding: 10px 12px;
}


.sec3-title h6 {
font-size: 14px;
margin-top: 50px;
}

.sec3-title h2 {
font-size: 28px;
}

.sec3-title {
padding:0;
}

.sec3-title p {
font-size: 14px;
}

.sec3-box h2 {
font-size: 18px;
left: 10px;
}

.sec3-box span {
  font-size: 11px;
  padding: 8px;
  right: 5px;
}

.sec3-box .sec3-hover p {
display: none;
}

.sec3-box .sec3-hover {
  margin-left: 5px;
  margin-right: 5px;
  padding: 15px;
}

.sec3-box .sec3-hover h6 {
  font-size: 11px;
}

.sec3-box .sec3-hover h3 {
  font-size: 18px;
}

.sec3-box .sec3-hover p {
display: none;
}

.sec3-box .sec3-hover .sec3-btn {
font-size: 12px;
padding: 3px 8px;
}

.sec4-title h6 {
font-size: 14px;
}

.sec4-title h2 {
font-size: 24px;
}

.counter img {
width: 75px;
margin-bottom: 8px;
}

.counter h3 {
font-size: 28px;
}

.counter p {
font-size: 13px;
}

.sec5-title h6 {
  font-size: 14px;
}

.sec5-title h2 {
font-size: 25px;
}

.sec5-box {
margin: 0px 20px 30px;
}

.sec5-box img {
width: 70px;
}

.sec5-box h3 {
font-size: 22px;
margin-bottom: 10px;
}

.sec5-box p{
font-size: 14px;
line-height: 24px;
}

.sec7-title h6 {
font-size: 14px;
}

.sec7-title h2 {
font-size: 24px;
}

.table tr th, .table tr td{
  font-size: 14px;
}

.sec-6::before {
  width: 100%;
  left: 0;
  background: rgba(236, 130, 16, 0.8);
  transform: skewX(0deg);
  -webkit-transform: skewX(0deg);
  -moz-transform: skewX(0deg);
  -ms-transform: skewX(0deg);
  -o-transform: skewX(0deg);
}

.sec-6::after{
display: none;
}

.sec-6 h5{
font-size: 20px;
text-align: center;
}

.sec-6 p{
font-size: 13px;
display: flex;
align-items: center;
}


.inner-banner {
padding: 40px 0;
}

.in-ban-title{
text-align: center;
}

.in-ban {
justify-content: center;
}

.in-ban-title h1 {
font-size: 25px;
}

.in-ban-title h1::after {
display: none;
}

.in-ban ul li {
font-size: 13px;
}

.abt-2 .counter img {
  width: 70px;
  padding: 8px;
}

.abt-2 .counter h3 {
font-size: 28px;
}

.abt-2 .counter p {
  margin-bottom: 20px;
}

.abt-2 .row {
margin: 0px 10px;
}

.vision-box h4 {
font-size: 24px;
}

.vision-box p {
font-size: 14px;
line-height: 24px;
}

.abt4-title h6 {
font-size: 14px;
}

.abt4-title h2 {
font-size: 28px;
}

.abt4-title p {
  font-size: 12px;
  line-height: 24px;
  margin-bottom: 20px;
}

.abt-why span {
  height: 50px;
  width: 50px;
  font-size: 18px;
  line-height: 50px;
}

.abt-why p {
  font-size: 14px;
  line-height: 20px;
}

.abt-why {
  margin: 15px 0 10px;
  padding-bottom: 10px;
}

.qty-box h4 {
 font-size: 22px;
}

.qty-box p {
  font-size: 14px;
  line-height: 24px;
}

.cnt-title h6 {
font-size: 14px;
}

.cnt-title h2 {
font-size: 26px;
}

.cnt-box {
  padding: 30px;
  height: auto;
  margin-bottom: 20px;
}

.cnt-box span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
}

.cnt-box h4 {
font-size: 22px;
}

.cnt-box p {
  font-size: 14px;
}

.pro-box {
margin-bottom:20px; 
}

.pro-table h4 {
font-size: 26px;
}

.pro-table table tr th {
  font-size: 14px;
  padding: 6px;
}

.pro-table table tr td {
  padding: 6px;
  font-size: 14px;
}


.f-about img {
width: 40%;
}

.f-about p {
line-height: 24px;
font-size: 14px;
}

footer .social-links a {
  font-size: 14px;
  margin-bottom: 11px;
  display: inline-block;
}

footer h4 {
font-size: 22px;
}

.f-links ul li a {
font-size: 14px;
line-height: 28px;
}

.f-cnt p {
 font-size: 14px;
}

.fixed-tp {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
}

.f-cnt p small {
font-size: 13px;
}


}


@media (min-width:480px) and (max-width:736px){

}

@media (min-width:768px) and (max-width:980px){

}

@media (width:1024px){

}
