/*------------------------------------------------------------------
[Table of contents]
1. HTML5 display-role reset for older browsers
  1.1 css reset
  1.2 global css
2. Header css
3. Banner css
4. About css
5. Today's Special Menu css
6. Our Menu css
7. Video Menu css
8. Everyday's Menu css
9. Team css
10. Food Gallery css
11. Testimonial css
12. Blog css
13. Catering css
14. Reservation css
15. Footer css
16. Copyright css
17. Back To Top css
18. Blog Page css
19. Blog Detail Page css
20. 404 css
21. Element page css
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Galada|Playball|Poppins:300,400,500,600,700');

/* ==================================================
    1. HTML5 display-role reset for older browsers
===================================================== */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a,
input,
button,
select,
textarea {
    outline: none;
}

::-webkit-input-placeholder {
    color: #717171;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #717171;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #717171;
}

:-ms-input-placeholder {
    color: #717171;
}

a {
    outline: none;
    text-decoration: none;
    color: #006400;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: #040404;
}

::-moz-selection {
    color: #fff;
    background: #006400;
}

::selection {
    color: #fff;
    background: #006400;
}


/* 1.1 css reset */

.clear {
    clear: both;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

img {
    max-width: 100%;
    vertical-align: top;
}


/* 1.2 Global CSS */

body {
    margin: 0;
    font-size: 14px;
    color: #686868;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    word-wrap: break-word;
    /*font-family: 'Playball', cursive;*/
    font-family: 'Poppins', sans-serif;
    background-image: url("../images/full-bg.png");
    background-repeat: repeat;
    background-position: center center;
}

h1 {
    font-size: 115px;
    line-height: 100px;
}

h2 {
    font-size: 54px;
    line-height: 64px;
}

h3 {
    font-size: 24px;
    line-height: 34px;
}

h4 {
    font-size: 18px;
    line-height: 27px;
}

h5 {
    font-size: 16px;
    line-height: 27px;
}

h6 {
    font-size: 14px;
    line-height: 27px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 400;
}

p {
    font-size: 14px;
    line-height: 27px;
    margin: 0 0 15px;
}

.mar-top-320 {
    margin-top: 320px;
}

.mar-bottom-25 {
    margin-bottom: 25px;
}

.pad-top-100 {
    padding-top: 90px;
}

.pad-bottom-100 {
    padding-bottom: 91px;
}

.pad-bottom-70 {
    padding-bottom: 70px;
}

.no-pad-left {
    padding-left: 0;
}

.no-pad-right {
    padding-right: 0;
}

.pr {
    position: relative;
}

.parallax-fix {
    position: relative;
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
    transition-timing-function: ease-in;
    -moz-transition-timing-function: ease-in;
    -webkit-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    background-attachment: fixed !important
}

.parallax-fix .row {
    position: relative;
    z-index: 2;
    height: 100%;
}

.block-title {
    color: #006400;
    margin: 0;
    text-align: center;
    font-family: 'Playball', cursive;
    letter-spacing: 1.62px;
}

.title-caption {
    letter-spacing: 0.16px;
    padding: 20px 120px;
}

.color-white {
    color: #fff;
}

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


/* ===================================
    2. Header CSS
====================================== */

.header-block {
    position: fixed;
    z-index: 11;
    width: 100%;
    top: 0;
    left: 0;
}

.header-block .navbar-default {
    border: 0;
    background-color: transparent;
    margin: 0;
}

.header-block .navbar-brand {
    margin: 0 !important;
    padding: 23px 0 21px;
    display: inline-block;
    line-height: normal;
    font-size: 100%;
    height: 100%;
}

.header-block .menuBar ul li a {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    padding: 43px 0px 15px;
    position: relative;
    margin: 0 20px;
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
    font-weight: 500;
    font-size: 16px;
}

.header-block .menuBar ul li:last-child a {
    margin-right: 0;
}

.header-block .menuBar ul li:first-child a {
    margin-left: 0;
}

.header-block .menuBar ul li a:hover,
.header-block .menuBar ul li a:focus,
.header-block .menuBar ul li.active a {
    color: #fff;
    background-color: transparent;
}

.header-block .menuBar ul li.active a,
.header-block .menuBar ul li.active a:hover,
.header-block .menuBar ul li.active a:focus {
    color: #006400;
    background-color: transparent;
}

.header-block .menuBar ul li.active a::after,
.header-block .menuBar ul li.active a::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.header-block .menuBar ul li.active a::before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.header-block .menuBar ul li a:hover::before,
.header-block .menuBar ul li a:focus::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.header-block .menuBar ul li a::before,
.header-block .menuBar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: center left;
    transform-origin: center left;
    -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.header-block .menuBar ul li a::before {
    background: #b5b5b5;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.header-block .menuBar ul li a::after {
    background: #006400;
}

.navbar-brand>img {
    max-width: 251px;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}

.fixed .navbar-brand>img {
    max-width: 150px;
}

.fixed .menuBar ul li a {
    padding: 30px 0px 13px;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}

.fixed {
    background-color: #040404;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}

.fixed .navbar-brand {
    padding: 14px 0 12px;
}

.menuBar {
    padding: 0 50px;
}


/* ===================================
    3. Banner CSS
====================================== */

.banner {
    display: inline-block;
    height: 768px;
    height: 100vh;
    min-height: 800px;
    background-image: url(../images/banner.jpg);
    background-position: center top;
    background-size: cover;
    padding: 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    vertical-align: top;
}

.banner .container,
.banner .banner-static,
.banner .col-lg-12 {
    height: 100%;
}

.banner-text {
    display: table;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.banner-cell {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
}

.banner-text h1 {
    font-family: 'Galada', cursive;
    letter-spacing: 2.7px;
    position: relative;
    display: inline-block;
}

.banner-text h1 img {
    position: absolute;
    top: 33px;
    left: -24px;
    width: 75px;
}

.banner-text h3 {
    font-size: 34px;
    color: #cdcdcd;
    font-family: 'Galada', cursive;
}

.banner-text p {
    color: #e3e3e3;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 33px;
}

.orange-btn {
    min-width: 219px;
    padding: 16.5px 20px;
    display: inline-block;
    text-align: center;
    font-weight: 800;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1.08px;
    text-transform: uppercase;
    position: relative;
}

.orange-btn.empty-btn {
    background-color: transparent;
    border-color: #006400;
    color: #006400;
}

.orange-btn:hover {
    color: #006400;
}

.orange-btn.empty-btn:hover {
    color: #fff;
}

.banner-buttons .empty-btn {
    margin-left: 16px;
}

.banner-buttons .orange-btn {
    margin-top: 34px;
}

.orange-btn:before {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 2px solid transparent;
}

.orange-btn.empty-btn:before {
    border: 2px solid #006400;
}

.orange-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #006400;
}

.orange-btn.empty-btn:after {
    background: transparent;
    width: 0%;
}

.orange-btn:hover:before {
    border-color: #006400;
}

.orange-btn:hover:after {
    width: 0%;
}

.orange-btn.empty-btn:hover:after {
    background: #006400;
    width: 100%;
}

.banner-text h2 {
    color: #006400;
    font-family: 'Playball', cursive;
    position: relative;
    top: -14px;
    margin-bottom: 7px;
}

.side-img {
    width: 75px;
    display: inline-block;
    height: 14px;
}

.side-img i {
    margin: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    margin-bottom: 1px;
    border: 0;
    border-top: 1px solid #006400;
    height: 1px;
    display: inline-block;
    width: 75px;
    float: left;
}

.side-img i:first-child,
.side-img i:last-child {
    width: 65px;
}

.side-img.left-side-img i:first-child,
.side-img.left-side-img i:last-child {
    width: 65px;
    margin: 0 0 1px 10px;
}

/*banner slider*/
.banner.banner-slides{
    background-color: #000;
    background-image: none;
}
.owl-banner,
.owl-banner .owl-stage-outer,
.owl-banner .owl-stage,
.owl-banner .owl-item,
.owl-banner .item, 
.owl-banner .row {
    height: 100%;
}

.owl-banner .item figure {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.owl-banner .item figure img {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.owl-banner .owl-controls {
    position: absolute;
    width: 100%;
    bottom: 20px;
    left: 0;
    text-align: center;
}

.owl-banner .owl-controls .owl-dot span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #e65b1e;
    border-radius: 50%;
}

.owl-banner .owl-controls .owl-dot {
    display: inline-block;
}

.owl-banner .owl-controls .owl-dot {
    margin: 0 5px;
}

.owl-banner .owl-controls .owl-dot.active span {
    background-color: #fff;
}

/* ===================================
    4. About CSS
====================================== */

.about-block .block-title {
    text-align: left;
}

.about-block h3 {
    font-weight: 800;
    color: #717171;
    position: relative;
    letter-spacing: 0.72px;
    padding: 6px 0 25px;
}

.about-block p {
    font-size: 16px;
    letter-spacing: 0.16px;
}

.about-img img {
    position: absolute;
    top: -9px;
    left: 0;
}

.about-img {
    position: relative;
}

.about-block p:last-of-type {
    margin: 0;
}

.about-block {
    margin-bottom: 15px;
}


/* ===================================
    5. Today's Special Menu CSS
====================================== */

.special-menu-block {
    display: inline-block;
    background-image: url(../images/special-menu-bg.jpg);
    background-position: center top;
    background-size: cover;
    width: 100%;
    position: relative;
    vertical-align: top;
}

.special-menu-block.parallax-fix {
    overflow: visible;
}

.special-menu-block:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.67);
    position: absolute;
    top: 0;
    left: 0;
}

.spcl-text {
    display: inline-block;
    width: 91.5%;
    background-color: #fff;
    padding: 30px 21px;
    /* position: absolute; */
    top: 63%;
    text-align: center;
    border: 10px solid #eaeaea;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: -170px;
}

.spcl-menu .col-lg-4 {
    padding: 0 9px;
}

.spcl-text h4 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.18px;
}

