/*------------------------------------------------------------------

    File Name: style.css
    Template Name: Zom - Responsive HTML5 Template
    Created By: htmldotdesign
    Envato Profile: https://themeforest.net/user/htmldotdesign
    Website: https://html.design
    
-------------------------------------------------------------------*/


/*------------------------------------------------------------------

    [Table of contents]

    1. import fonts
    2. basic
    3. loader
    4. header
       - menu
    5. top section
        - slider
        - Animation delays 
        
    6. inner section 
       
    7. newsletter      
    8. footer
         - footer bottom
    9. inner page
        - about page
        - food page
        - pagess
            - faq page
            - pricing page
            - 404page page
        - restaurants page
        - blog page
            - blog_detail page
        - contact page


-------------------------------------------------------------------*/


/*------------------------------------------------------------------
    1. IMPORT FONTS
-------------------------------------------------------------------*/

@import url('css1.css');
@import url('css2.css');
@import url('css3.css');
@import url('css4.css');

/*------------------------------------------------------------------
    2. BASIC
-------------------------------------------------------------------*/

.orbit-font {
    font-family: 'Orbitron', sans-serif !important;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 14px;
    color: #111;
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

h2.heading_main {
    text-transform: uppercase;
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 50px;
    margin: 0 0 50px 0;
}

p {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 300;
    line-height: normal;
    margin: 0 0 50px 0;
}

p.small {
    font-size: 16px;
    line-height: normal;
}

section .container {
    position: relative;
    z-index: 1;
}

.btn_main {
    width: 210px;
    text-align: center;
    height: 58px;
    background: #1a1a1a;
    float: left;
    line-height: 58px;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    transition: ease all 0.2s;
}

.btn_main:hover,
.btn_main:focus {
    background: #41adb2;
    color: #fff;
}

.color_blog {
    height: 400px;
    background: #f2e5d5;
    width: 100%;
}

#logo_img {
    transition: ease-in all 0.2s;
}

.span95 {
    width: 95%;
}

.text_align_center {
    text-align: center;
}

.d_flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.img-responsive {
    max-width: 100%;
}

.white_text h1,
.white_text h2,
.white_text h3,
.white_text h4,
.white_text h5,
.white_text h6,
.white_text p,
.white_text span,
.white_text strong {
    color: #fff;
}

.full {
    float: left;
    width: 100%;
}

.center {
    display: flex;
    justify-content: center;
}


/*------------------------------------------------------------------
    3. loader
-------------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    background: #537c0e;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    box-sizing: border-box;
    animation: animate 2s linear infinite;
    background-image: url(../image/loader_img.png);
    background-size: 100% auto;
}

.loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    animation: animatebg 2s linear infinite;
    border-radius: 100%;
    opacity: 1;
}

@keyframes animate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes animatebg {
    0% {
        transform: scale(0);
    }
    25% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(0);
    }
}


/*------------------------------------------------------------------
    4. header
-------------------------------------------------------------------*/

.header {
    padding: 16px 35px 16px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: rgba(76, 119, 4, 0.9);
}

.header_info {
    float: right;
    padding: 14px 0 0;
}

.header_info ul {
    list-style: none;
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
}

.header_info ul li {
    display: inline;
    float: left;
}

.header_info ul li {
    margin-left: 65px;
}

.header_info i {
    font-size: 22px;
    color: #fff;
}

.logo {
    float: left;
    width: 100%;
    padding: 14px 0 14px;
}

.logo a {
    float: left;
}

.logo img {
    float: left;
}


/*----------------------------
    menu
-----------------------------*/

.menu_section .navbar {
    padding: 0;
}

#main_menu {
    padding: 15px 0 0;
}

#main_menu ul li {
    margin: 0 30px;
}

#main_menu ul li a {
    margin: 0;
    padding: 0;
    transition: ease all 0.2s;
}

#main_menu ul li a:hover,
#main_menu ul li a:focus {
    color: #f8d63b;
}

#main_menu ul li.active a {
    color: #f8d63b;
}

