html,
body {
    background:#fff;
	padding: 0;
	margin: 0;
	letter-spacing: 1px;
	font-family: 'Century Schoolbook', sans-serif;
}
html {
scroll-behavior: smooth;
}
body a {
outline: none;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
text-decoration: none;
}
body a:hover {
text-decoration: none;
}
body a:focus,
a:hover {
text-decoration: none;
}
input[type="button"],
input[type="submit"] {
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
letter-spacing: 1px;
font-family: 'Roboto', sans-serif;
}
select,input[type="email"],input[type="text"],input[type=password],
input[type="button"],input[type="submit"],textarea,span{
font-family: 'Roboto', sans-serif;
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
letter-spacing: 1px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0;
font-family: 'Raleway', sans-serif;
letter-spacing: 1px;
}
p {
margin: 0;
padding: 0;
letter-spacing: 1px;
font-family: 'Roboto', sans-serif;
}
ul {
margin: 0;
padding: 0;
list-style-type: none;
}

/*-- //Reset-Code --*/
h3.title {
    font-size: 60px;
    color: #000;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: capitalize;
font-family: 'Patrick Hand', cursive;
}
.title-w3ls-text p {
    font-size: 16px;
    color: #888;
    letter-spacing:0px;
    line-height: 26px;
    padding: 0em 18em;
}
.ser-text-wthree h4,.blog-txt-info h4 a,.footer-bottom-info h4{
    font-size: 25px;
    color:#fff;
    text-transform: capitalize;
}
.sent-butnn:hover,.view-buttn a:hover {
    opacity: .8;
}
p{
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
	line-height: 27px;
}

/* navigation */


/* CSS Document */

.toggle-2,
.toggle,
[id^=drop] {
  display: none;
}





.container{max-width:1366px}
@media (max-width:1600px){.container{max-width:1200px}}
@media (max-width:1360px){.container{max-width:1000px}}


/* Giving a background-color to the nav container. */

nav {
  margin: 0;
  padding: 0;
}
#logo a {
    float: left;
    display: initial;
    font-weight: 400;
    font-size: 43px;
    letter-spacing: 1px;
    color: #fff;
    padding: 0px 12px;
}
.hidden-phone {
    display:none;
}
.hidden-pc {
    display: block;
}
@media (max-width:768px){

#logo img {
width:100px;
}
.hidden-phone {
    display:block;
}
.hidden-pc {
    display:none;
}
	
}

/* Since we'll have the "ul li" "float:left"
* we need to add a clear after the container. */

nav:after {
  content: "";
  display: table;
  clear: both;
}


/* Removing padding, margin and "list-style" from the "ul",
* and adding "position:reltive" */

nav ul {
  float: right;
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  bottom:25px;
  right:5%;
}


/* Positioning the navigation items inline */

nav ul li {
  margin: 20px 30px;
  display: inline-block;
  float: left;
}


/* Styling the links */

nav ul li a {
    color: #008AB2;
    font-weight: 700;
    font-size: 21px;
	border-bottom:2px solid #FA7598;
    letter-spacing: 1px;
    padding: 5px 5px;
    display: inline-block;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}
nav ul li ul li:hover {
  background: #f8f9fa;
}