.spcl-text p {
    color: #717171;
    line-height: 23px;
    padding-top: 4px;
    margin-bottom: 18px;
}

.spcl-menu-btm .stars {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    padding: 9px 0 6px;
}

.spcl-menu-btm {
    border-top: 1px dashed rgba(113, 113, 113, 0.33);
    padding-top: 15px;
}

.spcl-menu .item {
    position: relative;
}

.spcl-menu-btm .stars li {
    display: inline-block;
}

.spcl-menu-btm h4 {
    color: #717171;
    display: inline-block;
    width: 100%;
    font-weight: normal;
    font-style: italic;
}

.special-menu-block .owl-controls {
    display: none;
}

.spcl-menu {
    margin-top: 25px;
    padding-bottom: 92px;
    display: inline-block;
}


/* ===================================
    6. Our Menu CSS
====================================== */

.our-menu-block:after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url('../images/our-menu-bottom.jpg');
    background-repeat: no-repeat;
    background-position: bottom left;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.menu-list h3 {
    color: #717171;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.menu-list h5 {
    letter-spacing: 0.16px;
}

.menu-list ul {
    padding: 10px 0 0;
    margin: 0;
    list-style-type: none;
}

.menu-list ul li {
    padding-top: 3px;
}

.menu-list ul li figure {
    display: inline-block;
    width: 75px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    margin-top: 9px;
}