.navbar ul li a {
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    padding: 0;
    letter-spacing: 0.5px;
}

.header_info ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    padding-top: 0;
    line-height: 23px;
    margin: 0;
}

.social-part .fa {
    padding-right: 20px;
}

.header_info ul li a img {
    margin-right: 10px;
}

.btn-group a.active {
    color: #f8d63b;
}

.menu_page {
    padding-top: 20px;
    background: #252424;
    margin-top: 8px;
    border-radius: 0;
    border-top: #ddd solid 2px;
}

.menu_page .dropdown-item {
    font-size: 15px;
    padding-bottom: 10px !important;
    text-transform: none;
    background: transparent !important;
}

.menu_page .dropdown-item.active {
    color: #f8d63b;
}


/*------------------------------------------------------------------
   5.  top section
-------------------------------------------------------------------*/

#top_section {
    background-image: url('../image/bg_top.png');
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 85px;
    position: relative;
}

#top_section::before {
    background-image: url('../image/top_side1.png');
    width: 373px;
    height: 485px;
    content: "";
    display: block;
    top: 85px;
    position: absolute;
    left: 0;
}

#top_section::after {
    background-image: url('../image/bottom_side1.png');
    width: 389px;
    height: 305px;
    content: "";
    display: block;
    bottom: 0px;
    position: absolute;
    right: 0;
}


/*----------------------------
    slider
-----------------------------*/

.container {
    padding: 10px 15px;
}

#slider_animation .carousel-indicators {
    bottom: 0;
}

#slider_animation .carousel-control.right,
#slider_animation .carousel-control.left {
    background-image: none;
}

#slider_animation .carousel-item {
    min-height: calc(90vh - 85px);
    height: 100%;
    width: 100%;
}

#slider_animation .carousel-caption h3,
#slider_animation .carousel .icon-container,
#slider_animation .carousel-caption button {
    background-color: #09c;
}

#slider_animation .carousel-caption h3 {
    padding: .5em;
}

#slider_animation .carousel .icon-container {
    display: inline-block;
    font-size: 25px;
    line-height: 25px;
    padding: 1em;
    text-align: center;
    border-radius: 50%;
}

#slider_animation .carousel-caption button {
    border-color: #00bfff;
    margin-top: 1em;
}


/*----------------------------
    Animation delays
-----------------------------*/

#slider_animation .carousel-caption h3:first-child {
    animation-delay: 1s;
}

#slider_animation .carousel-caption h3:nth-child(2) {
    animation-delay: 2s;
}

#slider_animation .carousel-caption button {
    animation-delay: 3s;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
}

.p {
    padding-top: 125px;
    text-align: center;
}

.p a {
    text-decoration: underline;
}

.slider_arrow {
    float: left;
    position: absolute;
    right: 325px;
    bottom: -31px;
    display: flex;
    align-items: center;
    z-index: 15;
}

.slider_arrow span {
    position: relative;
}

#slider_animation .carousel-control-prev,
#slider_animation .carousel-control-next {
    width: 65px;
    height: 65px;
    background: #1f1f1e;
    opacity: 1;
    border-radius: 100%;
    color: #fff;
    position: relative;
    margin: 0 1px;
    float: left;
    transition: ease-in all 0.2s;
    z-index: 1;
    font-size: 28px;
}

#slider_animation .carousel-control-prev:hover,
#slider_animation .carousel-control-next:hover,
#slider_animation .carousel-control-prev:focus,
#slider_animation .carousel-control-next:focus {
    background: #6d8c04;
    color: #fff;
}

#slider_animation .carousel-caption {
    position: relative;
    left: 0;
    z-index: 10;
    padding-top: 0;
    padding-bottom: 0;
    color: #fff;
    text-align: center;
    top: 0;
}

#slider_animation .carousel-inner {
    overflow: inherit;
}

.food_blog {
    width: 275px;
    height: 275px;
    border-radius: 100%;
    border: none;
    transition: ease all 0.5s;
    position: relative;
}

