@import url("https://fonts.googleapis.com/css?family=Noto+Serif+TC:700|Roboto:500&display=swap");
@font-face {
    font-family: Mbkaos;
    src: url(../FONT/Mbkaos.ttf);
}
.buttoncontent{
float:left;
}
.ashavlogo{
width:80%;
margin-left:10px;
}
.footicon img{
width:60%;
}
.footicon a{
display:flex;
align-items:center;
justify-content:center;
}
.view-products {
    background-color: transparent;
    border: 1px solid black;
    margin: 10px;
    padding: 8px 60px 8px 60px;
 
    cursor: pointer;
    float: left;
    color: black;
    transition: all 0.5s ease-in; 
    color: #000;
font-family: "Mbkaos";
font-size: 24px;
font-style: normal;
font-weight: 300;
line-height: normal;
background-color:#fff;
}

.view-products:hover {
    background-color: black;
    color: white;
    border-color: white;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font: inherit;
	vertical-align: baseline;
    
}

a {
	text-decoration: none;
}


:root {
	--master-color: #c19f63;
	--master-color-partner-dark: #7c591d;
  --master-color-partner-bright: #f5cd87;
	
	--main-txt-color: #333;
	--headings-color: #263358;
	--link-color: #8069b2;
	--sub-color: #b4b4b4;
	
	--main-bg-color: #fff;
	--secondary-bg-color: #f9f9f9;
	
	
}


body {
	font-family: 'Roboto', Tahoma, sans-serif;
	font-size: 125%;
	font-style: normal;
	background: var(--main-bg-color);
    overflow-x: hidden;
}



.header {
    position: fixed;
   
    
    background-color: rgba(0, 0, 0, 0.5); /* Adjust background color as needed */
    color: #fff;
   
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;


    color: #fff;
    z-index: 2; 
    /* Remove or adjust other properties if necessary */
}

.hompro {
    background: #fff;


    width: 100%;
    position: relative; /* Positioned in the normal document flow */
   /* Higher z-index to ensure it appears below the video */
}


#background-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
display:block;
}

#background-videomobile {
	width: 100%;
	height: 100%;
	object-fit: cover; 
display:none;
}
.banner2 {
   background-image: url(../images/14.jpg);
   background-size: cover;
    width: 100%;
	padding:28% 0;
    background-repeat: no-repeat;
}
.banner1 {
    background-image: url(../images/15.jpg);
    background-size: cover;
    width: 100%;
	padding:28% 0;
    background-repeat: no-repeat;
}
.banner3 {
    background-image: url(../images/kerban.jpg);
    background-size: cover;
    width: 100%;
	padding:28% 0;
    background-repeat: no-repeat;
}

.logo {
	flex: 1 1 auto;
	line-height: 2em;
}

.logo a {
	font-family: 'Noto Serif TC', serif;
	font-size: calc(36px + (45 - 36) * (100vw - 470px) / (1920 - 470));
	font-weight: 700;
	font-style: normal;
	display: inline-block;
	color: var(--headings-color);
	transition: color .5s;
}

.logo a:hover {
	color: var(--master-color);
}

/**
 * Main menu
 */
.menu {
flex: 1 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}


.menu__item {

    font-family: "Mbkaos";
    font-size: 1.20vw;
    font-style: normal;
    font-weight: 500;
    padding-top:10px;
    line-height: normal;
  text-align: center;
	color: #fff;
  position: relative;
  overflow: hidden;
}

.menu__item_active {
	color: var(--master-color);
}

.menu__item:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 3px;
	left: -100%;
	background: var(--master-color);
	
	-webkit-transition: all .2s ease-out;
			transition: all .2s ease-out;
}

.menu__item:hover:after {
	left: 0;
}

/**
 * Mobile menu elements
 */
.mobile-menu__opener {
	z-index: 300;
		
	height: 1.2em; 
	width: 1.8em;
	border: none;
	text-align: center;
		
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	position: relative;
}

.mobile-menu__opener span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--master-color);
	position: absolute;
	top: 50%;
	text-indent: -9999px;
	letter-spacing: -5px;
	text-align: left;
		
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.mobile-menu__opener:before,
.mobile-menu__opener:after {
	display: block;
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	background: var(--master-color);
		
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
				
	backface-visibility: hidden;
	transform-style: preserve-3d;
	-moz-transform-style: flat;
}

.mobile-menu__opener:before {
	top: 0;
}

.mobile-menu__opener:after {
	top: 100%;
}

.mobile-menu__screen {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--secondary-bg-color);
	overflow: hidden;
	z-index: 200;
}

