

section.menu-tabs {
	padding-top: 10px;
	padding-bottom: 10px;
	position: relative;

	overflow: hidden;
	


}
.inner-container {
	max-width: 1220px;
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.tabs-container {
	width: 100%;
	margin: 0 auto;
}

.tabs-menu {
	display: flex;
	list-style: none;
	padding: 0;
	align-items: center;
	justify-content: center;
	column-gap: 80px;
	margin-bottom: 50px;
	animation: anime-animation 1.2s ease-out forwards;
}

.tabs-menu .tab-link {
	cursor: pointer;
	text-align: center;
	border: none;
	padding: 0;
	color: #8d8987;
	border-bottom: 2px solid transparent;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
}
.tabs-menu .tab-link:hover{
	border-bottom: 2px solid #383632;
	color: #383632;

}
.tabs-menu .tab-link:hover i{
	color: #d39121;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.tabs-menu .tab-link.active {
	color: #383632;
	border-bottom: 2px solid #383632;
}
.tabs-menu .tab-link.active i{
	color: #d39121;
}
.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.tab-inner {
	animation: anime-animation 1.2s ease-out forwards;
}
@keyframes anime-animation {
	0% {
		opacity: 0;
		transform: rotateX(-40deg);
	}
	100% {
		opacity: 1;
		transform: rotateX(0);
	}
}

.tabs-menu .tab-link i {
	display: block;
	margin-bottom: 10px;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	will-change: transform;
	font-size: 30px;
}
/* ============= Tabs Content ============== */
.tab-content .tab-inner--row {
	display: flex;
	flex-wrap: wrap;
}
.tab-content .tab-inner--row .tab-column {
	flex: 0 0 auto;
	width: 50%;
}
.tab-column ul {
	margin: 0;
	padding: 0px 20px;
	list-style-type: none;
}
.tab-column ul li{
	column-gap: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 0;
	-webkit-transition: all .5s cubic-bezier(.61,1,.88,1);
	transition: all .5s cubic-bezier(.61,1,.88,1);

}
.tab-column ul li:hover{
	-webkit-transform: translateX(15px);
	transform: translateX(15px);
}
.tab-column ul li img{
	border-radius: 50%;
}
.tab-column ul li .column-detail {
	width: 100%;
}
.tab-column ul li .column-header {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 5px;
}
.column-header span.column-heading {
	color: #383632;
	font-size: 18px;
	line-height: normal;
	font-weight: 600;
	font-style: normal;
}
.column-header .column-divider {
	flex-grow: 1;
	margin: 0px 20px;
	border-top: 1px dashed #c7c2bf;
}
.column-header .column-price {
	color: #383632;
	font-size: 18px;
	line-height: normal;
	font-weight: 600;
	font-style: normal;
}
.tab-column ul li p.column-desc {
	margin: 0px;
	color: #8d8987;
	font-style: normal;
	font-size: 17px;
	line-height: 30px;
}

/* ======== Sticky Footer ========= */
  .sticky-footer{
       position: fixed;
    width: 100%;
        background: #333;
    z-index: 999;
    bottom: 0;
  }
.sticky-footer .footer-row{
      display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    padding-right: 15px;
}
.creditd a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
        font-size: 16px;
}
.social ul{
      display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0px;
    column-gap: 10px;
    align-items: center;
}
.social ul li a{
     display: flex;
    background: #fff;
    height: 30px;
    width: 30px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
}
.social ul li a img{
       max-width: 20px;
}

/* ================ RESPONSIVE IPAD ==================== */
@media only screen and (max-width: 981px) {
.tab-content .tab-inner--row .tab-column {
    width: 100%;
}
}

/* ================ RESPONSIVE IPHONE ==================== */
@media only screen and (max-width: 480px) {
	.tab-column ul{
    padding: 0px 0px;
}
.tab-column ul li{
	display: block;
}
.tabs-menu{
	display: block;
}
.tabs-menu .tab-link{
	    margin-bottom: 25px;
}
}