.food_blog:after {
    width: 275px;
    height: 275px;
    border-radius: 100%;
    border: dotted #fff 3px;
    animation: animate-rotate_border 2s linear infinite;
    transition: ease all 0.5s;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: block;
}

.food_blog img {
    transition: ease all 0.3s;
}

.position_1_blog img {
    width: 275px;
    margin-top: 15px;
}

.position_2_blog img {
    width: 185px;
}

.position_3_blog img {
    width: 220px;
    margin-top: 15px;
}

.position_4_blog img {
    width: 230px;
    margin-top: 15px;
}

.position_5_blog img {
    width: 225px;
}

.food_blog span {
    float: left;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.food_blog:hover img,
.food_blog:focus img {
    transform: scale(1.6);
}

.position_2_blog {
    top: 90px;
}

.position_3_blog {
    top: 35px;
}

.position_4_blog {
    top: 2px;
    left: 75px;
}

.position_5_blog {
    top: 50px;
    right: 80px;
}

.slider_text {
    padding-top: 210px;
}

#slider_animation {
    padding-top: 10vh;
}

.slider_text h2 {
    font-size: 81px;
    text-transform: uppercase;
    margin: 0;
    line-height: 81px;
    font-weight: 600;
    text-align: left;
}

.slider_text h2 span {
    color: #151212;
}

.slider_text p {
    font-size: 17px;
    color: #fff;
    font-weight: 300;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 40px;
}

.slider_text .order_button {
    width: 275px;
    height: 72px;
    float: left;
    background: #1a1816;
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 72px;
    letter-spacing: 0.2px;
    cursor: pointer;
    color: #fff;
}

.slider_text .order_button:hover,
.slider_text .order_button:focus {
    color: #fff;
}


/*------------------------------------------------------------------
   6. inner section 
-------------------------------------------------------------------*/

.inner_section {
    margin: 0;
    padding: 0;
}

.product_section {
    background: url('../image/bg_light.png');
    background-size: cover;
    padding-bottom: 90px;
}

.product_details h3 {
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 300;
    margin: 20px 0 0 0;
    line-height: normal;
    text-transform: uppercase;
}

.theme_color {
    color: #6d8e09;
}

.btn_add {
    width: 83px;
    height: 28px;
    background: #6d8e09;
    line-height: 28px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    justify-content: center;
    margin: 10px auto 0;
    transition: ease all 0.2s;
}

.btn_add:hover,
.btn_add:focus {
    background: #111;
    color: #fff;
}

.product_circle {
    border: dashed #6d8e09 1px;
    border-radius: 100%;
    width: 350px;
    height: 350px;
}