.menu-list ul li figure img {
    border-radius: 50%;
    overflow: hidden;
}

.menu-list ul li .menu-info {
    display: table;
    padding-left: 20px;
    position: relative;
}

.menu-info h5 {
    font-weight: 800;
    color: #717171;
    display: inline-block;
    background-color: #fff;
    z-index: 1;
    position: relative;
    padding-right: 5px;
}

.menu-info h5.menu-price {
    position: absolute;
    top: 3px;
    right: 0;
    padding-left: 5px;
    color: #006400;
}

.menu-info:before {
    content: '';
    background-image: url(../images/dots.jpg);
    background-repeat: repeat-x;
    position: relative;
    display: block;
    height: 3px;
    top: 15px;
}

.our-menu-block .col-lg-6{
	margin:20px 0px;
}
.our-menu-block .col-lg-6:first-of-type,
.our-menu-block .col-lg-6:first-of-type+div {
    margin: 0px 0 0px;
}

.our-menu-list {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 10px solid #006400;
    padding: 30px;
    margin-top: 68px;
    background-image: url('../images/menu-separator.png');
    background-repeat: no-repeat;
    background-position: center center;
}

.our-menu-list:before {
    content: '';
    display: inline-block;
    background-image: url('../images/our-menu-girl.png');
    background-position: top left;
    /* width: 166px; */
    width: 243px;
    min-height: 241px;
    position: absolute;
    background-size: 100%;
    bottom: 100%;
    background-repeat: no-repeat;
    right: -15px;
}

.no-pad-left .menu-list {
    padding-right: 35px;
}

.no-pad-right .menu-list {
    padding-left: 20px;
}


/* ===================================
    7. Video Menu CSS
====================================== */

.video-menu-block {
    display: inline-block;
    background-image: url('../images/video-bg.jpg');
    background-position: center top;
    background-size: cover;
    width: 100%;
    position: relative;
    min-height: 512px;
    vertical-align: top;
}

.video-menu-block:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.74);
    position: absolute;
    top: 0;
    left: 0;
}

.video-menu-block h2 {
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 18px;
}

.video-menu-block h2.block-title {
    text-transform: capitalize;
    font-weight: normal;
    margin: 12px 0 0;
}

.video-menu-block a {
    font-size: 150px;
    line-height: 48px;
    margin-top: 23px;
    display: inline-block;
}

.video-menu-block a:hover {
    color: #006400;
}

.video-menu-block a:active,
.video-menu-block a:focus {
    color: #fff;
    outline: none;
}

#recipe-video {
    position: absolute;
    z-index: 0;
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    /* height: 100%; */
    height: auto;
    background-color: #000;
}

.mfp-iframe-scaler iframe {
    background: transparent;
}

/* ===================================
    8. Everyday's Menu CSS
====================================== */

.tab-content .item figure {
    margin-bottom: 100px;
}

.tab-menu .nav-tabs>li.active>a,
.tab-menu .nav-tabs>li.active>a:focus,
.tab-menu .nav-tabs>li.active>a:hover {
    border: 0;
    background-color: transparent;
    color: #fff;
}

.tab-menu .nav-tabs > li {
    float: left;
    display: inline-block;
    /*margin: 0;*/
    background-color: #eaeaea;
    overflow: visible;
    margin-bottom: 5px;
}

.tab-menu .nav-tabs {
    border: 0;
    text-align: center;
    margin: 13px auto;
    display: inline-block;
}

.tab-menu .nav>li>a:focus,
.tab-menu .nav>li>a:hover {
    background-color: transparent;
}

.tab-menu .nav-tabs>li>a {
    border: 0;
    color: #717171;
    font-size: 24px;
    font-family: 'Playball', cursive;
    letter-spacing: 1.62px;
    text-transform: capitalize;
    margin: 0 15px;
    overflow: visible;
    font-weight: 400;
}