.mobile-menu__screen:after {
	content: '';
	height: 2px; 
	position: absolute;
	left: 1.5em;
	right: 1.5em;
	bottom: 0;
	background: var(--master-color-partner-bright);
	background-image: linear-gradient(to right, var(--master-color), var(--master-color-partner-bright));
}

.mobile-menu__opener, 
.mobile-menu__screen {
	display: none;
}

/**
 * Breakpoint 768px 
 */
@media all and (max-width: 575px) { 
	.header {
	padding: 5px;
		position: sticky;
		top: 0; /* Ensure top value is set */
		z-index: 300; /* Ensure it stays above other elements */
		background-color: #fff;
	}
	
	.logo {
		z-index: 300;
	}
	
	.mobile-menu__opener, 
	.mobile-menu__screen {
		display: block;
	}
 
	.mobile-menu__opener_menu_open:before {
		top: 50%;
		-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
	}
	
	.mobile-menu__opener_menu_open span {
		opacity: 0;
	}

	.mobile-menu__opener_menu_open:after {
		top: 50%;
		-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
	}

	.menu {
		/* hide menu */
		height: calc(24vw + 13vh);
		opacity: 0;
		visibility: hidden;
			
		-webkit-transform: translateY(-100%);
				transform: translateY(-100%);
		
		/* layout in header */
		flex: 1 0 100%;
			
		/* own layout */
		flex-direction: column;
		align-items: flex-start;
			
		/* positioning */
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		padding: var(--content-padding);
		z-index: 100;
			
		/* styling 
		background: #ffffff9e;*/
background:#070707bf;
		box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .1);
			
		/* transition */
		-webkit-transition: transform 500ms ease-in-out 0s;
				transition: transform 500ms ease-in-out 0s;
	}

	.menu_slide_up {
		opacity: 1;
		visibility: visible;
        align-items: center;
	}
		
	.menu_slide_down { 
	    padding-top:10px;
        transform: translateY(3.8em);
	}
    .menu__item{
        color: #000;
    }
}