.product_circle {
    border: dashed #6d8e09 1px;
    border-radius: 100%;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.product_circle::before {
    content: "";
    border-left: dashed #6d8e09 1px;
    height: 580px;
    position: absolute;
    left: 0px;
    bottom: 300px;
}

.product_blog_s1.product_blog_first_::after {
    content: "";
    border-left: dashed #6d8e09 1px;
    height: 1080px;
    position: absolute;
    left: 0;
    top: 0;
}

.product_blog_s1.pr_mrgin_1.bl2 .product_circle:after {
    content: "";
    border-left: dashed #6d8e09 1px;
    height: 580px;
    position: absolute;
    left: 0;
    bottom: 0px;
}

.product_blog_s1 {
    margin-top: 394px;
    max-width: 350px;
    position: relative;
}

.product_blog_s1.ps2 {
    margin-top: 200px;
    margin-left: 0;
    float: left;
}

.product_blog_s1.ps2 .product_circle::before {
    content: "";
    border-left: dashed #6d8e09 1px;
    height: 376px;
    position: absolute;
    left: 0;
    bottom: 310px;
}

.see_more_bt {
    width: 185px;
    height: 55px;
    float: left;
    background: #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 55px;
    cursor: pointer;
    color: #fff;
    text-align: center;
    transition: ease-in all 0.5s;
}

.see_more_bt:hover,
.see_more_bt:focus {
    background: rgba(76, 119, 4, 1);
    color: #fff;
    transition: ease-in all 0.5s;
}

h4 {
    font-size: 22px;
    font-weight: 300;
    margin: 0;
    line-height: normal;
}

h3 {
    color: #1a1a1a;
    font-size: 40px;
    font-weight: 700;
    margin: 10px 0 5px 0;
    line-height: 40px;
}

.information_sec {
    padding-top: 250px;
    width: 400px;
    left: 25px;
    position: relative;
}

.information_sec p {
    font-size: 17px;
    margin: 20px 0 40px 0;
}

.product_blog_s1.pr_mrgin_1.bl2 {
    position: relative;
    margin-top: 110px;
    left: 0;
}

.product_blog_s1.pr_mrgin_1.bl3 {
    position: relative;
    margin-top: 110px;
    left: 0;
}

.product_blog_s1.pr_mrgin_1.bl3 {
    position: relative;
    margin-top: -100px;
    left: 0;
}

.product_blog_s1.pr_mrgin_1.bl2.third .product_circle::after {
    display: none;
}

.inner_section .col-md-4 {
    margin: 0 -15px 0 -16px;
}


/*------------------------------------------------------------------
  7. newsletter 
-------------------------------------------------------------------*/

.subcribe_section {
    border: dotted #6d8e09 1px;
    height: 185px;
    padding: 62px 25px;
}

.subcribe_section h3 {
    color: #181818;
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    padding: 9px 0;
}

.form_subsribe form {
    float: left;
    width: 100%;
    display: flex;
    box-shadow: 0 0px 70px -10px rgba(0, 0, 0, .15);
}

.form_subsribe form fieldset {
    width: 100%;
    display: contents;
    justify-content: center;
}

.form_subsribe form fieldset input {
    width: 100%;
    height: 58px;
    border: none;
    padding: 0 25px;
    font-weight: 400;
    font-size: 15px;
}

.form_subsribe form fieldset input:focus {
    border: none;
}

.form_subsribe form fieldset button {
    background: #6d8e09;
    color: #fff;
    border: none;
    width: 65px;
    font-size: 21px;
}

@keyframes animate-rotate_border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.subcribe {
    padding: 50px 0;
    background: #fff;
}


/*------------------------------------------------------------------
  8. footer 
-------------------------------------------------------------------*/

footer {
    background: #252424;
    padding: 90px 0 25px;
}

.footer_link {
    width: 100%;
    float: left;
}

.footer_link ul {
    margin: 0;
    padding: 0 0 30px 0;
    list-style: none;
    display: flex;
    float: left;
    width: 100%;
    justify-content: center;
}

.border_bottom1 {
    border-bottom: solid rgba(255, 255, 255, .1) 1px;
}

.footer_link ul li {
    float: left;
    margin: 0 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}

.footer_link ul li:nth-child(1) {
    display: none;
}

.footer_link ul li a {
    color: #fff;
    transition: ease all 0.5s;
}

.footer_link ul li a:hover,
.footer_link ul li a:focus {
    color: #6d8e09;
}

.footer_link ul li img {
    margin-right: 10px;
}

.col-md-10 .footer_link ul {
    padding-top: 40px;
}

.col-md-10 .footer_link ul li {
    margin: 0 35px;
}


/*---------------------
   footer bottom
-----------------------*/

p.cpy {
    float: left;
    margin: 30px 0 0;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    width: 100%;
    color: #555;
}

p.cpy a {
    color: #555;
}

p.cpy a:hover,
p.cpy a:focus {
    color: rgba(76, 119, 4, 0.9);
}


/*------------------------------------------------------------------
   9. inner page
-------------------------------------------------------------------*/

.inner_page #top_section::after,
.inner_page #top_section::before {
    display: none;
}

.inner_page #top_section {
    height: 350px;
    background-size: 100% 100%;
    background-image: url('../image/inne_bg_top.jpg');
    position: relative;
    background-position: center;
    background-attachment: inherit;
}

.inner_page .slider_text {
    padding-top: 64px;
}

.inner_page .slider_text h2 {
    color: #fff;
    text-align: center;
    font-size: 66px;
}