.tab-menu .nav-tabs>li:first-child>a {
    /* margin-right: 0; */
}

.tab-menu .nav-tabs>li:last-child, .tab-menu .nav-tabs>li:last-child a {
    /*margin-right: 0;*/
    -webkit-transform: skewX(0);
    -moz-transform: skewX(0);
    -ms-transform: skewX(0);
    -o-transform: skewX(0);
    transform: skewX(0);
}

.tab-menu .tab-content > .tab-pane {
    display: block;
    width: 100%;
    position: absolute;
    height: 0;
    top: 0;
}

.tab-menu .tab-content > .active {
    height: auto;
    position: static;
}

.tab-menu .nav-tabs>li>a:after {
    /* content: ''; */
    width: 8px;
    height: 54px;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    top: 0;
    right: -19px;
    transform: skew(-15deg);
    z-index: 1;
}

.tab-menu .nav-tabs>li:last-child>a:after {
    width: 0;
}

.tab-menu .owl-controls {
    position: absolute;
    top: 40%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
}

.tab-menu .owl-controls .owl-prev {
    font-size: 0;
    float: left;
    position: relative;
    left: -90px;
}

.tab-menu .owl-controls .owl-next {
    font-size: 0;
    float: right;
    position: relative;
    right: -90px;
}

.tab-menu .owl-nav .owl-prev:before {
    font-family: FontAwesome;
    content: "\f053";
    display: inline-block;
    font-size: 22px;
    color: #ffffff;
    width: 47px;
    height: 47px;
    background-color: #006400;
    text-align: center;
    line-height: 47px;
}

.tab-menu .owl-nav .owl-next:before {
    font-family: FontAwesome;
    content: "\f054";
    display: inline-block;
    font-size: 22px;
    color: #ffffff;
    width: 47px;
    height: 47px;
    background-color: #006400;
    text-align: center;
    line-height: 47px;
}

.tab-menu .owl-carousel .owl-stage-outer {
    padding: 0 0 30px;
}

.tab-content {
    position: relative;
}

.tab-menu .nav-tabs > li:first-child {
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    position: relative;
    left: 7px;
}

.tab-menu .nav-tabs > li:last-child {
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    position: relative;
    left: -7px;
}

.tab-menu .nav-tabs > li.active {
    background-color: #006400;
}

.tab-menu {
    text-align: center;
}

.tab-menu .nav-tabs li:nth-child(2) a, .tab-menu .nav-tabs li + li:not(:last-child) a {
    -webkit-transform: skewX(15deg);
    -moz-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    -o-transform: skewX(15deg);
    transform: skewX(15deg);
}

.tab-menu .nav-tabs li:nth-child(2), .tab-menu .nav-tabs li + li:not(:last-child) {
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    -o-transform: skewX(-15deg);
    transform: skewX(-15deg);
    border-left: 5px solid #ffffff;
    border-right: 5px solid #ffffff;
    position: relative;
    z-index: 1;
    margin: 0 -5px;
}


/* ===================================
    9. Team CSS
====================================== */

.team-block {
    display: inline-block;
    background-image: url(../images/team-bg.jpg);
    background-position: center top;
    background-size: cover;
    width: 100%;
    position: relative;
    vertical-align: top;
}

.team-block:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.50);
    position: absolute;
    top: 0;
    left: 0;
}

.team-info {
    display: table;
    padding: 47px 20px 20px;
    background-color: #fff;
}

.team-text figure {
    display: inline-block;
    float: left;
    max-width: 202px;
    overflow: hidden;
}

.team-text {
    background-color: #fff;
    overflow: hidden;
}

.team-info h3 {
    text-transform: uppercase;
}

.team-info h4 {
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.team-info strong {
    font-weight: 600;
}

.social-icons {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.social-icons li {
    display: inline-block;
    margin-right: 14px;
    font-size: 18px;
}

.team-info h4:after {
    content: '';
    display: block;
    width: 25px;
    height: 5px;
    background-color: #e3e3e3;
    position: absolute;
    bottom: 0;
    left: 0;
}

#owl-team {
    margin-top: 25px;
}

.test-video-box figure {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #006400;
}

.test-video-box figure .test-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 70px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    margin: 0;
    text-align: center;
    width: auto;
    height: auto;
}

.test-video-box figure .test-video-play-icon:active,
.test-video-box figure .test-video-play-icon:focus {
    color: #fff;
    outline: none;
}

.test-video-box figure img {
    opacity: 0.3;
    height: 100%;
    width: 100%;
}

.test-video-box video,
.test-video-box iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.owl-carousel .owl-video-play-icon {
    /*background-color: #717171;*/
    background-image: none;
}

.team-video {
    width: 100%;
    height: 100%;
    background-color: #000;
    display: none;
}

.owl-team-box {
    position: relative;
}

.owl-team-box .owl-controls {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    z-index: -1;
}

.owl-team-box .owl-controls .owl-prev {
    font-size: 0;
    float: left;
    position: relative;
    left: -90px;
    display: block !important;
}

.owl-team-box .owl-controls .owl-next {
    font-size: 0;
    float: right;
    position: relative;
    right: -90px;
    display: block !important;
}