.homprohead{
    color: #000;
    font-family: Mbkaos;
    font-size: 3.80vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.box {
    display: flex;
    align-items: center;
   width:80%;
   margin:auto;
    padding: 20px;
 
}

.text-section {
    max-width: 50%;
}

.text-section h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.view-products {
    background-color: #fff;
    border: 2px solid black;

    font-size: 1em;
    cursor: pointer;
}

.divider {
    width: 2px;
    height: 630px;
    background-color: black;
    margin: 0 20px;
}

.image-section img {
    max-width: 100%;
    border-radius: 10px;
    height: 615px;
    padding-left:10vw ;
 
}
/* advantages */
.homadv{
    background-color: rgba(11, 116, 188, 1);
   
}

.homadvhead{
    color: #FFF;
text-align: center;
font-family: Mbkaos;
font-size: 3.333vw;
font-style: normal;
font-weight: 300;
line-height: normal;
}
.homadvcont{
 width: 80%;
 margin: auto;
}
.homadvcont img{
    height:100%;
    /*height: calc(9.5vw + 9.5vh);*/
    padding: 10px;
}
.homadvbox{
    display: flex;
    justify-content: center;

}
.homadvboxhead{
    color: #000;
    font-family: "Mbkaos";
    font-size:1.25vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.homadvboxcon{color: #000;
font-family: "Mbkaos";
font-size: 1.146vw;

font-weight: 400;
line-height: normal;}

/* feed section  */
.homfeed{
    background: #fff ;
}
.homfeedhead{
    color: #000;
text-align: center;
font-family: Mbkaos;
font-size: 3.33vw;
font-style: normal;
font-weight: 300;
padding: 20px 0;
line-height: normal;
}
.imgbox{
    border-bottom: 1px solid;
   display:flex;
justify-content:center;
}

.box1{
    display: none;
}



/*.homfeedbox{
height: 400px;
width: 350px;

}*/
.container-fluid{
    padding: 0;
    margin: 0;
}
/* .homefeedboxspace{
padding: 15px;
} */

.homfeedcol{
justify-content: center;
/*display: flex;*/
margin:5% 0 0 0;
}
.homfeedmain
{
    width: 80%;
    margin: auto;
}
.homfeedbutton{
    display: flex;
justify-content: center; 
padding: 20px ;   
}

/* networks section */

.homnet{
    background-color:#fff ;
    padding-top:5vh ;
margin:0;
padding:0;
}
.homnethead{
    color: #000;
text-align: center;
font-family: Mbkaos;
font-size: 3.33vw;
font-style: normal;
font-weight: 300;
line-height: normal;
padding:5% 0;
}
.homnetmain {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creates three equal columns */
    gap: 10px; 
    width: 90%;
    margin: auto;
}

.homnetmaingr {
  

    text-align: center; 
   
}
.produnames {
    color: #000;
    font-family: "Mbkaos";
    font-size: 0.80vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


.homnethead{
    color: #000;
    font-family: "Mbkaos";
    font-size: 1.667vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.homnetmaingrimg img{

   width:90%;
}

.homreview{
    background-color:#BBB8A9 ;
    height: 500px ;
    display: flex;
    justify-content: center;

}

.owl-carousel .item {

}




.testimonial {
    text-align: center;
    background: #0B74BC;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 80%;
    padding: 6% 0;
    margin: auto;
    opacity: 0.5; /* Reduced opacity for non-center items */
    transition: opacity 0.3s ease-in-out;
}

.testimonial.center {
    opacity: 1; /* Full opacity for the center item */
}

.owl-nav {
    display: none;
}


.testimonialtext{
    color: #fff;
    font-family: "Mbkaos";
    font-size: 1.51vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.testimonialreview{
    color: #fff;
font-family: "Mbkaos";
font-size: 1.667vw;
font-style: italic;
font-weight: 200;
line-height: normal;
float: right;
padding: 0 1.00vw;
}
.homenethead{
    color: #000;
    text-align: center;
    font-family: Mbkaos;
    font-size: 3.33vw;
    font-style: normal;
    font-weight: 300;
    padding: 3vh 0 ;
    line-height: normal;
}
/* .owl-carousel .owl-stage-outer{
    padding: 3vh;
}

.owl-carousel{
    padding: 3vh 0;
} */

.homenethead{
    color: #000;
    text-align: center;
    font-family: Mbkaos;
    font-size: 3.33vw;
    font-style: normal;
    font-weight: 300;
    padding: 3vh 0 ;
    line-height: normal;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: #000 !important;
}


/* footer  */
.eaxfooter{
background-color: #FFF;
padding:0 2%;
}
.footicon{
display:flex;
align-items:center;
    gap: 20px;
    padding: 10px 10px;
justify-content: center;
}
.footlogo{
    display: flex;
    justify-content: center;
align-items: center;
}

.footlogo img{
height:calc(4vw + 4vh);
}

.links-section{
  flex: 1;
  text-align: center;
  color: #000;
font-family: "Mbkaos";
font-size: 1.2vw;
font-style: normal;
font-weight: 500;
line-height: normal;
height:100%;
display:flex;
align-items:center;
justify-content:center;
}

.links-section ul {
  list-style-type: none;
  padding: 0;
display:flex;
}

.links-section ul li {
  margin: 5px 0;

  padding: 15px;
}

.links-section ul li a{
  text-decoration: none;
  color: #000;
 
}



.contact-section{
    color: #000;
    font-family: "Mbkaos";
    font-size: 1.2vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  
  .contact-section ul {
    list-style-type: none;
    padding: 0;
  }
  
  .contact-section ul li {
    margin: 5px 0;
  
    padding: 5px;
  }
  
  
  
  .contact-section ul li a{
    text-decoration: none;
    color: #000;
    font-weight: bold;
  }
  
  @media screen and (max-width: 575px) {
    .contact-section ul #mobile-view {
        display: none;
    }
}

  
 

  /* product page  */
  
  
  
  /*watermark css*/
    /*.hompro {*/
    /*        position: relative;*/
    /*        width: 100%;*/
    /*        height: 100vh;*/
    /*        background: url('../images/headloho.png') no-repeat center center;*/
    /*        background-size: cover;*/
    /*    }*/

    /*    .watermark {*/
    /*        position: absolute;*/
    /*        top: 50%;*/
    /*        left: 50%;*/
    /*        transform: translate(-50%, -50%);*/
    /*        opacity: 0.2;*/
    /*        pointer-events: none;*/
    /*        z-index: 2;*/
    /*    }*/

    /*    .watermark img {*/
    /*        width: 200px;*/
    /*        height: auto;*/
    /*    }*/
    
    .homfeed, .homnet, .missionhead, .missioncon, .oustory, .getin, .producthe, .discopro, .container-fluid, .contactmain, .mainprobox, .producrt-deatils{
        position: relative;
    }
     .watermark-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../images/headloho.png');
            background-repeat: repeat;
            background-size: 20%;
            opacity:0.018;
            /*transform: rotate(-15deg);*/
            filter: contrast(1.2) brightness(1.5);
            pointer-events: none;
        }
  
