/*   
Theme Name: Teppanyaki
Version: 1.0
Description: Teppanyaki - japanese seafood & steakhouse
*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    height: 100%;
}

@font-face {
    font-family: "iconFont";
    src: url("fonts/iconFont/iconFont.eot");
    src: url("fonts/iconFont/iconFont.eot?#iefix")format("embedded-opentype"),
    url("fonts/iconFont/iconFont.woff") format("woff"),
    url("fonts/iconFont/iconFont.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "SegoeUIRegular";
    src: url("fonts/SegoeUIRegular/SegoeUIRegular.eot");
    src: url("fonts/SegoeUIRegular/SegoeUIRegular.eot?#iefix")format("embedded-opentype"),
    url("fonts/SegoeUIRegular/SegoeUIRegular.woff") format("woff"),
    url("fonts/SegoeUIRegular/SegoeUIRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "SegoeUIItalic";
    src: url("fonts/SegoeUIItalic/SegoeUIItalic.eot");
    src: url("fonts/SegoeUIItalic/SegoeUIItalic.eot?#iefix")format("embedded-opentype"),
    url("fonts/SegoeUIItalic/SegoeUIItalic.woff") format("woff"),
    url("fonts/SegoeUIItalic/SegoeUIItalic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "SegoeUIBold";
    src: url("fonts/SegoeUIBold/SegoeUIBold.eot");
    src: url("fonts/SegoeUIBold/SegoeUIBold.eot?#iefix")format("embedded-opentype"),
    url("fonts/SegoeUIBold/SegoeUIBold.woff") format("woff"),
    url("fonts/SegoeUIBold/SegoeUIBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "SegoeUILight";
    src: url("fonts/SegoeUILight/SegoeUILight.eot");
    src: url("fonts/SegoeUILight/SegoeUILight.eot?#iefix")format("embedded-opentype"),
    url("fonts/SegoeUILight/SegoeUILight.woff") format("woff"),
    url("fonts/SegoeUILight/SegoeUILight.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "SegoeUISemiLight";
    src: url("fonts/SegoeUISemiLight/SegoeUISemiLight.eot");
    src: url("fonts/SegoeUISemiLight/SegoeUISemiLight.eot?#iefix")format("embedded-opentype"),
    url("fonts/SegoeUISemiLight/SegoeUISemiLight.woff") format("woff"),
    url("fonts/SegoeUISemiLight/SegoeUISemiLight.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "SegoeUISemiBold";
    src: url("fonts/SegoeUISemiBold/SegoeUISemiBold.eot");
    src: url("fonts/SegoeUISemiBold/SegoeUISemiBold.eot?#iefix")format("embedded-opentype"),
    url("fonts/SegoeUISemiBold/SegoeUISemiBold.woff") format("woff"),
    url("fonts/SegoeUISemiBold/SegoeUISemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

header,nav,section,aside,article,footer{
    display: block;
}

.clear {
    clear: both;
}

.container {
    width: 100%;
    max-width: 1170px;
    min-width: 320px;
    margin: 0 auto;
    padding: 0 15px 0 15px;
}

.main-header {
    width: 100%;
    padding: 35px 0 0 0;
    min-height: 640px;
    background: #ffffff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.main-header .logo {
    width: 100%;
    text-align: center;
}

.top-sep {
    margin-top: 25px;
    width: 100%;
    text-align: center;
}

.top-sep img {
    width: 100%;
    height: auto;
    max-width: 390px;
    max-height: 17px;

}

.top-desc {
    margin-top: 38px;
    font: 17px/26px SegoeUIItalic, Arial, Helvetica, sans-serif;
    text-align: center;
    color: #fff;
    opacity: 0.9;
}

.top-menu-wrapper {
    margin-top: 55px;
    text-align: center;
}

.top-menu {
    list-style: none;
    display: inline-block;
    margin: 0 auto;
}

.top-menu li {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 0 25px;
}

.top-menu li.first {
    padding-left: 0;
}

.top-menu li.last {
    padding-right: 0;
}

.top-menu a {
    display: block;
    color: #D20E14;
    text-decoration: none;
    transition: 0.5s;
}

.top-menu a:hover {
    color: black;
    -webkit-animation: swing 1s ease;
    animation: swing 1s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@-webkit-keyframes swing
{
    15%
    {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
    30%
    {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    50%
    {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
    65%
    {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }
    80%
    {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    100%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes swing
{
    15%
    {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
    30%
    {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    50%
    {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
    65%
    {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }
    80%
    {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    100%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.top-menu li i {
    display: block;
}

.top-menu li span {
    display: block;
    margin-top: 7px;
    font: 17px/20px SegoeUISemiBold,Arial,Helvetica sans-serif;
}

.icon {
    font-family: iconFont;
    font-size: 56px;
    line-height: 56px;
    font-style: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.icon.icon-menu:before {
    content: 'a';
}

.icon.icon-stock:before {
    content: 'b';
}

.icon.icon-gallery:before {
    content: 'c';
    font-size: 47px;
    line-height: 50px;
}

.icon.icon-reserve:before {
    content: 'd';
    font-size: 45px;
    line-height: 50px;
}

.icon.icon-contacts:before {
    content: 'e';
}

.icon.icon-arrow-down:before {
    content: 'f';
}
@-webkit-keyframes ardown {
    0% {
        -webkit-transform:translateY(0) scale(.4);
        transform:translateY(0) scale(.4);
        opacity:0;
    }
    20% {
        opacity:1;
    }
    100% {
        -webkit-transform:translateY(60px) scale(1);
        transform:translateY(60px) scale(1);
        opacity:0;
    }
}

@keyframes ardown {
    0% {
        -moz-transform:translateY(0) scale(.4);
        transform:translateY(0) scale(.4);
        opacity:0;
    }
    20% {
        opacity:1;
    }
    100% {
        -moz-transform:translateY(60px) scale(1.5);
        transform:translateY(60px) scale(1.5);
        opacity:0;
    }
}




.icon.icon-arrow-left:before {
    content: 'g';
}

.icon.icon-arrow-right:before {
    content: 'h';
}

.top-slide-down {

    text-align: center;

}

.top-slide-down a {
    display: inline-block;
    width: 80px;
    height: 120px;
    text-decoration: none;
    color: #fff;
    text-align: center;
}

.top-slide-down a img {
    -moz-animation: ardown 800ms infinite linear;
    -webkit-animation: ardown 800ms infinite linear;
    animation: ardown 800ms infinite linear;
}

.top-slide-down a:hover {
    color: red;
    transition: 0.5s;
}

.main-about {
    width: 100%;
    padding: 70px 0;
    min-height: 640px;
    background: url("images/about_bg_left.png")top left no-repeat,
    url("images/about_bg_right.png") bottom right no-repeat;
;
    background-size: 20.43% auto, 15.93% auto;
border-top: 1px solid #EFEFEF;
}

.s-header-wrapper {
    display: table;
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.s-header {
    width: 30%;
    display: table-cell;
    padding: 0 20px;
    font: 50px/60px SegoeUIRegular, Arial, Helvetica, sans-serif;
    white-space: nowrap;
    color: #1d1d1d;
}

.line-wrapper {
    width: 30%;
    vertical-align: middle;
    display: table-cell;
}

.line {
    width: 100%;
    height: 2px;
    margin-top: 5px;
    background: #a89e9c;
}

.s-desc {
    margin-top: 20px;
    font: 26px/30px SegoeUIItalic, Arial, Helvetica, sans-serif;
    text-align: center;
    color: #86857e;
}

.about-content{
    margin-top: 20px;
    text-align: center;
    font: 17px/24px SegoeUIRegular, Arial, Helvetica, sans-serif;
}

.about-content h2 {
    margin-bottom: 20px;
    font: 26px/30px SegoeUIItalic, Arial, Helvetica, sans-serif;
    text-align: center;
    color: #86857e;
}

.aligncenter {
    display: block;
    margin: 40px auto 0 auto;
}

.main-about h3 {
    margin-top: 20px;
    text-align: center;
    font: 18px/24px SegoeUISemiLight, Arial, Helvetica, sans-serif;
    color: #979797;
}

.main-discount {
    width: 100%;
    padding: 85px 0;
    background: url("images/discount_bg.jpg") center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.discount-wrapper {
    width: 100%;
    display: table;
    min-height: 568px;
}

.discount-photo {
    display: table-cell;
    position: relative;
    width: 39%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.discount-banner {
    position: absolute;
    left: -15px;
    bottom: 20px;
    padding: 30px 12px;
    background: #000;
    width: 240px;
}

.discount-banner h3 {
    color: #FF0101;
    font: 30px/30px SegoeUISemiBold, Arial, Helvetica, sans-serif;
    text-align: center;
}

.discount-banner p {
    color: #FAEC7F;
    font: 24px/26px SegoeUISemiLight, Arial, Helvetica, sans-serif;
    text-align: center;
    margin-top: 10px;
}

.discount-banner p.time {
    color: #FF0101;
}

.discount-content {
    display: table-cell;
    width: 55%;
    padding: 60px 20px 40px 20px;
    background: #fff;
}

.discount-content .s-header-wrapper {
    max-width: 510px;
}

.discount-content .s-header {
    font: 44px/44px SegoeUIRegular, Arial, Helvetica, sans-serif;
}

.discount-desc {
    display: block;
    margin-top: 10px;
    font: 22px/22px SegoeUIItalic, Arial, Helvetica, sans-serif;
    text-align: center;
    color: #86857e;
}

.discount-list {
    margin-top: 45px;
    list-style: none;
    display: block;
}

.discount-list li {
    display: inline-block;
    padding: 10px;
    width: 50%;
    vertical-align: top;
    text-align: center;
}


.discount-list li .name {
    font: 26px/28px SegoeUIRegular, Arial, Helvetica, sans-serif;
}

.discount-list li .price {
    margin-top: 10px;
    font: 18px/20px SegoeUIRegular, Arial, Helvetica, sans-serif;
    color: #3c3c3a;
}

.discount-list li .sep {
    display: block;
    width: 100%;
    max-width: 225px;
    max-height: 14px;
    margin: 10px auto 0 auto;
}

.button-wrapper {
    margin-top: 20px;
    text-align: center;
}

.button {
    display: inline-block;
    background: #f40000;
    padding: 14px 16px;
    font: 20px/20px SegoeUIRegular, Arial, Helvetica, sans-serif;
    color: #fff;
    text-decoration: none;
    margin: 0 auto;
    transition: 0.3s;
}

.button:hover {
    background: #8f360c;
}

.main-menu {
    width: 100%;
    padding: 70px 0;
   
    background: url("images/menu_bg_left.png") bottom left no-repeat,
    url("images/menu_bg_right.png") top right no-repeat, #ffffff ;
;
    background-size: 13.12% auto, 19.94% auto;
}

.menu-wrapper {
    margin-top: 100px;
    width: 100%;
}

.menu-col {
    width: 33.3333333%;
    float: left;
    padding-right: 20px;
}

.menu-col h2 {
    font: 26px/26px SegoeUIBold, Arial, Helvetica, sans-serif;
    text-align: center;
}

.menu-list {
    padding-top: 10px;
    display: block;
    list-style: none;
}

.menu-list li{
    margin-top: 20px;
    display: table;
    width: 100%;
}

.menu-list li .left-col {
    display: table-cell;
    width: 70%;
    padding-right: 10px;
}

.menu-list li .left-col h3 {
    font: 16px/18px SegoeUIBold, Arial, Helvetica, sans-serif;
    color: #333232;
}

.menu-list li .left-col p {
    font: 15px/20px SegoeUIRegular, Arial, Helvetica, sans-serif;
    color: #706b6b;
    margin-top: 10px;
}

.menu-list li .right-col {
    display: table-cell;
    width: 30%;
    vertical-align: bottom;
    font: 15px/18px SegoeUISemiBold, Arial, Helvetica, sans-serif;
    color: #706b6b;
    white-space: nowrap;
}

.view-all-wrapper {
    margin-top: 100px;
    text-align: center;
}

.view-all {
    display: inline-block;
    background: #8f360c;
    padding: 14px 16px 16px 16px;
    font: 24px/24px SegoeUIBold, Arial, Helvetica, sans-serif;
    color: #fff;
    text-decoration: none;
    margin: 0 auto;
    transition: 0.3s;
    cursor: pointer;
}

.view-all:hover {
    background: #f40000;
}

#hidden-menu {
    display: none;
}

.main-form {
    width: 100%;
    padding: 35px 0 100px 0;
    min-height: 640px;
    background: #000 url("images/reserve_bg.jpg") center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.form-header {
    color: #fff;
    font: 40px/40px SegoeUISemiBold, Arial, Helvetica, sans-serif;
    text-align: center;
}

.form-wrapper {
    width: 100%;
    max-width: 828px;
    margin: 90px auto 0 auto;
    border: 2px solid #fff;
    padding: 7px 7px 20px 7px;
}

.form-row {
    margin-top: 20px;
    width: 100%;
}

.form-col3 {
    padding: 0 7px;
    width: 33.33333%;
    float: left;
}

.form-col2 {
    padding: 0 7px;
    width: 50%;
    float: left;
}

.form-col3 label {
    width: 100%;
    display: block;
    font: 16px/16px SegoeUIBold, Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}

.form-input {
    position: relative;
    width: 100%;
}

.form-select {
    width: 100%;
    height: 48px;
}

#date {
    position:relative;
    z-index: 100;
    cursor: pointer;
}

.reserve-button {
    padding: 10px 50px;
    display: inline-block;
    border: 4px solid #fff;
    border-radius: 4px;
    margin: 0 auto;
    cursor: pointer;
    color: #fff;
    font: 20px/20px SegoeUIBold, Arial, Helvetica, sans-serif;
    transition: 0.3s;
    position: relative;
}

.reserve-button:hover {
    background: #ff0000;
    border: 4px solid #ff0000;
}

.reserve-loader {
    display: none;
    position: absolute;
    right: 8px;
    top:5px;
    width: 32px;
    height: 32px;
    background: url("images/ajax-loader.gif");
}

.main-events {
    width: 100%;
    padding: 35px 0;
    background: #000 url("images/slider_bg.jpg") no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.events-header {
    color: #fff;
    font: 40px/40px SegoeUIBold, Arial, Helvetica, sans-serif;
    text-align: center;
}

.events-header a{
    color: #fff;
    text-decoration: none;
    transition: 0.5s;
}

.events-header a:hover{
    color: #ff0000;

}

.slider-wrapper {
    margin: 20px auto 0 auto;
    width: 100%;
    max-width: 598px;
    position: relative;
}

.slider-wrapper .bg{
    width: 100%;
    height: auto;
}

.slider-wrapper .centered{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}


.slider-container {
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
}

.slider-box{
    display: table-cell;
    vertical-align: middle;
    padding-left: 10.2%;
    padding-right: 6% ;
}

.slider {
    width: 100%;
}


.slick-caption {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font: 16px/18px SegoeUIItalic, Arial, Helvetica, sans-serif;
}

.main-blog {
    width: 100%;
    padding: 35px 0;
    min-height: 768px;
    background: #000 url("images/discount_bg.jpg") no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.blog-wrapper {
    width: 100%;
    margin-top: 60px;
}

.blog-col {
    width: 50%;
    float: left;
}

.blog-item {
    display: table;
    width: 100%;
}

.blog-item-photo {
    display: table-cell;
    width: 50%;
    position: relative;
}

.blog-item-photo a:hover img{
    background: #fff;
    opacity: 0.8;
}

.blog-item-photo img{
    display: block;
    width: 100%;
    height: auto;
    transition: 0.3s;
}

.blog-item-text {
    display: table-cell;
    background: #fff;
    vertical-align: top;
    position: relative;
    padding: 15px;
}

.blog-item-text:before {
    content: "";
    display: inline-block;
    min-height: inherit;
    height: 100%;
    vertical-align: middle;
}

.blog-item-text-wrap {
    display: inline-block;
    width: 100%;
    height: 100%;
    margin-left: -4px;
}

.blog-item-text-box {
    display: table;
    width: 100%;
    height: 100%;
}

.blog-item-text-row{
    display: table-row;
    height: 50%;
}

.blog-item-text h3 {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font: 18px/20px SegoeUIRegular, Arial, Helvetica, sans-serif;
    border-bottom: 1px solid #C3C3C3;
    position: relative;
}
.blog-item-text a{
    color: #252221;
    text-decoration: none;
}

.blog-item-text a:hover{
    text-decoration: underline;
}

.blog-item-text p {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font: 14px/16px SegoeUIRegular, Arial, Helvetica, sans-serif;
    color: #676767;
}

.blog-sep {
    display: block;
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 10px;
    height: 10px;
    margin-left:-5px ;
    background: url("images/blog-sep.png");
}

.blog-arrow-left{
    position: absolute;
    right: 0;
    top:20%;
    width: 11px;
    height: 22px;
    background: url("images/blog-arrows.png") 0 0 no-repeat;
}

.blog-arrow-right{
    position: absolute;
    left: 0;
    top:20%;
    width: 11px;
    height: 22px;
    background: url("images/blog-arrows.png") -11px 0 no-repeat;
}

footer {
    background: #000000;
    padding: 40px 0;
    color: #fff;
}

footer .container{
    display: table;
    table-layout: fixed;
}

.f-col1 {
    display: table-cell;
    width: 200px;
    padding: 10px;
    font: 18px/20px SegoeUIRegular, Arial, Helvetica, sans-serif;
    vertical-align: top;
}

.f-col2 {
    display: table-cell;
    width: 100%;
    padding: 0 10px;
    vertical-align: top;
}

.bottom-nav {
    list-style: none;
    display: block;
    font: 16px/18px SegoeUIRegular, Arial, Helvetica, sans-serif;
}
.bottom-nav li {
    display: inline-block;

}

.bottom-nav li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.bottom-nav li a:hover {
    color: red;
}

.f-col3 {
    display: table-cell;
    width: 257px;
}

.main-contacts {
    position: relative;
    width: 100%;
    height: 500px;
}

.contacts-info {
    position: absolute;
    top:0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

.contact-text{
    margin-top: 10px;
    color: #fff;
    text-align: center;
    font: 20px/28px SegoeUILight, Arial, Helvetica, sans-serif;
}

#map-convas {
    width: 100%;
    height: 500px;
}

.sub-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}


.sub-header .container{
    display: table;
    table-layout: fixed;
}


.sub-logo {
    display: table-cell;
    width: 250px;
    height: 100px;
    vertical-align: middle;
}

.sub-logo img {
    width: 100%;
    height: auto;
}

.blog-menu {
    display: table-cell;
    width: 100%;
    list-style: none;
    vertical-align: middle;
    text-align: center;
}

.blog-menu .icon {
    font-size: 40px;
    line-height: 40px;
}

.blog-menu .icon-gallery:before {
    font-size: 36px;
    line-height: 40px;
}

.blog-menu .icon-reserve:before {
    font-size: 36px;
    line-height: 40px;
}

.blog-menu li {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 0 25px;
}

.blog-menu li.first {
    padding-left: 0;
}

.blog-menu li.last {
    padding-right: 0;
}

.blog-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    transition: 0.5s;
}

.blog-menu a:hover {
    color: red;
    -webkit-animation: swing 1s ease;
    animation: swing 1s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}


.blog-menu li i {
    display: block;
}

.blog-menu li span {
    display: block;
    margin-top: 7px;
    font: 14px/16px SegoeUISemiBold,Arial,Helvetica sans-serif;
}

.blog-header {
    width: 100%
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    text-align: center;
    padding: 210px 0 150px 0 ;
}

.blog-header-text {
    padding: 10px 20px;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    margin: 0 auto;
    font: 40px/40px SegoeUISemiLight,Arial,Helvetica sans-serif;
    background: rgba(205, 39, 20,0.8);
}

.post {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 0 40px 0;
    font: 17px/24px SegoeUIRegular, Arial, Helvetica, sans-serif;
}

.post-date {
    font-family: SegoeUIItalic, Arial, Helvetica, sans-serif;
}

.post p {
    margin-top: 15px;
}

.post h1 {
    font: 34px/34px SegoeUISemiBold, Arial, Helvetica, sans-serif;
    margin-top: 20px;
    text-align: center;
}
.post h2 {
    margin-top: 20px;
    font: 24px/24px SegoeUISemiBold, Arial, Helvetica, sans-serif;
}
.post h3 {
    margin-top: 20px;
    font: 20px/20px SegoeUISemiBold, Arial, Helvetica, sans-serif;
}

.post h4 {
    margin-top: 20px;
    font: 18px/20px SegoeUISemiBold, Arial, Helvetica, sans-serif;
}

.post h5 {
    margin-top: 20px;
    font: 16px/18px SegoeUISemiBold, Arial, Helvetica, sans-serif;
}

.post h6 {
    margin-top: 20px;
    font: 14px/16px SegoeUISemiBold, Arial, Helvetica, sans-serif;
}

.post .alignleft {
    float: left;
    margin:10px 20px 10px 0;
}
.post .aligncenter {
    display:block;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left:auto;
    margin-right:auto;
}
.post .alignright {
    float: right;
    margin:10px 0 10px 20px;
}

.post img {
    max-width: 720px;
    height: auto;
}

.post img.size-large {
    width: 100%;
    height: auto;
}

.post .wp-caption{
    width: auto;
}

.post .wp-caption-text{
    margin-top: 10px;
    text-align: center;
    font-family: SegoeUIItalic, Arial, Helvetica, sans-serif;
}

.post ul,
.post ol
{
    margin: 15px 0 0 20px;
}

.post ul ul,
.post ol ol,
.post ul ol ,
.post ol ul{
    margin-bottom: 10px;
}

.post table{
    max-width: 720px;
    table-layout: fixed;
}

.category-box {
    margin-top: 20px;
}

.category-box h2 {
    font: 24px/26px SegoeUISemiBold, Arial, Helvetica, sans-serif;
    text-align: center;
}

.category-box h2 a{
    color: #8f360c;
    text-decoration: none;
    transition: 0.3s;
}

.category-box h2 a:hover{
    color: #ff0000;
}

.category-box .date{
    text-align: center;
    font: 15px/18px SegoeUIItalic, Arial, Helvetica, sans-serif;
    margin-top: 10px;
}

.category-box img {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.category-text{
    margin-top: 10px;
}

.category-box .detail {
    text-align: center;
    margin-top: 10px;
}

.category-box .detail a{
    color: #8f360c;
}

.category-box .detail a:hover{
    color: #ff0000;
}

.category-sep {
    width: 100%;
    height: 2px;
    margin-top: 25px;
    position: relative;
    background: #D6D6D6;
}

.category-sep-img {
    width: 15px;
    height: 15px;
    position: absolute;
    top: -7px;
    left: 50%;
    margin-left: -7px;
    background: url("images/blog-big-sep.png");
}

.pagination {
    width: 100%;
    height: 30px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-numbers {
    display: inline-block;
    list-style: none;
    margin: 0 auto;
}

.page-numbers li {
    display: block;
    float: left;
    font-size: 16px;
}

.page-numbers li a {
    display: block;
    padding: 5px 10px;
    background-color: #8f360c;
    margin-left: 3px;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

.page-numbers li a:hover {
    background-color: #d24d12;
    color: #fff;
}

.page-numbers .current {
    display: block;
    padding: 5px 10px;
    background-color: #ff0000;
    margin-left: 3px;
    color: #fff;
    border-radius: 3px;
}

@media only screen and (max-width: 900px ) {

    .blog-item-text {
        padding-top:0;
        padding-bottom: 0;
    }
    .blog-item-text h3 {
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        font: 16px/18px SegoeUIRegular, Arial, Helvetica, sans-serif;
        color: #252221;
        border-bottom: 1px solid #C3C3C3;
    }

    .blog-item-text p {
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        font: 12px/14px SegoeUIRegular, Arial, Helvetica, sans-serif;
    }

    .blog-menu li {
        padding: 0 15px;
    }

}

@media only screen and (max-width: 767px ) {
    .top-slide-down a {
        width: 80px;
        height: 50px;
    }

    .top-menu li {
        padding: 0 5px;
        max-width: 70px;
    }

    .top-menu li span {
        margin-top: 7px;
        font: 14px/16px SegoeUISemiBold, sans-serif;
    }

    .icon {
        font-size: 40px;
        line-height: 40px;
    }

    .icon.icon-gallery:before {
        font-size: 36px;
        line-height: 36px;
    }

    .icon.icon-reserve:before {
        font-size: 36px;
        line-height: 36px;
    }

    .s-header {
        width: 30%;
        display: table-cell;
        padding: 0 20px;
        font: 36px/50px SegoeUIRegular, Arial, Helvetica, sans-serif;
        white-space: nowrap;
    }

    .main-about {
        background-size: 150px auto, 100px auto;
    }

    /**DICOUNT*/

    .discount-wrapper {
        width: 100%;
        display: block;
        min-height: 568px;
    }

    .discount-photo {
        display: block;
        position: relative;
        width: 100%;
        height: 300px;
        background: url("images/discount_photo.jpg") center center no-repeat;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    .discount-banner {
        position: absolute;
        left: -15px;
        right: -15px;
        bottom: -40px;
        padding: 30px 12px;
        background: #000;
        width: 100%;
    }

    .discount-banner h3 {
        color: #FF0101;
        font: 26px/26px SegoeUISemiBold, Arial, Helvetica, sans-serif;
        text-align: center;
    }

    .discount-banner p {
        color: #FAEC7F;
        font: 20px/22px SegoeUISemiLight, Arial, Helvetica, sans-serif;
        text-align: center;
        margin-top: 10px;
    }

    .discount-banner p.time {
        color: #FF0101;
    }

    .discount-content {
        display: block;
        width: 100%;
        padding: 60px 20px 40px 20px;
        background: #fff;
    }


    .discount-content .s-header {
        font: 30px/44px SegoeUIRegular, Arial, Helvetica, sans-serif;
    }

    .discount-desc {
        display: block;
        margin-top: 10px;
        font: 20px/20px SegoeUIItalic, Arial, Helvetica, sans-serif;
        text-align: center;
        color: #86857e;
    }

    .discount-list {
        margin-top: 45px;
        list-style: none;
        display: block;
    }

    .discount-list li {
        display: inline-block;
        padding: 10px;
        width: 100%;
        vertical-align: top;
        text-align: center;
    }

    .discount-list li .name {
        font: 22px/24px SegoeUIRegular, Arial, Helvetica, sans-serif;
    }

    .discount-list li .price {
        margin-top: 10px;
        font: 16px/18px SegoeUIRegular, Arial, Helvetica, sans-serif;
        color: #3c3c3a;
    }

    .discount-list li .sep {
        display: block;
        width: 100%;
        max-width: 225px;
        max-height: 14px;
        margin: 10px auto 0 auto;
    }

    /*MENU*/

    .menu-wrapper {
        margin-top: 0;
    }

    .menu-col {
        margin-top: 40px;
        width: 100%;
        float: none;
        padding-right: 0;
    }

    .menu-col h2 {
        font: 22px/22px SegoeUIBold, Arial, Helvetica, sans-serif;
    }


    .menu-list li .right-col {
        text-align: center;
    }

    .view-all-wrapper {
        margin-top: 40px;
    }

    .view-all {
        font: 20px/20px SegoeUIBold, Arial, Helvetica, sans-serif;
    }

    .form-col3 {
        width: 100%;
        float: none;
        margin-top: 20px;
    }

    .form-col2 {
        width: 100%;
        float: none;
        margin-top: 20px;
    }

    .form-header {
        font: 36px/40px SegoeUISemiBold, Arial, Helvetica, sans-serif;
    }

    .form-wrapper {
        margin-top: 40px;
    }

    .events-header {
        font: 36px/40px SegoeUIBold, Arial, Helvetica, sans-serif;
    }

    .slick-caption {
        bottom: -30px;
        font: 14px/16px SegoeUIItalic, Arial, Helvetica, sans-serif;
    }

    .blog-col {
        width: 100%;
        float: none;
    }
    .blog-item-text h3 {
        font: 18px/20px SegoeUIRegular, Arial, Helvetica, sans-serif;

    }

    .blog-item-text p {
        font: 14px/16px SegoeUIRegular, Arial, Helvetica, sans-serif;
    }

    footer {
        background: #000000;
        padding: 40px 0;
        color: #fff;
    }

    footer .container{
        display: block;
    }

    .f-col1 {
        text-align: center;
        display: block;
        width: 100%;
        padding: 10px;
        font: 18px/20px SegoeUIRegular, Arial, Helvetica, sans-serif;
        vertical-align: top;
    }

    .f-col2 {
        text-align: center;
        display: block;
        width: 100%;
        padding: 0 10px;
        margin-top: 10px;
    }

    .bottom-nav {
        margin: 0 auto;
        list-style: none;
        display: block;
        font: 16px/18px SegoeUIRegular, Arial, Helvetica, sans-serif;
    }
    .bottom-nav li {
        display: inline-block;

    }

    .bottom-nav li a {
        display: block;
        padding: 10px 20px;
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

    .bottom-nav li a:hover {
        color: red;
    }

    .f-col3 {
        margin-top: 20px;
        display: block;
        width: 100%;
        text-align: center;
    }

    .f-col3 img {
        width: 100%;
        height: auto;
        max-width: 257px;
    }

    .sub-header .container{
        display: block;
        padding-bottom: 10px;
    }

    .sub-logo {
        display: block;
        width: 100%;
        height: auto;
        text-align: center;
    }

    .sub-logo img {
        width: 250px;
        height: auto;
    }

    .blog-menu {
        display: block;
        width: 100%;
    }

    .blog-menu li {
        padding: 0 10px;
    }

    .blog-header {
        padding: 250px 0 110px 0 ;
    }

    .blog-header-text {
        font: 30px/30px SegoeUISemiLight,Arial,Helvetica sans-serif;
    }

}

@media only screen and (max-width: 480px ) {
    .blog-item {
        margin-top: 20px;
        display: block;
        width: 100%;
    }

    .blog-item-photo {
        display: block;
        width: 100%;
    }

    .blog-item-text {
        display: block;
        width: 100%;
    }


    .blog-item-text h3 {
        font: 18px/20px SegoeUIRegular, Arial, Helvetica, sans-serif;
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .blog-item-text p {
        padding-top:20px;
        padding-bottom: 20px;
        font: 14px/16px SegoeUIRegular, Arial, Helvetica, sans-serif;
    }

    .blog-arrow-left{
        display: none;
    }

    .blog-arrow-right{
        display: none;
    }

    .sub-header .container{
        display: table;
        table-layout: fixed;
    }




    .blog-menu .icon {
        font-size: 30px;
        line-height: 30px;
    }

    .blog-menu .icon-gallery:before {
        font-size: 30px;
        line-height: 30px;
    }

    .blog-menu .icon-reserve:before {
        font-size: 30px;
        line-height: 30px;
    }

    .blog-menu li {
        padding: 0 3px;
        max-width: 65px;
    }

    .blog-menu li span {
        margin-top: 7px;
        font: 13px/16px SegoeUISemiBold,Arial,Helvetica sans-serif;
    }

}
@media only screen and (max-width: 320px ) {

    .main-header {
        width: 100%;
        padding: 35px 0;
        min-height: 500px;
    }

    .main-header .logo img{
        width: 100%;
        max-width: 200px;
        height: auto;
    }

    .top-sep {
        margin-top: 15px;
    }

    .top-desc {
        margin-top: 15px;
        font: 14px/20px SegoeUIItalic, Arial, Helvetica, sans-serif;
    }

    .top-menu-wrapper {
        margin-top: 15px;
    }

    .top-menu li {
        padding: 0 3px;
        max-width: 55px;
    }

    .top-menu li span {
        margin-top: 7px;
        font: 12px/16px SegoeUISemiBold, sans-serif;
    }

    .icon {
        font-size: 36px;
        line-height: 36px;
    }

    .icon.icon-gallery:before {
        font-size: 30px;
        line-height: 30px;
    }

    .icon.icon-reserve:before {
        font-size: 30px;
        line-height: 30px;
    }

    .slick-caption {
        bottom: -25px;
    }
}