.menu li .drop-text:hover {
  color: #000;
  border: none;
}
/* Background color change on Hover */
/*.menu li.active a,.menu li a:hover{border-bottom: 1px solid #d4d4d4;}*/
.menu li a:hover {
  color:#FA7598;
  border-bottom:1px solid #FA7598;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}
/* Hide Dropdowns by Default
* and giving it a position of absolute */

nav ul ul {
  display: none;
  position: absolute;
  top: 33px;
  background: #000;
  padding: 10px;
  border-radius: 4px;
  box-shadow: -1px 1px 5px black;
}


/* Display Dropdowns on Hover */

nav ul li:hover>ul {
  display: inherit;
}


/* Fisrt Tier Dropdown */

nav ul ul li {
  width: 170px;
  float: none;
  display: list-item;
  position: relative;
}

nav ul ul li a {
  color: #fff;
  padding: 5px 10px;
  display: block;
  background: transparent;
}


/* Second, Third and more Tiers	
* We move the 2nd and 3rd etc tier dropdowns to the left
* by the amount of the width of the first tier.
*/

nav ul ul ul li {
  position: relative;
  top: -60px;
  /* has to be the same number as the "width" of "nav ul ul li" */
  left: 170px;
}


/* Change ' +' in order to change the Dropdown symbol */

li>a:only-child:after {
  content: '';
}

a.reqe-button {
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
}


/* Media Queries
--------------------------------------------- */
@media(max-width: 1400px) {
  nav ul li {
  margin: 20px 20px;
}
nav ul li a {
    font-size: 18px;
}
}
@media(max-width: 1280px) {
  nav ul li {
  margin: 20px 20px;
}
nav ul li a {
    font-size: 16px;
}
}
@media(max-width: 800px) {
  nav a {
    font-size: 13px;
  }
}

@media all and (max-width: 767px) {
  #logo {
    display: block;
    padding: 0;
    width: 100%;
    text-align: center;
    float: none;
	
  }
  nav {
    margin: 0;
  }
  nav ul {
  top:45px;
  right:0%;
  background:#fff;
  height:500px;
  
}
  /* Hide the navigation menu by default */
  /* Also hide the  */
  .toggle+a,
  .menu {
    display: none;
  }
  /* Stylinf the toggle lable */
  .toggle {
    display: block;
    padding: 6px 17px;
    font-size: 14px;
    text-decoration: none;
    border: none;
    float: right;
    background-color: #5facbe;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
  }
  .menu .toggle {
    float: none;
    text-align: center;
    margin: auto;
    max-width: 138px;
    padding: 10px 18px;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: 1px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
  }
  .menu .toggle:hover {
    color: #fff;
    opacity: .8;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
  }
  .toggle:hover {
    color: #000;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
  }
  label.toggle.toogle-2 {
    background: transparent;
    text-transform: capitalize;
    font-size: 14px;
    color: #fff;
  }
  /* Display Dropdown when clicked on Parent Lable */
  [id^=drop]:checked+ul {
    display: block;
    background: #fff;
    padding: 15px 0;
    text-align: center;
    width: 100%;
  }
  /* Change menu item's width to 100% */
 nav ul li {
    display: block;
    width: 100%;
    padding:2px 0;
	background:#FFF;
  }
  nav ul{
    width: 100%;
	background:#FFF;
  }
  nav ul ul .toggle,
  nav ul ul a {
    padding: 0 40px;
  }
  nav ul ul ul a {
    padding: 0 80px;
  }
  nav a:hover,
  nav ul ul ul a {
    background-color: transparent;
  }
  nav ul li ul li .toggle,
  nav ul ul a,
  nav ul ul ul a {
    padding: 14px 20px;
    color: #FFF;
    font-size: 15px;
  }
  /* 
nav ul li ul li .toggle,
nav ul ul a {
background-color: #212121;
} */
  /* Hide Dropdowns by Default */
  nav ul ul {
    float: none;
    position: static;
    color: #ffffff;
    /* has to be the same number as the "line-height" of "nav a" */
  }
  /* Hide menus on hover */
  nav ul ul li:hover>ul,
  nav ul li:hover>ul {
    display: none;
  }
  /* Fisrt Tier Dropdown */
  nav ul ul li {
    display: block;
    width: 100%;
    padding: 0;
  }
  nav ul ul ul li {
    position: static;
    /* has to be the same number as the "width" of "nav ul ul li" */
  }
  nav a {
    color: #000;
    font-size: 15px;
  }
  .menu li.active a,
  .menu li a:hover {
    background: transparent;
  }
}

@media all and (max-width: 568px) {
  nav a,
  .menu .toggle,
  nav ul li ul li .toggle,
  nav ul ul a,
  nav ul ul ul a {
    font-size: 14px;
  }
}

@media all and (max-width: 320px) {
  nav a,
  .menu .toggle,
  nav ul li ul li .toggle,
  nav ul ul a,
  nav ul ul ul a {
    font-size: 13px;
  }
}

.title{
color:#FFF;
width:1366px;
height:36px;
font-size:30px;
line-height: 36px;
text-align:center;
position:relative;
margin:30px auto 50px;

}