.owl-team-box .owl-nav .owl-prev:before {
    font-family: FontAwesome;
    content: "\f053";
    display: inline-block;
    font-size: 22px;
    color: #ffffff;
    width: 47px;
    height: 47px;
    background-color: #006400;
    text-align: center;
    line-height: 47px;
}

.owl-team-box .owl-nav .owl-next:before {
    font-family: FontAwesome;
    content: "\f054";
    display: inline-block;
    font-size: 22px;
    color: #ffffff;
    width: 47px;
    height: 47px;
    background-color: #006400;
    text-align: center;
    line-height: 47px;
}


/* ===================================
    10. Food Gallery CSS
====================================== */

.food-gallery {
    text-align: center;
    margin-bottom: 23px;
}

.food-gallery-item {
    width: 25%;
    padding: 9px;
    float: left;
    position: relative;
}

.food-gallery-item.wide {
    width: 50%;
}

.food-gallery-item img {
    display: block;
}

.gallery-big-height {
    max-height: 386px;
    overflow: hidden;
}

.gallery-small-height {
    max-height: 193px;
    overflow: hidden;
}

.food-gallery-item a {
    display: inline-block;
    width: 100%;
    height: 100%;
    /*position: relative;*/
    vertical-align: top;
}

.food-gallery-item .image-hover-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    display: block;
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    height: -webkit-calc(100% - 30px);
    height: calc(100% - 30px);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease; 
    background-color: rgba(175, 187, 11, 0.7);
}

.food-gallery-item:hover .image-hover-overlay {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.image-hover-overlay i.fa {
    color: #fff;
    font-size: 50px;
}

.food-gallery-item .image-hover-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    margin-top: -20px;
    margin-left: -20px;
}


/* ===================================
    11. Testimonial CSS
====================================== */

.testimonial-block {
    display: inline-block;
    background-image: url(../images/testimonial-bg.jpg);
    background-position: center top;
    background-size: cover;
    width: 100%;
    position: relative;
    vertical-align: top;
}

.testimonial-block:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.80);
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-slider {
    margin-top: 46px;
}

.testimonial-slider figure {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 10px auto 33px;
}

.testimonial-slider .item {
    width: 82%;
    margin: 0 auto;
}

.testimonial-slider .item p {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.16px;
    margin: 0 0 23px;
}

.testimonial-slider .item h5 {
    text-transform: uppercase;
    letter-spacing: 2.72px;
    font-weight: 700;
}

.testimonial-slider figure img {
    border-radius: 50%;
    border: 4px solid #006400;
}

.testimonial-slider .owl-controls {
    position: absolute;
    top: 50%;
    /*-webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);*/
    width: 100%;
}

.testimonial-slider .owl-controls .owl-prev {
    font-size: 0;
    float: left;
    position: relative;
    left: 0px;
    display: block !important;
}

.testimonial-slider .owl-controls .owl-next {
    font-size: 0;
    float: right;
    position: relative;
    right: 0px;
    display: block !important;
}

.testimonial-slider .owl-nav .owl-prev:before {
    font-family: FontAwesome;
    content: "\f053";
    display: inline-block;
    font-size: 22px;
    color: #ffffff;
    width: 47px;
    height: 47px;
    background-color: #006400;
    text-align: center;
    line-height: 47px;
}

.testimonial-slider .owl-nav .owl-next:before {
    font-family: FontAwesome;
    content: "\f054";
    display: inline-block;
    font-size: 22px;
    color: #ffffff;
    width: 47px;
    height: 47px;
    background-color: #006400;
    text-align: center;
    line-height: 47px;
}

.testimonial-slider .stars {
    padding: 0;
    list-style: none;
    display: inline-block;
    margin: 17px 0 23px;
}

.testimonial-slider .stars li {
    float: left;
    display: inline-block;
    margin: 0 2.5px;
}

.testimonial-slider .stars a:hover {
    color: #fff;
}


/* ===================================
    12. Blog CSS
====================================== */

.blog-box h4 {
    text-transform: uppercase;
    font-weight: 600;
    margin: 27px 0 11px;
}

.blog-box p {
    font-size: 16px;
    margin: 15px 0 0;
    letter-spacing: 0.16px;
}

.blog-box {
    position: absolute;
    top: -45px;
    left: -30px;
    max-width: 570px;
}

.blog-box figure {
    background-color: #000;
    position: relative;
}

.blog-box figure img {
    opacity: 0.8;
}

.blog-box figure:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 97%;
    height: 94%;
    border: 2px solid #fff;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.blog-row {
    display: inline-block;
    width: 100%;
    height: 80%;
    background-color: #fff;
    border: 10px solid #eaeaea;
    padding: 20px;
    margin-bottom: 80px;
}

.blog-row:last-of-type {
    margin-bottom: 20px;
}

.blog-date {
    display: inline-block;
    float: left;
    margin: 0 24px;
    background-color: #006400;
    color: #fff;
    width: 100px;
    height: 74px;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14px;
    padding: 15px 0;
    position: relative;
}

.blog-text {
    display: table;
}

