/*** START COMMONN STYLES ***/

a, a:hover 
{
	text-decoration: none !important;
}

ul 
{
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

hr 
{
	width: 50%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background: white;
    border: 3px;
    border-top: 3px solid rgba(0,0,0,.1);
}


/*** END COMMON STYLES ***/

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #ce1212;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*** START HTML PAGE STYLE ***/

html
{
	scroll-behavior: smooth;
}

/*** END HTML PAGE STYLE ****/

/*** START BODY STYLE ***/

body
{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
}

/*** END BODY STYLE ****/

/*** START NAVBAR STYLE ***/

.navbar 
{
    border: medium none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    margin: 0;
    position: relative;
    padding: 0 !important;
}

.header-section 
{
    transition: all .3s ease-in-out;
}

.header-section
{
    background-color:#1a4d24;
    width:100%;
    height:100px;
    z-index:99;
    position:fixed;
    left:0;
    top:0;
    padding:0;
    display:flex;
    align-items:center
}

.menu-wrap 
{
    position: relative;
}

ul.nav>li 
{
    position: relative;
}

ul.nav>li>a 
{
    color: #ddd;
    font-family: 'Roboto',sans-serif;
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
    letter-spacing: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 80px;
    z-index: 1;
    transition: 0.5s;

}

.header-btn .menu-btn 
{ 
    background-color: #ffc851; 
    font-family: 'Roboto',sans-serif; 
    font-size: 12px; 
	font-weight: 600;
    text-transform: uppercase; 
    color: #1a4d24; 
    padding: 0 30px; 
    height: 45px; 
    line-height: 45px; 
    display: block; 
    margin: 0; 
}

.header-btn .menu-btn:hover 
{
    color: #fff;
}

ul.nav>li>a:hover
{
    color: #ffc851;
}

/*** END NAVBAR STYLE ***/

/*** START HOME SECTION STYLE ***/

.home-section 
{
	background-color: black;
	background-image: url(../images/home_bg_new.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 670px;
}

.bttn_style_1
{
    font-family: 'Roboto',sans-serif;
    letter-spacing: 3px;
    background-color: transparent;
    color: white !important;
    line-height: 45px;
    display: inline-block;
    padding: 0 25px;
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    border: 2px solid white;
    opacity: 1;
}
    
.bttn_style_1:hover
{
    opacity: 0.6;
}
    
.bttn_style_2
{
    font-family: 'Roboto',sans-serif;
    letter-spacing: 3px;
    background-color: #ffc851;
    color: rgb(18, 22, 24);
    line-height: 45px;
    display: inline-block;
    padding: 0 25px;
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    border: 2px solid #ffc851;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bttn_style_2:before 
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #0a2e11;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.bttn_style_2:hover:before 
{
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.bttn_style_2:hover 
{
    color: #ffc851;
    border-color: #0a2e11;
}

.home-section h1
{
    color: rgb(255, 255, 255);
    white-space: break-word;
    letter-spacing: 12px;
    font-weight: 400;
    font-size: 40px;
}

.home-section h2
{
    color: rgb(255, 255, 255);
    white-space: break-word;
    letter-spacing: 12px;
    font-weight: 400;
    font-size: 20px;
}

.home-section p
{
    color: rgb(255, 255, 255);
    white-space: break-word;
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 15px;
}




/*** END HOME SECTION STYLE ***/

/*** START OUR QUALITIES SECTION STYLE ***/

.our_qualities
{
	background-image: linear-gradient(to right, gold, white, gold, white, gold);
}
.our_qualities_column
{
    text-align: center;
}

/*** END OUR QUALITIES SECTION STYLE ***/

/*** START OUR MENUS SECTION STYLE ***/

.thumbnail 
{
    display: block;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
    text-align: center;
    background: inherit;
}

.our_menus, .image-gallery
{
    color: #dce4e8;
    padding: 100px 0px;
    background:#0a2e11;
}

.menu_category_name
{
    display: inline-block;
    cursor: pointer;
    vertical-align: top;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 22px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.tab_category_content
{
    display: none;
}

    
.no_menus_div
{
    margin:auto;
    font-size: 26px;
    font-weight: bold;
    width: fit-content;
    color: #ffc851;
}

.active_category
{
    color: #ffc851;
}


.menu-image 
{
    position: relative;
    max-width: 200px;
    margin: 50px auto;
}

.menu-image .image-preview 
{
    width: 200px;
    height: 200px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #ff7f00;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.menu-image .image-preview > div 
{
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.thumbnail>.caption>p
{
    font-size: 14px;
    line-height: 28px;
    margin-top: 14px;
}
.thumbnail>.caption>h1
{
    font-size: 22px;
	color: #fff;
}
.menu_price
{
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 3px;
    display: block;
	color:#ffc851;
}




/*** END OUR MENUS SECTION STYLE ***/


/*** START CONTCAT US SECTION STYLE ****/

.contact-section
{
    padding: 100px;
    background-image: url('../images/back_3.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-section
{
    padding:100px 0px;
}

.contact-info h2
{
    font-size: 36px;
    color: #303133;
    margin: 0 0 8px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -0.04em;
    font-family: 'Prata', sans-serif;
}

.contact-info h3 
{
    line-height: 28px;
    margin-bottom: 20px;
}

.contact-info h4 
{
    font-size: 15px;
    line-height: 28px;
}

.contact-form 
{
    background-color: #fff;
    padding: 50px 40px;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    border-radius: 3px;
}

.contact-form  .form-control
{
    background-color: #fff;
    border-radius: 0;
    padding: 25px 10px;
    box-shadow: none;
    border: 2px solid #eee;
}

.contact-form  .form-control:focus 
{
    border-color: #ffc851;
    box-shadow: none;
    outline: none;
}



/** END CONTACT US SECTION STYLE ***/


/*** START OUR QUALITIES V2 SECTION STYLE ***/



.our_qualities_v2
{
    background-color: #0a2e11;
    padding: 100px 0px;
}

.quality
{
    background-size: cover !important;
    background-position: center !important;
    height: 200px;
    box-shadow: inset 0 0 0 1000px rgba(29, 35, 38, 0.8);
}

.quality_1
{
    background-image: url('../images/img_1.webp');
}

.quality_2
{
    background-image: url('../images/img_2.webp');
}

.quality_3
{
    background-image: url('../images/img_3.webp');
}

.text_inside_quality
{
    width: 100%;
    text-align: center;
    padding: 0 40px;
    position: absolute;
    top: 50%;
    left: 0;
}

.text_inside_quality>h5
{
    color:rgb(255, 255, 255);
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
}


/*** END OUR QUALITIES V2 SECTION STYLE **/



/*** START WIDGET SECTION - FOOTER STYLE ***/

.widget_social 
{
    display: block;
    text-align: center;
}
.widget_social li 
{
    display: inline-block;
}
.widget_social li a 
{
    color: #1a4d24;
    font-size: 12px;
    margin-right: 20px;
}
.footer_widget p 
{
    color: #1a4d24;
}
.footer_widget h3 
{
    color: #1a4d24;
}
.subscribe_form 
{
    display: block;
    text-align: center;
    padding: 5px 0;
}
.subscribe_form .form_input 
{
    display: block;
    
    color: #1a4d24;
    border: none;
    font-size: 14px;
    line-height: 50px;
    padding: 0 10px;
    float: left;
    width: 100%;
    margin-bottom: 10px;
    transition: all 0.5s ease-in-out;
}
.opening_time li 
{
    color: #1a4d24;
    line-height: 35px;
}
.subscribe_form .submit 
{
    background-color: #ffc851;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 50px;
    display: inline-block;
    padding: 0 10px;
    float: left;
    width: 100%;
    cursor: pointer;
    border: none;
    transition: all 0.5s ease-in-out;
}

.subscribe_form .submit:hover 
{
    background-color: #897666;
    transition: all 0.5s ease-in-out;
}


/*** END WIDGET SECTION - FOOTER STYLE ***/

/*** START FOOTER BOTTOM STYLE ***/


.footer_section 
{
    display: block;
    background-color: #0a2e11;
    border-top: 1px solid #333;
    padding: 30px 0;
}

.footer_section .copyright 
{
    font-size: 14px;
    color: #ddd;
}

.footer_social 
{
    display: block;
    text-align: right;
}

.footer_social li 
{
    display: inline-block;
}
.footer_social li a 
{
    font-family: 'Roboto',sans-serif;
    color: #ddd;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 20px;
}

/*** END FOOTER BOTTOM STYLE ***/

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about{
	overflow: hidden;
	padding: 100px 0;
	color: #1a4d24;
	background-color: #dce4e8;
}

.about .about-img {
  min-height: 500px;
}

.about h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: 3px;
  color: #0a2e11;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(206, 18, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(206, 18, 18, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

.about .ps-lg-5
{
	padding-left: 3rem;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
.dropdown-menu{
	padding: 0px;
}

.dropdown .dropdown-menu {
	border-top: 5px solid #ffc851;
}
.dropdown .dropdown-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}
.dropdown-item:hover{
	background-color: #1a4d24;
	color: #ffffff;
}

.bg-1 {
    background: url(../images/22.webp) no-repeat 50% 50%;
    background-size: cover;
    position: relative;
}
.page-title {
    padding: 50px 0px 30px 0px;
}
.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background: #1a4d24;
}

.page-title .block h1 {
    color: #fff;
}
.text-lg {
    font-size: 45px;
}
.text-capitalize {
    text-transform: capitalize!important;
}
.section {
    padding: 40px 0;
}

.sidebar-widget {
    padding-bottom: 35px;
}
.sidebar-widget h5 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;	
	font-weight: 700;
    color: #1a4d24;
}
.sidebar-widget h5:before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 35px;
    height: 3px;
    background: #ffc851;
}
.search-form .form-control {
    background-color: #fff;
    border-radius: 0;
    padding: 25px 10px;
    box-shadow: none;
    border: 2px solid #eee;
}
.search-form .form-control:focus 
{
    border-color: #ffc851;
    box-shadow: none;
    outline: none;
}

.text-sm {
    font-size: 14px;
	font-weight: 400;
}

.my-2 a {
    color: #0a2e11;
	transition: all .35s ease;
}
.my-2 a:hover {
    color: #ffc851;
	transition: all .35s ease;
}

.sidebar-widget.category ul li {
    margin-bottom: 10px;
}
.sidebar-widget.category ul li a, span {
    color: #222;
    transition: all 0.3s ease;
	font-weight: 400;
}
.sidebar-widget.category ul li span {
	margin-left: 10px;
    color: #1a4d24;
    transition: all 0.3s ease;
	font-weight: 600;
}
.sidebar-widget.category ul li a:hover {
  color: #223a66;
  padding-left: 5px;
}

.sidebar-widget.tags a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .075em;
    line-height: 41px;
    height: 41px;
    font-weight: 500;
    border-radius: 20px;
    color: #666;
    display: inline-block;
    background-color: #eff0f3;
    margin: 0 7px 10px 0;
    padding: 0 25px;
    transition: all .2s ease;
}
.sidebar-widget.tags a:hover {
  color: #fff;
  background: #1a4d24;
}

.sidebar-widget.schedule-widget ul li {
    padding: 10px 0px;
    border-bottom: 1px solid #eee;
}
.sidebar-widget.schedule-widget ul li a{
    color: #222;
	font-weight: 400;
}
.sidebar-widget.schedule-widget ul li span{
    color: #6F8BA4;
	font-weight: 400;
}

.mb-0 {
    font-weight: 600;
	color:#ffc851;
}
.sidebar-contatct-info h3{
	font-size: 24px;
}
.sidebar-contatct-info h3 a{
	color:#EE0000;
	transition: all .35s ease;
}
.sidebar-contatct-info h3 a:hover{
	color:#1a4d24;
	transition: all .35s ease;
}

.blog-item-meta span{
	color: #6c757d;
	font-size: 14px;
}

.blog-item-content h2 {
    font-weight: 600;
    font-size: 32px;
	color: #1a4d24;
}
.blog-item-content p{
	line-height: 30px;
	font-weight: 400;
	color: #292d32;
}

.btn-round-full {
    border-radius: 50px;
}
.btn-main {
    background: #ffc851;
    color: #1a4d24;
    border-color: #ffc851;
}
.btn-main:hover {
    background: #1a4d24;
    color: #fff;
    border-color: #1a4d24;
}
.btn {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: all .35s ease;
}

.nav-links .page-numbers.current {
    background: #1a4d24;
    color: #fff;
}
.nav-links .page-numbers {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-align: center;
    padding-top: 13px;
    font-weight: 600;
    margin-right: 10px;
}
.nav-links a{
    background: #eff0f3;
	color: #0a2e11;
}
.nav-links a:hover{
    background: #1a4d24;
	color: #fff;
}

.about .content {
	font-weight: 400;
}
.our_qualities p{
	font-weight: 400;
}
.widget_section p,li{
	font-weight: 400;
}
.copyright{
	font-weight: 400;
}

.lead {
	font-size: 18px;
	color: #666 !important;
	font-style: italic;
}

.tag-option a {
    border: 1px solid #eff0f3;
    padding: 6px 12px;
    color: #6F8BA4;
    font-size: 14px;
}
.tag-option a:hover {
    color: #292d32;
}
.comment-area .comment-thumb {
    margin-right: 20px;
	margin-bottom: 0px;
}
.comment-area h5 {
    font-size: 18px;
    font-weight: 500;
}
.comment-area span {
    font-size: 14px;
    font-weight: 400;
	color:#666;
}
.comment-content{
	margin-top: 30px !important;
}
.blog-item-content .clearfix i{
	color:#1a4d24;
}
.blog-item-content .clearfix i:hover{
	color:#0a2e11;
}
.comment-content p{
	color:#666;
}

.comment-form .form-control {
    background-color: #fff;
    border-radius: 0;
    padding: 25px 10px;
    box-shadow: none;
    border: 2px solid #eee;
}
.comment-form  .form-control:focus 
{
    border-color: #ffc851;
    box-shadow: none;
    outline: none;
}

.btn-main-2 {
    background: #1a4d24;
    color: #fff;
    border-color: #1a4d24;
}
.btn-main-2:hover {
    background: #ffc851;
    color: #1a4d24;
    border-color: #ffc851;
}
.dropdown-menu-lg-end{
	right: 0;
    left: auto;
}
#dropdownMenuLink1{
	padding: 0 0 0 20px;
}

#mainmenu1{
	display: none;
}
@media (max-width: 995px){
	#mainmenu1{
		display: block;
	}
	.hotline-phone-ring-wrap {
		bottom: 60px !important;
	}
	.align-items-end{
		padding-top:20px;
	}
	.our_qualities_column{
		margin-bottom:20px;
	}
}

.hotline-phone-ring-wrap {
position: fixed;
bottom: 0;
left: 0;
z-index: 88;
}
.hotline-phone-ring {
position: relative;
visibility: visible;
background-color: transparent;
width: 110px;
height: 110px;
cursor: pointer;
z-index: 11;
-webkit-backface-visibility: hidden;
-webkit-transform: translateZ(0);
transition: visibility .5s;
left: 0;
bottom: 0;
display: block;
}
.hotline-phone-ring-circle {
width: 85px;
height: 85px;
top: 10px;
left: 10px;
position: absolute;
background-color: transparent;
border-radius: 100%;
border: 2px solid #e60808;
-webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
transition: all .5s;
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%;
opacity: 0.5;
}
.hotline-phone-ring-circle-fill {
width: 55px;
height: 55px;
top: 25px;
left: 25px;
position: absolute;
background-color: rgba(230, 8, 8, 0.7);
border-radius: 100%;
border: 2px solid transparent;
-webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
transition: all .5s;
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.hotline-phone-ring-img-circle {
background-color: #e60808;
width: 33px;
height: 33px;
top: 37px;
left: 37px;
position: absolute;
background-size: 20px;
border-radius: 100%;
border: 2px solid transparent;
-webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
align-items: center;
justify-content: center;
}
.hotline-phone-ring-img-circle .pps-btn-img {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.hotline-phone-ring-img-circle .pps-btn-img img {
width: 20px;
height: 20px;
}
.hotline-bar {
position: absolute;
background: rgb(49, 74, 166);
border-radius: 3px;
padding: 0 15px 0 0;
background-size: 100%;
cursor: pointer;
transition: all 0.8s;
-webkit-transition: all 0.8s;
z-index: 9;
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
border-radius: 50px !important;
/* width: 175px !important; */
left: 33px;
bottom: 37px;
}
.hotline-bar > a {
color: #fff;
text-decoration: none;
font-size: 15px;
font-weight: bold;
text-indent: 50px;
display: block;
letter-spacing: 1px;
line-height: 40px;
font-family: Arial;
}
.hotline-bar > a:hover,
.hotline-bar > a:active {
color: #fff;
}
@-webkit-keyframes phonering-alo-circle-anim {
0% {
-webkit-transform: rotate(0) scale(0.5) skew(1deg);
-webkit-opacity: 0.1;
}
30% {
-webkit-transform: rotate(0) scale(0.7) skew(1deg);
-webkit-opacity: 0.5;
}
100% {
-webkit-transform: rotate(0) scale(1) skew(1deg);
-webkit-opacity: 0.1;
}
}
@-webkit-keyframes phonering-alo-circle-fill-anim {
0% {
-webkit-transform: rotate(0) scale(0.7) skew(1deg);
opacity: 0.6;
}
50% {
-webkit-transform: rotate(0) scale(1) skew(1deg);
opacity: 0.6;
}
100% {
-webkit-transform: rotate(0) scale(0.7) skew(1deg);
opacity: 0.6;
}
}
@-webkit-keyframes phonering-alo-circle-img-anim {
0% {
-webkit-transform: rotate(0) scale(1) skew(1deg);
}
10% {
-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
}
20% {
-webkit-transform: rotate(25deg) scale(1) skew(1deg);
}
30% {
-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
}
40% {
-webkit-transform: rotate(25deg) scale(1) skew(1deg);
}
50% {
-webkit-transform: rotate(0) scale(1) skew(1deg);
}
100% {
-webkit-transform: rotate(0) scale(1) skew(1deg);
}
}

.list-inline-item{
	margin-bottom: 0.5rem;
}

.page_404{ padding:40px 0; background:#fff; font-family: 'Roboto', serif;}

.page_404  img{ width:100%;}

.page_404  p{ font-weight: 400;	font-size:18px;}

.four_zero_four_bg{
    height: 400px;
    background-position: center;
	background-repeat:no-repeat;
 }
 
 
 .four_zero_four_bg h1{
	font-size:80px;
 }
 
.four_zero_four_bg h3{
	font-size:80px;
 }
			 
.link_404{			 
	color: #fff!important;
	padding: 10px 20px;
	background: #39ac31;
	margin: 20px 0;
	display: inline-block;
	font-weight: 400;	
}
.contant_box_404{ margin-top:-50px;}

.catering-section
{
	background-color: white;
}

.menu_catering{
	min-height: 300px;
	background-color: #dce4e8;
}
.menu_title{
	padding: 15px;
	background-color: #0a2e11;
	color: white;
}
.btn-order{
	display: flex; 
	justify-content: center;
	align-items: center;
}

.menu_title h1{
	font-size: 35px; 
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}
.menu_title h3{
	font-weight: 300;
	font-style: italic;
	color: #ffc851;
}

.menu_title a{
	background-color: #ffc851;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	padding: 0 30px;
	height: 45px;
	line-height: 45px;
	display: block;
	margin: 0;
}
.menu_title a:hover {
	color: #ffc851;
	background-color: #1a4d24;
	border-color: #ffc851;
}
.menu{
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	color: #1a4d24;
	padding: 15px;
}


#divAdLeft{width: 120px; line-height:30px; position: fixed;overflow:hidden; left:0px !important;}
#divAdRight{width: 120px; line-height:30px; position: fixed;overflow:hidden;right:0px !important;}
#divAdLeft img,#divAdRight img{ width:120px}

@media (max-width: 995px){
	.menu_title h1{
		font-size: 30px;
	}
	.menu_title h3{
		font-size: 20px;
	}
	.note{
		padding-top: 15px;
	}
	#txt-title{
		font-size: 2.0rem;
	}
	.btn-search-menu{
		padding-bottom: 15px;
	}
	#title_menu_custom{
		width: 90%;
	}
}

.total-amount{
	margin-top: 25px;
	min-height: 50px;
	background-color: #1a4d24;
	padding: 10px;
	margin-bottom: 15px;
}
.total-amount h3{
	color: #fff;
}
.total-amount span{
	color: #ffc851;
	font-size: 30px;
	font-weight: 600;
}

.form-cartering input{
	background-color: #fff;
	border-radius: 0;
	padding: 20px 10px;
	box-shadow: none;
	border: 2px solid #C0C0C0;
}
.form-cartering select{
	background-color: #fff;
	border-radius: 0;
	height:45px;
	box-shadow: none;
	border: 2px solid #C0C0C0;
}
.form-cartering textarea{
	background-color: #fff;
	border-radius: 0;
	padding: 20px 10px;
	box-shadow: none;
	border: 2px solid #C0C0C0;
}
.form-cartering input:focus{
	border-color: #ffc851;
	box-shadow: none;
	outline: none;
}
.form-cartering select:focus{
	border-color: #ffc851;
	box-shadow: none;
	outline: none;
}
.form-cartering textarea:focus{
	border-color: #ffc851;
	box-shadow: none;
	outline: none;
}

.modal-body p{
	font-weight: 400;
}

.menu_filter{
	padding-top: 15px;
}
.menu_filter select{
	background-color: #fff;
	border-radius: 0;
	height:45px;
	box-shadow: none;
	border: 2px solid #C0C0C0;
}
.menu_filter select:focus{
	border-color: #ffc851;
	box-shadow: none;
	outline: none;
}
.menu_filter input{
	background-color: #fff;
	border-radius: 0;
	height:45px;
	box-shadow: none;
	border: 2px solid #C0C0C0;
}
.menu_filter input:focus{
	border-color: #ffc851;
	box-shadow: none;
	outline: none;
}
.menu_filter button{
	background-color: #ffc851;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	padding: 0 30px;
	height: 45px;
	line-height: 45px;
	display: block;
	margin: 0;
	border-width: 0px;
	width: 100%;
}
.menu_filter button:hover {
	color: #ffc851;
	background-color: #1a4d24;
	border-width: 0px;
}

.bttn_style_3
{
    font-family: 'Roboto',sans-serif;
    letter-spacing: 3px;
    background-color: #ffc851;
    color: white;
    line-height: 45px;
    display: inline-block;
    padding: 0 25px;
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    border: 2px solid #ffc851;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bttn_style_3:before 
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #1a4d24;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.bttn_style_3:hover:before 
{
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.bttn_style_3:hover 
{
    color: #ffc851;
    border-color: #0a2e11;
}

.img_4_3{
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}
.img_16_9{
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}

