@import url('https://fonts.googleapis.com/css2?family=Fondamento:ital@0;1&display=swap');
html{
	font-size: 16px;
}
body{
	font-family: "Yantramanav", Sans-serif;
}
a{
	color: #222222;
}
.footer-heading:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 3px;
    background: #EB84A4;
    top: 34px;
}
ul.footer-menu {
    padding: 0;
    list-style: none;
    margin: 0;
}
ul.footer-menu li {
    margin-bottom: 10px;
}
ul.footer-menu li a {
    color: #000000;
	transition: 300ms;
	text-transform: capitalize;
	position: relative;
	display: inline-block;
    width: 100%;
}
ul.cat-menu-footer li a {
	padding-left: 20px;
}
ul.cat-menu-footer li a:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 7px;
    height: 2px;
    background: #000;
    left: 0;
    top: 10px;
	transition: 300ms;
}
ul.cat-menu-footer li a:hover:before {
	background:#EB84A4;
}
ul.footer-menu li a:hover {
    color: #EB84A4;
}
ul.footer-menu.horizontal li a {
    padding-left: 40px;
}
ul.footer-menu.horizontal li {
    margin-bottom: 0;
}

ul.footer-menu.horizontal {
    display: flex;
    align-items: center;
}
.countr-3{
	column-count: 3;
}
.countr-2{
	column-count: 2;
}
.pink-line {
    position: relative;
}
.pink-line:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 35px;
    height: 3px;
    background: #EB84A4;
    top: 24px;
    left: 0;
}
a.cmn-btn {
    background-image: url(/wp-content/uploads/2024/09/btn-ico.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
}
.bottom-line h2, .bottom-line h1, .bottom-line h4 {
    position: relative;
}
.bottom-line h2:before, .bottom-line h1:before, .bottom-line h4:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 168px;
    height: 1px;
    background-color: #000000;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.bottom-line h2:after, .bottom-line h1:after, .bottom-line h4:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 4px;
    background: #EB84A4;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
}
.bottom-line.whiteline h2:after, .bottom-line.whiteline h1:after {
	background: #FFFFFF;
}
ul.category-listing {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
	justify-content: center;
}
ul.category-listing li {
    flex: 0 0 calc(25% - 22px);
    display: inline-block;
    text-align: center;
    margin: 11px;
}
span.cat-title {
    font-size: 1rem;
    line-height: 22px;
    text-transform: uppercase;
    position: relative;
    transition: 300ms;
    color: #000;
    padding: 8px 0;
    font-weight: 500;
}
span.cat-title:before, span.cat-title:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 180px;
    height: 1px;
    border-style: double none none none;
    border-width: 3px 0 0 0;
    border-color: #000;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: 300ms;
}
span.cat-title:after{
	top: unset;
	bottom: -5px;
}
ul.category-listing a:hover span.cat-title:before, ul.category-listing a:hover span.cat-title:after {
	border-color: #EB84A4;
}
ul.category-listing li a:hover span.cat-title {
    color: #EB84A4;
}
ul.category-listing li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
	position: relative;
}
.category-img {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	border-radius: 10px;
	position: relative;
}
.explore-now-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.7);
    z-index: 9;
    display: flex;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: rgb(235 132 164 / 80%);
    flex-flow: column;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: #FFF;
	transition: 500ms cubic-bezier(0.68, 2.45, 0.27, 0.55);
	opacity: 0;
	visibility: hidden;
}
ul.category-listing li a:hover .explore-now-wrap {
	transform: translate(-50%,-50%) scale(1);
	opacity: 1;
	visibility: visible;
}
.explore-now-wrap img {
    width: 50%;
	margin-bottom: 10px;
}

/* .category-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
    transition: 0.5s;
    transition-delay: 0.2s;
}
ul.category-listing li a:hover .category-img:after{
	left: 100%;
} */