.inner_page .slider_text h2 span {
    color: #e0c82e;
}


/*--------------------------
   about page
----------------------------*/

.about_left {
    background-image: linear-gradient(to right, #fff0 51%, #587e08c7 50%);
    padding: 70px 0;
}

.about_right {
    background-image: linear-gradient(to right, #587e08c7 51%, #fff0 50%);
    padding: 70px 0;
}

.title_heading h3 {
    text-transform: uppercase;
    padding-bottom: 10px;
}

.about_img figure {
    margin: 0;
}

.about_right .title_heading {
    padding-left: 60px;
}


/*--------------------------
   food page
----------------------------*/

.food_top_section .title_heading p {
    margin: 0
}

.food_right_img figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    transition: ease-in all 0.5s;
    background: #000000;
}

.food_right_img figure img {
    transition: ease-in all 0.5s;
}

.food_right_img figure img:hover {
    transform: scale(1.2);
    transition: ease-in all 0.5s;
    opacity: 0.4;
}

.food_section {
    margin-top: 75px;
}

.food_img {
    margin-bottom: 30px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.food_img figure {
    margin: 0;
    position: relative;
    background: #000000;
}

.food_img figure img {
    transition: ease-in all 0.5s;
    width: 100%;
}

.food_img figure img:hover {
    transition: ease-in all 0.5s;
    opacity: 0.4;
}

.spr {
    margin-top: 20px;
}

.foodshoc {
    transition: ease-in all 0.5s;
    margin-top: 30px;
    position: relative;
}

.foodshoc:hover {
    transition: ease-in all 0.5s;
    box-shadow: 0 5px 23px 0 rgba(0, 0, 0, .5);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.foodshoc figure {
    margin: 0;
    background: #000;
}

.foodshoc figure img {
    transition: ease-in all 0.5s;
    border: #fff solid 12px;
    box-shadow: 0 0 16px rgba(0, 0, 0, .15);
}

.foodshoc figure img:hover {
    opacity: 0.9;
    transition: ease-in all 0.5s;
}

.food_text {
    position: absolute;
    bottom: 41px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.food_text h4 {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 25px;
}

.food_text span {
    color: #fff;
    background: #537c16;
    font-size: 22px;
    line-height: 19px;
    width: 90px;
    padding: 9px;
    text-align: center;
    border-radius: 5px;
}


/*--------------------------
  faq page
----------------------------*/

.bor_no {
    border: inherit;
}

.bor_no .card-header {
    padding: 0;
    background: inherit;
    border: inherit;
}

.card-header>a {
    background: #6d8e09;
    border-radius: 29px !important;
    border: inherit;
    margin-bottom: 13px;
    padding: 17px 20px;
    width: 100%;
    float: left;
}

.card-header>a[aria-expanded="true"] {
    background: #252424;
}

.variat {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
}

.variat i {
    text-align: right;
    float: right;
    margin-top: 2px;
}

.bor_no .card-body p {
    border-left: 1px dashed #6d8e09;
    color: #707070;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 300;
    padding-left: 25px;
}


/*--------------------------
  price page
----------------------------*/

.price_section {
    padding-top: 50px;
}

.priceing_box {
    background: #fff;
    box-shadow: 0 0 16px rgba(0, 0, 0, .23);
    transition: ease-in all 0.5s;
    padding-bottom: 35px;
    margin-top: 30px;
}

.priceing_box:hover {
    transform: scale(1.01);
    transition: ease-in all 0.5s;
}

.priceing_header {
    background: #5d841b;
    box-shadow: #ddd 0px 4px 3px -2px;
}

.priceing_header h4 {
    color: #fff;
    font-weight: 600;
    padding: 12px 0px;
    font-family: 'Courgette', cursive;
}

ul.priceing_content {
    margin: 18px 0 23px 0;
    padding-left: 0;
}

ul.priceing_content li {
    color: #000;
    font-size: 17px;
    list-style: none;
    line-height: 40px;
    border-bottom: #5d841b solid 1px;
}

.priceing_box p {
    color: #000;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 30px;
    padding: 0 10px 0 10px;
}

.price_btn {
    margin: 0 auto;
    display: block;
    float: inherit;
    border-radius: 20px;
    width: 170px;
    height: 50px;
    line-height: 50px;
}

.news {
    padding-top: 45px;
}

.news .title_heading {
    text-align: center;
}

.news .title_heading h3 {
    padding-bottom: 10px;
}

.news_se_main {
    padding-top: 30px;
}

.news_img figure {
    margin: 0;
}

.news_img figure img {
    border-radius: 50px 0px;
}

.news_text h4 {
    font-weight: 600;
    text-transform: uppercase;
    color: #5d841b;
    padding-bottom: 5px;
    line-height: 20px;
}

.news_text span {
    font-weight: 600;
    font-size: 17px;
    padding-bottom: 10px;
    display: block;
}

.news_text p {
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 10px;
}

.news_text strong {
    color: #5d841b;
    font-size: 21px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    line-height: 18px;
}

.news_text .price_btn {
    float: left;
    width: 114px;
    height: 36px;
    line-height: 36px;
    font-size: 15px;
}


/*--------------------------
  faq page
----------------------------*/

.error h4 {
    font-size: 30px;
    color: #000;
    line-height: 36px;
    font-weight: 600;
    position: relative;
    padding-top: 30px;
    margin-bottom: 20px;
}

.error p {
    color: #707070;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

.error .see_more_bt {
    float: inherit;
    margin: 0 auto;
    display: block;
}


/*--------------------------
  restaurants page
----------------------------*/

.restaurants_section {
    padding-top: 70px;
}

.restaurants_box {
    margin-bottom: 30px;
}

.restaurants_box figure {
    margin: 0;
}

.restaurants_box figure img {
    border-radius: 70%;
    margin: 0 auto;
    border: #6d8e09 solid 10px;
}

.restaurants_box_bott {
    padding: 0px 17px;
}

.restaurants_box_bott span {
    font-size: 30px;
    font-weight: 500;
    transition: ease-in all 0.5s;
    padding-top: 20px;
    display: block;
    color: #6d8e09;
    line-height: 38px;
}

.restaurants_box_bott h4 {
    font-size: 23px;
    font-weight: 500;
    transition: ease-in all 0.5s;
    color: #151212;
}

.restaurants_box_bott p {
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 0px;
    margin-bottom: 0px;
    display: block;
}

#slideshow {
    margin: 0;
    position: relative;
    height: 615px;
    margin-top: 37px;
}

#slideshow>div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#slideshow img {
    width: 100%;
    margin: 0;
    height: 615px;
}

.hidden {
    display: none;
}

.team_main {
    margin-top: 55px;
}

.team_main .title_heading h3 {
    padding-bottom: 10px;
}

.team {
    margin-top: 30px;
}

.team figure {
    margin: 0;
}

.team figure img {
    border-radius: 70%;
    margin: 0 auto;
    border: #ddd solid 10px;
}

.team_name {
    padding: 0px 17px;
}

.team_name span {
    font-size: 30px;
    font-weight: 500;
    transition: ease-in all 0.5s;
    padding-top: 20px;
    display: block;
    color: #6d8e09;
}

.team_name h4 {
    font-size: 23px;
    font-weight: 500;
    transition: ease-in all 0.5s;
    color: #151212;
    padding-top: 20px;
}

.team_name p {
    margin-bottom: 0;
    border-bottom: #5a7e15 solid 6px;
    margin-top: 10px;
}


/*--------------------------
  blog page
----------------------------*/

.blog_section {
    padding-top: 82px;
}

.blog_box {
    background: #fff;
    transition: ease-in all 0.5s;
}

.blog_box:hover {
    box-shadow: 0 0 9px 0 #e1ca3196;
    transition: ease-in all 0.5s;
}

.blog_box figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    transition: ease-in all 0.5s;
    background: #000000;
}

.blog_box figure img {
    transition: ease-in all 0.5s;
}

.blog_box figure img:hover {
    transform: scale(1.2);
    transition: ease-in all 0.5s;
    opacity: 0.4;
}

.blog_box_bott {
    padding: 0px 17px;
}

.blog_box_bott span {
    font-size: 30px;
    font-weight: 500;
    transition: ease-in all 0.5s;
    padding-top: 20px;
    display: block;
    color: #6d8e09;
}

.blog_box_bott h4 {
    font-size: 23px;
    font-weight: 500;
    transition: ease-in all 0.5s;
    color: #6d8e09;
}

.blog_box_bott h4:hover,
.blog_box_bott span:hover {
    color: #000000;
    transition: ease-in all 0.5s;
}

.blog_box_bott p {
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 35px;
    display: block;
}


/*----------
 delight
-------------*/

.delight {
    padding: 0 30px;
}

.delight .title_heading p {
    margin: 0
}

.delight_img {
    margin-top: 30px;
}

.delight_img figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    transition: ease-in all 0.5s;
    background: #000000;
}

.delight_img figure img {
    transition: ease-in all 0.5s;
}

.delight_img figure img:hover {
    transform: scale(1.2);
    transition: ease-in all 0.5s;
    opacity: 0.4;
}


/*--------------------------
  blog_detail page
----------------------------*/


/*search_form*/

.search_form .search_btn {
    position: absolute;
    top: 11px;
    right: 29px;
    border-radius: 0;
    padding: 0;
    background: transparent;
    border: inherit;
    font-size: 19px;
    color: #456b04;
}

.search_form .form_control:focus {
    border-color: #456b04;
    box-shadow: #456b04 0 0 2px 0px;
}

.search_form .form_control {
    margin-bottom: 30px;
    padding: 0 15px;
}


/*RECENT BLOG*/

.blog_post {
    border: #ddd solid 1px;
    margin-bottom: 30px;
    background: #fff;
}

.blog_post h4 {
    border-bottom: 1px solid #e5e5e5;
    padding: 24px 15px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

ul.list_post {
    margin: 0;
    padding: 0;
}

ul.list_post li {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tilte_post {
    margin-left: 15px;
}

.tilte_post h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 0px;
    line-height: 17px;
    color: #000;
}

.tilte_post span {
    margin: 0 0 5px;
    font-size: 12px;
    color: #b3b3b3;
    font-weight: 400;
    display: inline-block;
}

.tilte_post p {
    margin: 0;
    font-size: 14px;
    color: #696969;
    font-weight: 400;
    font-size: 12px;
}


/*gallry*/

ul.gallry li {
    border-bottom: inherit;
}

ul.gallry li img {
    margin: 2px;
}


/*tags*/

ul.tags {
    padding-left: 0;
    margin-bottom: 0;
}

ul.tags li {
    padding: 15px 15px 5px 15px;
    list-style: none;
}

ul.tags li a {
    border: 1px solid #e5e5e5;
    margin: 0 10px 10px 0;
    padding: 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #686868;
    display: inline-block;
}

ul.tags li a:hover {
    background: #456b04;
    color: #fff;
}


/*blog_detail_right*/

.blog_right figure {
    margin: 0;
}

.blog_right figure img {
    border: #5d841c solid 5px;
    box-shadow: 0px 0px 13px rgba(229, 216, 156, 0.6);
}

.blog_right_heading {
    padding-top: 40px;
}

.blog_right_heading h4 {
    margin: 0 0 13px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 7px;
}

.blog_right_heading span {
    margin: 0 0 25px;
    font-size: 14px;
    font-weight: 600;
    color: #b1b1b1;
    display: block;
}

.blog_right_heading p {
    margin: 0 0 30px;
    color: #686868;
    font-size: 16px;
}

.sure {
    color: #000;
    padding: 20px;
    background: #f4f2f2;
    border-bottom: #5d841c solid 4px;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
}

ul.social_right {
    padding: 0;
    text-align: right;
    margin-bottom: 35px;
}

ul.social_right li {
    display: inline-block;
}

ul.social_right li a {
    color: #4b4b4b;
    font-size: 20px;
    margin: 0px 5px;
}

ul.social_right li a:hover {
    color: #5d841c;
}

.comment h4 {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 18px;
    border-bottom: 1px solid #E3E3E3;
    margin: 0px;
    color: #000;
}

ul.comm_post {
    padding: 0;
    margin-bottom: 0;
}

ul.comm_post li {
    list-style: none;
    padding: 25px 0;
    border-bottom: 1px solid #E3E3E3;
}

ul.comm_post li:nth-child(4) {
    border-bottom: inherit;
    margin-bottom: 14px;
}

.marg_left30 {
    margin-left: 30px !important;
}

ul.comm_post li img {
    border-radius: 50px;
    float: left;
}

ul.comm_post .tilte_post {
    padding-left: 15px;
    display: flow-root;
}

ul.comm_post .tilte_post span {
    display: flex;
    justify-content: space-between;
}

ul.comm_post .tilte_post span a {
    color: #000;
    font-size: 15px;
    font-weight: 600;
}

ul.comm_post .tilte_post span a:hover {
    color: #5d841c;
}

ul.comm_post .tilte_post p {
    font-size: 14px;
}


/*comment_form*/

.comment_form {
    background: #fff;
    padding: 30px;
    margin-top: 25px;
}

.comment_form .textarea {
    margin-bottom: 20px;
    width: 100%;
    background: #fff;
    color: #021626;
    font-size: 17px;
    font-weight: normal;
    padding: 12px 15px 10px 15px;
    border: inherit;
    height: 155px;
    border: #ddd solid 1px;
    box-shadow: #0000000f 0 0px 3px 0px;
}

.comment_form .send_btn {
    width: 185px;
    height: 55px;
    background: #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 55px;
    color: #fff;
    text-align: center;
    transition: ease-in all 0.5s;
    border: inherit;
    margin: 0 auto;
    display: block;
}

.comment_form .send_btn:hover {
    background: rgba(76, 119, 4, 1);
    transition: ease-in all 0.5s;
    color: #fff;
}

.comment_form .form_control:focus {
    border-color: #456b04;
    box-shadow: #456b04 0 0 2px 0px;
}

.comment_form .textarea:focus {
    border-color: #456b04;
    box-shadow: #456b04 0 0 2px 0px;
}


/*--------------------------
  contact page
----------------------------*/

.contact_main {
    background: #fff;
    -webkit-box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    padding: 40px;
    border-radius: 5px;
    margin-top: 70px;
}

label {
    color: #000000;
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 18px;
    font-weight: 500;
}

.form_control {
    padding: 0px 10px;
    margin-bottom: 20px;
    width: 100%;
    height: 50px;
    background: #fff;
    color: #021626;
    font-size: 16px;
    font-weight: normal;
    border: #ddd solid 1px;
    box-shadow: #0000000f 0 0px 3px 0px;
}

.form_control:focus {
    border: #6d8e09 solid 1px;
}

.contact_main .textarea {
    margin-bottom: 20px;
    width: 100%;
    background: #fff;
    color: #021626;
    font-size: 17px;
    font-weight: normal;
    padding: 12px 15px 10px 15px;
    border: inherit;
    height: 155px;
    border: #ddd solid 1px;
    box-shadow: #0000000f 0 0px 3px 0px;
}

.contact_main .textarea:focus {
    border: #6d8e09 solid 1px;
}

.contact_main .send_btn {
    width: 185px;
    height: 55px;
    background: #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 55px;
    color: #fff;
    text-align: center;
    transition: ease-in all 0.5s;
    border: inherit;
    margin: 0 auto;
    display: block;
}

.contact_main .send_btn:hover {
    background: rgba(76, 119, 4, 1);
    transition: ease-in all 0.5s;
    color: #fff;
}

#request *::placeholder {
    color: #021626;
    opacity: 1;
}

.map_main {
    margin-top: 50px;
}

#map {
    height: 100%;
    min-height: 540px;
}