.blog-date span {
    display: block;
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
}

.blog-date:before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 85%;
    height: 85%;
    border: 1px dotted #fff;
    top: 6px;
    left: 5px;
}

.blog-text h4 {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-text hr {
    border-top: 1px dashed rgba(113, 113, 113, 0.20);
}

.blog-text p {
    font-size: 16px;
}

.blog-text p:last-of-type {
    margin: 0;
}

.blog-row-right .blog-box {
    left: auto;
    right: -30px;
}

.blog-row-right .blog-date {
    margin-left: 0;
}

.blog-row-right .blog-text {
    margin-right: 30px;
}

.blog-row:first-of-type {
    margin-top: 28px;
}


/* ===================================
    13. Catering CSS
====================================== */

.catering-block {
    display: inline-block;
    background-image: url(../images/catering-bg.png);
    background-position: center top;
    background-size: cover;
    width: 100%;
    position: relative;
    vertical-align: top;
}

.catering-block:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.60);
    position: absolute;
    top: 0;
    left: 0;
}

.catering-block .orange-btn {
    padding: 22px 26px;
}

.catering-block .block-title {
    margin: 20px 0 47px;
}

.catering-block .col-lg-12 {
    margin: 10px 0;
}


/* ===================================
    14. Reservation CSS
====================================== */

.reservation-block .form-box input,
.reservation-block .form-box textarea,
.reservation-block .form-box select {
    width: 100%;
    border: 2px solid #eaeaea;
    height: 61px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #717171;
    letter-spacing: 0.224px;
    padding: 5px 30px;
    border-radius: 0;
    opacity: 1;
    position: relative;
}

.reservation-block .form-box {
    margin-bottom: 30px;
}

.reservation-block .col-lg-6 .form-box {
    margin-bottom: 10px;
}

.reservation-block .form-box select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background: #fff url(../images/selectDown.png) no-repeat right 23px center;
    background-size: 14px;
    cursor: pointer;
}

.reservation-block .form-box select::-ms-expand {
    display: none;
}

#reservation:before {
    content: '';
    display: inline-block;
    position: absolute;
    background-image: url(../images/reservation-bg.png);
    background-repeat: no-repeat;
    background-position: bottom -70px left -70px;
    width: 100%;
    height: 100%;
    background-size: 25%;
    top: 0;
    left: 0;
}

#reservation {
    position: relative
}

.reserve-book-btn {
    margin: 42px 0 65px;
}

.reservation-block .form-box input::-webkit-input-placeholder {
    color: #717171;
    opacity: 1;
}

.reservation-block .form-box input:-moz-placeholder {
    color: #717171;
    opacity: 1;
}

.reservation-block .form-box input::-moz-placeholder {
    color: #717171;
    opacity: 1;
}

.reservation-block .form-box input:-ms-input-placeholder {
    color: #717171;
    opacity: 1;
}


/* ===================================
    15. Footer CSS
====================================== */

.footer-block {
    display: inline-block;
    background-image: url(../images/footer-bg.png);
    background-position: center top;
    background-size: cover;
    width: 100%;
    position: relative;
    vertical-align: top;
}

.footer-block:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.79);
    position: absolute;
    top: 0;
    left: 0;
}

.footer-title {
    color: #006400;
    letter-spacing: 0.96px;
    margin-bottom: 22px;
    font-family: 'Playball', cursive;
}

.footer-title.color-white {
    color: #fff;
}

.footer-block ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.footer-block ul li a {
    color: #fff;
}

.footer-block ul li {
    letter-spacing: 0.84px;
    line-height: 30px;
}

.footer-block ul li a:hover {
    color: #006400;
}

.footer-block h6 {
    margin-bottom: 13px;
}

.footer-block input[type="email"] {
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
    height: 51px;
    padding: 5px 20px;
    font-weight: 500;
    color: #717171;
    background-color: rgba(255, 255, 255, 0.09);
}

.footer-block input[type="email"]:focus {
    border: 2px solid #006400;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.footer-block .orange-btn {
    padding: 0px 19px;
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 0;
    min-width: inherit;
    height: 51px;
    line-height: 51px;
}

.footer-section {
    width: 70%;
    margin: 0 auto;
}