.title div:before,.title div:after{
position:absolute;
background:#fff;
content:"";
height:1px;
top:50%;
width:450px;}

.title div:before{left:10px;}
.title div:after{right:10px;}

@media(max-width: 1400px) {
.title{
width:1000px;
}
.title div:before,.title div:after{
width:250px;
}
}
@media(max-width: 480px) {
.title{
width:100%;
font-size:20px;
font-weight:800;
}
.title img {
width:30px;
}
.title div:before,.title div:after{
width:0px;
display:none;
}
}

#about .title, #about3 .title,#about4 .title{
color:#008AB2;
width:1366px;
height:36px;
font-size:30px;
line-height: 36px;
text-align:center;
position:relative;
margin:350px auto 50px;
}
#about3 .title,#about4 .title{
color:#008AB2;
width:1366px;
height:36px;
font-size:30px;
line-height: 36px;
text-align:center;
position:relative;
margin:100px auto 50px;
}
#about6 .title{
color:#008AB2;
text-align:center;
position:relative;
margin:80px auto;
}
#about6 span{
color:#F55C85;
}
#about .title div:before,#about .title div:after,
#about3 .title div:before,#about3 .title div:after,
#about4 .title div:before,#about4 .title div:after{
position:absolute;
background:#008AB2;
content:"";
height:1px;
top:50%;
width:400px;
}
#about .title div:before,#about3 .title div:before,#about4 .title div:before{left:10px;}
#about .title div:after,#about3 .title div:after,#about4 .title div:after{right:10px;}
@media(max-width: 1400px) {
#about .title,#about3 .title,#about4 .title{
width:1000px;
}
#about .title div:before,#about .title div:after,#about3 .title div:before,#about3 .title div:after,#about4 .title div:before,#about4 .title div:after{
width:300px;
}
}
@media(max-width: 480px) {
#about .title,#about3 .title,#about4 .title{
width:100%;
font-size:20px;
font-weight:800;
margin:50px auto 50px;
}
#about .title img, #about3 .title img, #about4 .title img {
width:30px;
}
#about .title div:before,#about .title div:after,#about3 .title div:before,#about3 .title div:after,#about4 .title div:before,#about4 .title div:after{
width:0px;
display:none;
}
}

/*-- dropdown --*/







/* headder */
/*-- banner-- */
.headder-top {
	position: absolute;
	width: 100%;
	padding: 1em 2em;
	background-color: rgba(255,255,255,0.9);
}
.main-banner {
    padding-top: 20em;
}
.banner-left-side{
    background: url(../images/b1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height:1280px;
	}
	
.banner-right-txt{
	margin-top:12%;
	width:80%;
	margin: 0 auto;
	max-width:1225px;
}
.slide-info-txt p {
    color: #dadada;
    font-size: 15px;
    text-shadow: 2px 2px 8px #000;
    line-height: 27px;
    letter-spacing: 1px;
    padding: 3em 15em 0em;
}

/*--// banner-- */
@media(max-width: 767px) {
.banner-left-side{
    background: url(../images/b1-800.jpg);
    background-repeat: no-repeat;
    background-position: center;
    min-height:800px;
}	
.banner-right-txt{
	margin-top:12%;
	max-width:760px;
}
}


/*-- store-info -- */
.store-info{
	background-color: #199AB9;
}
.store-details p {
color:#FFF;
font-size:24px;
text-align:center;
margin-bottom:50px;
line-height:150%;
}
.store-image-right{
	width:80%;
	text-align:center;
	position:relative;
	top:250px;
}
.store-image-left{
	width:80%;
	text-align:center;
	position:relative;
	top:80px;
}
@media(max-width: 767px) {
.store-details p {
font-size:16px;
text-align:center;
margin-bottom:30px;
padding-bottom:30px;
}
.store-image-right{
width:100%;
position:relative;
top:10px;	
}
.store-image-left{
width:100%;
margin-top:20px;
position:relative;
top:10px;
}
}


/*--about--*/
#about{
	background:url(../images/about-bg.png) no-repeat right center;
}