.category-img>img {
    width: 100%;
    transition: 300ms;
}
ul.category-listing li a:hover .category-img>img {
    transform: scale(1.05);
}
.cat-name-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}
.cat-left-arrow {
    position: absolute;
    top: 40%;
    z-index: 9;
    left: -20px;
    cursor: pointer;
    transition: 300ms;
}
.cat-right-arrow {
    position: absolute;
    top: 40%;
    z-index: 9;
    right: -20px;
    cursor: pointer;
    transition: 300ms;
}
.cat-left-arrow:hover,.cat-right-arrow:hover {
    transform: scale(0.90);
}
.product-box-wrap {
    flex: 0 0 calc(33.33% - 22px);
    margin: 11px;
    display: flex;
    flex-flow: column;
	position: relative;
}
.list-section .row {
    justify-content: center;
}
.view_product {
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    height: calc(100% - 0px);
    transition: 300ms;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
	transform: scale(0);
}
.product-box-wrap:hover .view_product {
    opacity: 1;
    visibility: visible;
    background: rgb(235,132,164,0.20);
	transform: scale(1);
}
span.eye-icon.view_product img {
    transition: 500ms cubic-bezier(0.68, 2.45, 0.27, 0.55);
    transform: translateY(40px);
}
.product-box-wrap:hover .view_product img {
    transform: translateY(0px);
}
.product-title-wrap {
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    margin: 34px 0 0 0;
    text-align: center;
}
.product-title-wrap a {
    position: relative;
    transition: 300ms;
	display: inline-block;
	text-transform: capitalize;
}
.product-title-wrap a:before, .product-title-wrap a:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 180px;
    height: 1px;
    border-style: double none none none;
    border-width: 3px 0 0 0;
    border-color: rgb(34 34 34 / 20%);
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    transition: 300ms;
}
.product-title-wrap a:after {
    top: unset;
    bottom: -10px;
}
.product-box-wrap:hover a {
    color: #EB84A4;
}
.product-box-wrap:hover .product-title-wrap a:after,.product-box-wrap:hover .product-title-wrap a:before{
	border-color: #EB84A4;
}
.product-box-wrap>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    border-radius: 10px;
	position: relative;
}
.product-box-wrap a>img {
    width: 100%;
    transition: 300ms;
}
.product-box-wrap:hover a>img {
    transform: scale(1.05);
}
.container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12{
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666666%;
    flex: 0 0 16.666666%;
    max-width: 16.666666%;
}
.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-5{
	-webkit-box-flex: 0;
    -ms-flex: 0 0 41.666666%;
    flex: 0 0 41.666666%;
    max-width: 41.666666%;	
}
.col-6{
	-webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;  
}
.col-8{
	-webkit-box-flex: 0;
    -ms-flex: 0 0 66.666666%;
    flex: 0 0 66.666666%;
    max-width: 66.666666%;	
}
.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.col-11 {
	-webkit-box-flex: 0;
    -ms-flex: 0 0 91.666666%;
    flex: 0 0 91.666666%;
    max-width: 91.666666%;
}
.col-12 {
	-webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
h1.h1-heading {
    font-family: "Fondamento", Sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
	text-transform: capitalize;
}
.text-center{
	text-align: center;
}
.category-title-wrap {
	margin: 0px 0 50px 0;
}
.category-data {
    padding: 60px 0 40px 0;
    background: #F6F6F6;
    margin-bottom: 0px;
}
.mt-50{
	margin-top: 50px;
}
.mb-50{
	margin-bottom: 50px;
}
.margin-btm {
    margin-bottom: 40px;
}
.product-popup-section {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgba(0,0,0,0.5);
	display: flex;
    opacity: 0;
    visibility: hidden;
    transition: 500ms cubic-bezier(0.68, 2.45, 0.27, 0.55);
    transform: translateY(-40px);	
}
.product-popup-section.showproduct {
    opacity: 1;
    visibility: visible;
    display: flex!important;
    transform: translateY(0px);
	z-index: 99999;
}
.popup-outer-wrap {
    display: inline-block;
    flex: 0 0 85%;
    background: #FFF;
    height: calc(100% - 120px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.product-popup-wrap {
    display: inline-block;
    background: #FFF;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 50px;
}
.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
	cursor: pointer;
}
.product-details-wrap {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.product-gallery-wrap {
    flex: 0 0 50%;
	max-width: 50%;
	position: relative;
}
.product-details{
	flex: 0 0 50%;
	max-width: 50%;
	padding-left: 50px;
}
.gallery-nav .slick-track {
/*     display: flex; */
/*     flex-flow: column; */
}
.gallery-nav.slick-slider {
    position: absolute;
    left: 0;
    top: 0;
	width: 110px;
	height: calc(100% - 8px);
	overflow: hidden;
}
.gallery-nav .slick-list{
	height: 470px!important;
}
.gallery-thumb {
    width: calc(100% - 120px);
    margin-left: auto;
}
a.pink-cmn-btn {
    display: inline-block;
    background: #EB84A4;
    padding: 14px 60px 14px 22px;
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1;
    background-image: url(/wp-content/uploads/2024/09/btn-ico.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    transition: 300ms;
}
a.pink-cmn-btn:hover {
	background-color: #db6f91;
}
.product-cta-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.product-cta-wrap .pink-cmn-btn:first-child {
    margin-right: 15px;
}
.loading:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #EB84A4;
    border-bottom: 8px solid #EB84A4;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    display: inline-block;
    transform: translate(-50%,-50%);
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
h3.product-title {
    font-size: 2.375rem;
    color: #000;
    line-height: 1;
    margin: 0 0 30px 0;
}
.gallery-img img {
    margin: 0 auto;
}
.gallery-thumb {
/* 	border: 1px solid #F0F0F0;
    border-radius: 10px;
    overflow: hidden; */
}
.gallery-img {
    border: 1px solid #BFBFBF;
    border-radius: 10px;
    overflow: hidden;
}
.gallery-nav-img span {
	border: 1px solid #D5D5D5;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-nav-img {
    padding: 2px;
}
.inq-inp input::placeholder {
    color: #747474;
}
.inq-inp input, .inq-inp textarea, .inq-inp input:focus, .inq-inp textarea:focus {
    width: 100%;
    border: 1px solid #EB84A4;
}
.inq-inp textarea {
    max-height: 120px;
}
.contact-min-height {
    height: 100%;
}
.contact-min-height a:hover {
    color: #EB84A4;
}
input.wpcf7-submit {
    display: inline-block;
    background: #EB84A4;
    padding: 14px 60px 14px 22px;
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1;
    background-image: url(/wp-content/uploads/2024/09/btn-ico.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    transition: 300ms;
    border-radius: 0;
}
input.wpcf7-submit:hover {
    background: #db6f91;
}
.inq-inp {
    position: relative;
}
span.wpcf7-spinner {
    position: absolute;
    top: 10px;
    margin: 0 0 0 10px;
}
.banner-header h5,.banner-header h1 {
    margin: 0;
    font-size: 1.875rem;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: capitalize;
    line-height: 1.2;
    text-align: center;
}
.banner-header-wrap {
    min-height: 170px;
    display: flex;
    align-items: center;
	background-position: center;
    background-repeat: no-repeat;
	background-size: cover;
}
ul.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;
	justify-content: center;
}
ul.breadcrumbs li:not(:last-child) {
    margin-right: 28px;
}
ul.breadcrumbs li, ul.breadcrumbs li a {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
}
ul.breadcrumbs li{
	position: relative;
}
ul.breadcrumbs li:not(:last-child):after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 8px;
    height: 8px;
    top: 50%;
    right: -17px;
    transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
}
.ovfhidden {
    overflow: hidden;
}
#menu-main-menu ul.sub-menu {
    position: absolute;
    width: 550px;
    right: 0;
    background: #FAFAFA;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
    border-radius: 10px;
    overflow: hidden;
    list-style: none;
    margin: 0;
}
#menu-main-menu ul.sub-menu>li {
    flex: 0 0 calc(50% - 20px);
    margin: 0 10px;
}
img.menu-cat_img {
    width: 70px;
    margin: 0 auto;
}
#menu-main-menu ul.sub-menu>li a {
    display: inline-block;
    width: 100%;
    margin-bottom: 8px;
    border-bottom: 1px solid #EB84A4;
    padding: 12px 7px 9px 7px;
    transition: 300ms;
    line-height: 1;
	text-transform: capitalize;
}
#menu-main-menu ul.sub-menu>li a:hover {
    color: #EB84A4;