.footer-block .contact-us i.fa {
    font-size: 20px;
    position: relative;
    top: 4px;
    float: left;
    min-width: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

.footer-block ul li span,
.footer-block ul li a {
    display: table;
    padding-left: 12px;
}

.footer-block .contact-us ul li {
    margin-bottom: 10px;
}

.footer-block .contact-us ul li:last-child {
    margin-bottom: 0;
}

.newsletter form {
    position: relative;
    width: 485px;
    margin: 0 auto;
}

.newsletter p {
    margin-bottom: 33px;
    font-size: 16px;
}

.footer-content {
    display: inline-block;
    width: 100%;
    margin: 93px 0 64px;
}

.footer-content .footer-title {
    font-size: 34px;
    text-transform: capitalize;
}

.opening-hours i.fa {
    font-size: 20px;
    position: relative;
    top: 4px;
    float: left;
    min-width: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

.opening-hours h6 span {
    display: table;
    padding-left: 10px;
    letter-spacing: 0.86px;
}

.footer-block .new-on-menu ul li:before {
    content: '\f105';
    display: inline-block;
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 14px;
    top: -1px;
    left: 0;
}

.footer-block .new-on-menu ul li {
    position: relative;
}

.newsletter .side-img.right-side-img,
.reservation-block .side-img.right-side-img {
    margin-left: 18px;
}


/* ===================================
    16. Copyright CSS
====================================== */

.copyright-block {
    border-top: 2px dotted #fff;
}

.copyright-block .copy-title {
    letter-spacing: 0.84px;
    padding: 11px 0 26px;
    margin: 0;
}

.social-media-icons ul li {
    display: inline-block;
    font-size: 23px;
    vertical-align: top;
}

.social-media-icons ul li a {
    padding: 0 23px;
}

.social-media-icons {
    margin-top: 35px;
}

.copy-title a:hover {
    color: #fff;
}


/* ===================================
    17. Back To Top CSS
====================================== */

.back-to-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: -30px;
    right: 30px;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    white-space: nowrap;
    background-color: #006400;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    transition: all 0.8s ease;
    text-align: center;
    line-height: 40px;
}

.back-to-top:hover,
.back-to-top:focus,
.back-to-top:active {
    background-color: #040404;
}

.back-to-top i {
    color: #fff;
    font-size: 16px;
}

.back-to-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
    bottom: 30px;
}

.back-to-top.cd-is-visible,
.back-to-top.cd-fade-out,
.no-touch .back-to-top:hover {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}


/* ===================================
    18. Blog Page CSS
====================================== */

.inner-banner {
    height: 450px;
    display: inline-block;
    background-image: url(../images/banner.jpg);
    background-position: center top;
    background-size: cover;
    padding: 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-top: 70px;
    vertical-align: top;
}

.inner-banner .container,
.inner-banner .container .col-xs-12 {
    height: 100%;
}

.blog-box.blog-box-img {
    position: static;
    width: 100%;
    max-width: 100%;
}

.blog-list-info {
    display: inline-block;
    width: 100%;
    height: 80%;
    background-color: #fff;
    border: 10px solid #eaeaea;
    padding: 20px;
    vertical-align: top;
}

.blog-list-box {
    margin-top: 55px;
}

.blog-list-box:first-child,
.blog-list-box:nth-child(2) {
    margin-top: 0;
}


/* ===================================
    19. Blog Detail Page CSS
====================================== */

.blog-detail .blog-title {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 5px;
}


/* sidebar */

.widget {
    padding: 25px 20px;
    background-color: #fff;
    margin-bottom: 55px;
    border: 10px solid #eaeaea;
}

.widget:last-child {
    margin-bottom: 0;
}

.sidebar .widget-title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 25px;
    color: #040404;
}

.sidebar .widget_search .widget-title {}

.widget_search {}

.widget_search form {
    position: relative;
}

.widget_search form input {
    width: 100%;
    height: 50px;
    border: 0;
    padding: 5px 60px 5px 20px;
    font-size: 14px;
    color: #737373;
    font-style: italic;
    background-color: #fbfbfb;
    border: 2px solid #eaeaea;
}

.widget_search {}

.widget_search form button {
    background-color: #1e1e1e;
    border: 0;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget_search form button:hover {
    background-color: #006400;
}

.widget_recent_entries img {
    display: inline-block;
    float: left;
    width: 100px;
    height: auto;
}

.widget_recent_entries .bpost {
    display: table;
    padding-left: 15px;
}

.widget_recent_entries .bpost h5 {
    text-transform: uppercase;
    color: #1e1e1e;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 11px;
    transition: .5s all;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    font-weight: 900;
}

.widget_recent_entries .bpost span {
    font-size: 11px;
    color: #1e1e1e;
    text-transform: uppercase;
    margin-right: 8px;
    font-weight: bold;
}

.widget_recent_entries ul li a:hover h5 {
    color: #ed804a;
}

.widget_recent_entries ul li {
    margin-bottom: 35px;
    display: inline-block;
    width: 100%;
}

.widget_recent_entries ul li:last-child {
    margin-bottom: 0;
}

.widget .tagcloud a {
    padding: 5px 19px;
    display: inline-block;
    margin: 0 0 10px 5px;
    background-color: #006400;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.12px;
}

.widget .tagcloud a:hover {
    background-color: #201f1f !important;
    color: #fff !important;
}

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

blockquote {
    background-color: #fbfbfb;
    padding: 20px;
    display: inline-block;
    width: 100%;
    border-left: 3px solid #006400;
}

blockquote p {
    font-style: italic;
}

blockquote h6 {
    display: inline-block;
    float: right;
    font-size: 12px;
    text-transform: uppercase;
    color: #006400;
    font-weight: 600;
    letter-spacing: 0.96px;
}


/* social icons */

.social-icon ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    margin: 25px 0 0;
}

.social-icon ul li a {
    margin: 0 25px;
    color: #c6c6c6;
    text-decoration: none;
    font-size: 23px;
    transition: .5s all;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
}