#about  p {
color:#F55C85;
font-size:24px;
text-align:center;
margin:80px auto;
line-height:150%;
width:50%;
}
.abut-img-two img {
    position: absolute;
    top: 303px;
    width: 82%;
    left: 36%;
}
.about-right-grid {
font-size: 16px;
}
.abut-img-w3l img,.abut-img-two img  {
    box-shadow: -2px -2px 5px #7b7b7b;
}

@media(max-width: 767px) {
#about{
background:url(../images/about-bg-800.png) no-repeat right center;
}
#about p {
font-size:16px;
margin-bottom:30px;
padding-bottom:30px;
width:80%;
}
.about-right-grid {
font-size: 16px;
}
}

#aboutpic{
background:url(../images/pic-bg-r.png) no-repeat right center;
}
#aboutpic2{
background:url(../images/pic-bg-l.png) no-repeat right center;
}
#aboutpic3{
margin:80px auto;
}
@media(max-width: 767px) {
#aboutpic{
background:url(../images/pic-bg-l-800.png) no-repeat right center;
}
#aboutpic3{
margin:30px auto;
}
}


/* --veg-info --*/

.w3three-veg-org h6{
    font-size: 14px;
    color:#c50e1f;
}
.w3three-veg-org h5 {
    font-size: 19px;
    color:#28a745;
}

.veg-list-text ul li {
    margin-top: 10px;
	height:31px;
	font-size:0.6em;
	color:#fff;
	line-height:31px;
	padding-left:5px;
	background:url(../images/list-bg.png) no-repeat left top;
}
/* --veg-info 4--*/
veg-info h4{
    font-size:0.6em;
}
.w3three-veg-org h6{
    font-size: 14px;
    color:#c50e1f;
}
.w3three-veg-org h5 {
    font-size: 19px;
    color:#28a745;
}

.veg-list-text4 ul li {
    margin-top: 10px;
	height:31px;
	color:#fff;
	font-size:0.6em;
	line-height:31px;
	padding-left:5px;
	background:url(../images/list-bg2.png) no-repeat left top;
}
.veg-list-text span {
    font-size: 10px;
}


#about5 {
	background-image:url(../images/h-bg.png);
    background-position: 20% 0;
	background-repeat:repeat-x;
	background-color:#F9D5E1;
}
.aboutbox {
	background:url(../images/bline2.png) no-repeat center center;
}
.aboutbox2 {
	background:url(../images/bline1.png) no-repeat center center;
}
.iconco{
	padding-top:15%;
} 
.iconco2{
	padding-top:8%;
} 
@media(max-width: 767px) {
.aboutbox {
	background:none;
}
.aboutbox2 {
	background:none;
}
}

/*--contact--*/
.contact{
    background: #199AB9;
	color:#FFFFFF;
}
.contact-forms input, .contact-forms textarea {
    font-size: 14px;
    color: #000;
    padding:10px 30px;
	margin:5px 0;
    outline: none;
    border: none;
    border-radius: 0px;
    outline: none;
    background:#fff;
}
.contact-forms textarea {
    resize: none;
    height:9.5em;
}
.sent-butnn {
    font-size: 20px;
	float:right;
    font-weight: 800;
    letter-spacing: 2px;
    background:#F55C85;
    padding: 10px 25px;
	width:150px;
	height:50px;
    border-radius: 5px;
    margin: 10px 0;
    color: #fff;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}
/*--//contact--*/


/*--footer-- */

button.btn1 {
    width: 20%;
    color: #fff;
    border: 1px solid #000;
    padding: 11.5px 0;
    font-size: 16px;
    background:#c50e1f;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    cursor: pointer;
}
.bottem-wthree-footer {
    background: #199AB9;
}
.footer-w3layouts-bottem {
    background: #199AB9;
}
.footer-office-hour ul li p,.footer-office-hour ul li p a,.footer-office-hour p{font-size: 13px;
    color: #bbb9b9;
    line-height: 21px;
}
.bottem-wthree-footer p {
    font-size: 14px;
    color: #fff;
    letter-spacing: 2px;
}
.bottem-wthree-footer p a {
    color: #ff5e00;
    font-size: 14px;
}
.bottem-wthree-footer p a:hover{color: #fff;}
a.move-top span {
    display: inline-block;
    font-size: 25px;
    color: #fff;
}
/*--//footer-- */