/* 	background: #F5F5F5; */
}
#menu-main-menu ul.sub-menu {
    position: absolute;
    width: 550px;
    right: 0;
    background: #fafafa;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    border-radius: 10px;
    overflow: hidden;
    list-style: none;
    margin: 0;
    transition: 300ms;
    transform: translateY(40px);
    z-index: -9;
    opacity: 0;
    visibility: hidden;
}
#menu-main-menu .menu-item-27:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
	z-index: 9999;
}
li#menu-item-27 {
    padding-right: 10px;
}
li#menu-item-27>a:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #000;
    top: 14px;
    right: 1px;
    border-right: 1px solid #000;
    transform: rotate(45deg);
}
li#menu-item-27>a {
    position: relative;
}

/* Menu Extra Css */
#menu-main-menu ul.sub-menu{
	width: 100%;
	top: 70px;
	background: #ffffff;
	border-radius: 0;
    box-shadow: 0 10px 10px rgb(0 0 0 / 20%);
	overflow: visible;
}
#menu-main-menu ul.sub-menu:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 40px;
    left: 0;
    top: -38px;
    z-index: 9;
}
ul#menu-main-menu {
    position: relative;
}
li#menu-item-27 {
    position: unset;
}
#menu-main-menu ul.sub-menu>li {
    flex: 0 0 calc(25% - 20px);
    margin: 0 10px;
}
#menu-main-menu ul.sub-menu>li a {
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
    text-align: center;
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}
span.sub-menu-item-name {
    min-height: 35px;
    margin-top: 7px;
}
#menu-main-menu ul.sub-menu>li a {
    font-size: 14px;
}
span.cat-feat-img {
	width: 100%;
    overflow: hidden;
    border-radius: 10px;
    border: 4px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 1px solid #EB84A4;
}
span.cat-feat-img img {
    width: 100%;
    height: 100px!important;
    object-fit: cover;
	transition: 300ms;
}
#menu-main-menu ul.sub-menu>li a:hover span.cat-feat-img img{
	transform: scale(1.07);
}