.social-icon ul li {
    float: left;
}

.social-icon {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.social-icon ul li a:hover {
    color: #006400;
}


/* blog comment */

.blog-comment {
    display: inline-block;
    width: 100%;
    padding-right: 20px;
    padding: 40px 40px 0;
    vertical-align: top;
}

.blog-comment .comment-avtar {
    float: left;
    max-width: 90px;
    margin-right: 25px;
}

.comment-text p {
    font-style: italic;
    color: #737373;
}

.comment-text .comment-date {
    color: #737373;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
    font-style: normal;
}

.comment-date a {
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 900;
    position: relative;
    margin-right: 10px;
}

.comment-date a:hover {
    color: #006400;
}

.blog-comment > .blog-comment {
    padding: 25px 0 0 120px;
}

.comment-text {
    position: relative;
    display: table;
}

.comment-date .comment-reply {
    float: right;
    font-size: 14px;
    color: #006400;
    font-weight: 600;
    margin: 0;
}

.comment-date .comment-reply:hover {
    color: #1e1e1e;
}

.blog-comment > .blog-comment .blog-comment {
    padding-left: 0;
}

.blog-comment-main > .blog-comment:last-child {
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 40px;
}

.blog-comment-form-main {
    background-color: #fff;
    padding: 40px;
}

.blog-comment-form .form-Box .fill-btn {
    width: 252px;
}

.inner-blog-section {
    margin-top: 55px;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    border: 10px solid #eaeaea;
    vertical-align: top;
}

.comment-text p:last-of-type {
    margin: 0;
}

.form-Box input[type="text"],
.form-Box input[type="email"],
.form-Box input[type="passowrd"],
.form-Box textarea {
    width: 100%;
    border: 2px solid #eaeaea;
    height: 61px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #717171;
    letter-spacing: 0.224px;
    padding: 5px 30px;
    border-radius: 0;
    opacity: 1;
    position: relative;
    vertical-align: top;
}

.form-Box textarea {
    height: 150px;
    padding: 20px 30px;
}

.form-Box {
    margin-bottom: 25px;
}

.comment-btn .orange-btn {
    background: #006400;
    border: 2px solid transparent;
}

.comment-btn .orange-btn:hover {
    background-color: transparent;
    border-color: #006400;
}



/* ===================================
    20. 404 page CSS
====================================== */
.error-box h1 {
    font-family: 'Galada', cursive;
    letter-spacing: 2.7px;
    position: relative;
    display: inline-block;
    color: #006400;
    font-weight: bold;
}

.error-box h2 {
    font-size: 39px;
    color: #555555;
    font-weight: 300;
}

.error-box h3 {
    color: #555555;
    font-weight: 300;
    margin-top: 15px;
}

.error-search input {
    border: 2px solid #eaeaea;
    height: 61px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #717171;
    letter-spacing: 0.224px;
    padding: 5px 35px 5px 30px;
    border-radius: 0;
    opacity: 1;
    position: relative;
    width: 100%;
}

.error-search .e-search-icon {
    position: absolute;
    font-size: 20px;
    color: #dad9d9;
    right: 16px;
    top: 17px;
}

.error-search {
    display: inline-block;
    position: relative;
    width: 500px;
    margin-top: 35px;    
    max-width: 100%;
}

.error-search .e-search-icon:hover {
    color: #006400;
}



/* ===================================
    21. 404 page CSS
====================================== */
.element-title {
    text-transform: uppercase;
    color: #040404;
    font-weight: 700;
    margin-bottom: 30px;
}
.e_lists {
    display: inline-block;
    width: 100%;
}
.element-inn {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.e_lists li {
    line-height: normal;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table,
td,
th {
    border: 1px solid #c3c3c3;
    text-align: left;
}

th,
td {
    padding: 8px;
    font-size: 14px;
}

tr:nth-child(even) {
    background-color: #e8e8e8;
}

.ellipsis {
  overflow: hidden;
  position: relative;
  height: 113px;
  /* line-height: 25px; */
  /* margin: 20px; */
  /* border: 5px solid #AAA; */
  }

.ellipsis:before {
    content:"";
    float: left;
    width: 5px;
    height: 113px;
    }

.ellipsis > *:first-child {
    float: right;
    width: 100%;
    margin-left: -5px;
    /* height: 113px; */
    /* overflow: hidden; */
    }       
.ellipsis div p{
    height: 113px;
}


.ellipsis a {
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 105px;
    /* height: 100%; */
    overflow: hidden;
    text-indent: -9999px;
    z-index: 9;
    }
.ellipsis i, .ellipsis:after {
    font-style: normal;
    color: #ccc;
    }

.ellipsis i:before { content: "Read More";}

.ellipsis:after {
    content: "...";
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    float: right;
    position: relative;
    top: -28px;
    left: 100%;
    width: 15px;
    margin-left: -15px;
    padding-right: 5px;
    text-align: left;
    }
@media print{
	#share-buttons{
		display:none;
	}
}
#share-buttons img {
	width: 35px;
	padding: 5px;
	border: 0;
	box-shadow: 0;
	display: inline;
}