.popup_ection {
    position: fixed;
    display: inline-block;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
}
a.quick_inq_popup {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: -42px;
    transform: translateY(-50%);
    z-index: 9999;
    cursor: pointer;
    transition: 500ms cubic-bezier(0.68, 2.45, 0.27, 0.55);
}
a.quick_inq_popup:hover {
    transform: translateY(-50%) scale(0.95);
}
.quick_inq_wrap {
    transition: 500ms;
    width: 100%;
    position: relative;
    margin-right: -500px;
}
.quick_inq_wrap {
    display: inline-block;
    width: 100%;
    background: #F5F5F5;
    padding: 35px;
    overflow: hidden;
    border-radius: 10px 0px 0px 10px;
}
.quick_inq_wrap.showinq {
    margin-right: 0;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 25%);
}
.inq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.home-image-box .elementor-image-box-img {
    transition: 500ms cubic-bezier(0.68, 2.45, 0.27, 0.55);
}
.home-image-box .elementor-image-box-img:hover {
    transform: scale(0.95);
}
span.inq-head {
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1;
}
.certi-img {
    padding: 0px 20px 0px 20px;
	text-align: center;
}
.certi-img img {
    margin-bottom: 10px;
}
ul.slick-dots li button {
    width: 26px;
    height: 4px;
    display: inline-block;
    max-height: 4px;
    padding: 0;
    background: #666666;
}
ul.slick-dots li.slick-active button,ul.slick-dots li:hover button  {
    background: #EB84A4;
}
.footer-social-icons a.elementor-icon.elementor-social-icon {
    filter: saturate(0);
	transition: 300ms;
}
.footer-social-icons a.elementor-icon.elementor-social-icon:hover {
    filter: saturate(1);
}
.testimonial-detail {
    background: #F6F6F6;
    padding: 22px;
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column;
    height: 100%;
	position: relative;
    min-height: 250px;
}
.testi-text {
    margin: 12px 0;
}
.testimonial-detail:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 30px;
    height: 30px;
    bottom: -20px;
    background-image: url(/wp-content/uploads/2024/10/down-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.testimonial-wrap {
    padding: 0px 10px;
}
.testi-user {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    margin-top: 28px;
}
/* .archive  .ekit-template-content-footer {
    margin-top: 90px;
} */
.testimonial-section {
    margin-bottom: 60px;
}
h4.h4-heading {
    font-family: "Fondamento", Sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 70px;
    line-height: 1;
}
.copyright_wrap {
    text-align: center;
    line-height: 1;
}
.product-gallery-wrap img.cat-right-arrow {
    right: 0px;
}
.product-gallery-wrap img.cat-left-arrow {
    left: 0;
}
/* .short-desc p:nth-child(2):first-letter {
    text-transform: uppercase;
}
.short-desc p:nth-child(2) {
    text-transform: lowercase;
} */
p.size:first-letter {
    text-transform: uppercase;
}
p.size {
    text-transform: lowercase;
}
.slick-dots li.slick-active button:before{
	display: none;
}
.elementor-element-37f7fc0 .elementor-icon-box-content h3 a {
    color: #FFFFFF;
}