/**
 * [Table of contents]
 *
 * [&. Content / #key]
 * [Let press Ctrl + f and type of paste the key, then press Enter to search the content ]
 *
 * Summary:
 *
 *  0. VARIABLE LESS
 *    - 0.1. Color
 *    - 0.2. Font
 *  1. GLOBAL STYLE
 *    - 1.1. Button
 *    - 1.2. Main title
 *    - 1.3. Star Rangting
 *    - 1.4. Dish
 *    - 1.5. Tab Menu
 *    - 1.6. Input
 *    - 1.7. Pagination
 *    - 1.8. Menu Order Item
 *    - 1.9. Banner
 *    - 1.10. Back To Top Button
 *  2. PAGE
 *    - 2.1. Homepage 1
 *    - 2.2. Homepage 2
 *    - 2.3. Homepage 3
 *    - 2.4. About us
 *    - 2.5. Reservation
 *    - 2.6. Menu grid
 *    - 2.7. Blog
 *    - 2.8. Blog Detail
 *    - 2.9. Contact
 *    - 2.10. 404
 *    - 2.11. Event
 *    - 2.12. Gallery isotope
 *  3. PLUGIN
 *    - 3.1. jQuery Plugin date picker
 *      3.2  login dropdown 
 */

/*=================================
 =====     VARIABLE LESS      =====
 =================================*/

/**
 * [Table of contents]
 *
 * [&. Content / #key]
 * [Let press Ctrl + f and type of paste the key, then press Enter to search the content ]
 *
 * Summary:
 *
 *  0. VARIABLE LESS
 *  1. MIXINS


/*=============================
 =====   VARIABLE LESS    =====
 =============================*/

/*=============================
 ====  END VARIABLE LESS   ====
 =============================*/

/*=============================
 =====       MIXINS       =====
 =============================*/

/*=============================
 ====      END MIXINS      ====
 =============================*/

/*----------  0.1. Color  ----------*/

/*----------  0.2. Font  ----------*/

/*=================================
====     END VARIABLE LESS     ====
==================================*/

/*=================================
======      GLOBAL STYLE     ======
==================================*/

/*----------  1.1. Button  ----------*/

.btn {
    line-height: 36px;
    height: 40px;
    padding: 0 20px;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    text-transform: uppercase;

    border: 2px solid;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
}

.btn:hover {
    border-bottom: 2px solid;
}

.btn.btn-maincolor {
    color: #ffffff;
    border-color: #0167b2;
    background-color: #0167b2;
}

.btn.btn-maincolor:hover {
    border-color: #121a2e;
    background-color: #121a2e;
}

.btn.btn-transparent {
    color: #ffffff;
    border-color: #ffffff;
    background-color: transparent;
}

.btn.btn-transparent:hover {
    border-color: #121a2e;
    background-color: #121a2e;
}

.btn.btn-subcolor {
    color: #ffffff;
    border-color: #121a2e;
    background-color: #121a2e;
}

.btn.btn-subcolor:hover {
    color: #121a2e;
    background-color: #ffffff;
}

.group-btn .btn-left {
    margin-right: 12px;
}

/*----------  1.2. Main title  ----------*/

.main-title {
    position: relative;
    margin-bottom: 52px;
    text-align: center;
}


h1 {
      font-size: 3.145rem;
 font-family: 'Raleway';
    color: #01050e;
    line-height: 1;
    position: relative;
    z-index: 10;
    margin: 30px 0 30px 0;
    text-transform: uppercase;
}
h2 {font-family: 'Raleway';
      font-size: 2.3rem;
    color: #1744a9;
    line-height: 1;
    position: relative;
    z-index: 10;
    margin: 10px 0 5px 0;

}
.main-content {
    font-size: 18px;
}
.main-title.white .title {
    color: #ffffff;
}

/*----------  1.3. Star Rangting  ----------*/




/*----------  1.6. Input  ----------*/

.form-control {
    width: 100%;
    height: 40px;

    border-radius: 0 !important;
    box-shadow: none;
}

.form-control:hover,
.form-control:focus {
    box-shadow: none;
}




/*----------  1.9. Banner  ----------*/

.banner {
    position: relative;

    overflow: hidden;

    width: 100%;
    background-color: #f5f5f5;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
    -webkit-background-size: cover;
            background-size: cover;
}

/*----------  1.10. Back To Top Button  ----------*/

#back-top .link {
    font-size: 24px;
    line-height: 36px;

    position: fixed;
    z-index: 100;
    right: 20px;
    bottom: 20px;

    visibility: hidden;

    width: 40px;
    height: 40px;

    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;
    -webkit-transform: translateY(-40px);
       -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
         -o-transform: translateY(-40px);
            transform: translateY(-40px);
    text-align: center;

    opacity: 0;
    color: #0167b2;
    border: 2px solid #0167b2;
    background-color: transparent;
}

#back-top .link.show-btn {
    visibility: visible;

    -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
         -o-transform: translateY(0px);
            transform: translateY(0px);

    opacity: 1;
}

#back-top .link:hover {
    -webkit-transform: translateY(-15px);
       -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
         -o-transform: translateY(-15px);
            transform: translateY(-15px);

    color: #000000;
    border: 2px solid #000000;
    background-color: #0167b2;
}

/*=================================
======    END GLOBAL STYLE   ======
==================================*/

/*=================================
======          PAGE         ======
==================================*/

/*----------  2.1. Homepage 1  ----------*/

.homepage-banner {
    position: relative;

    overflow: hidden;

    width: 100%;
      color: #ffffff;
    background-color: #121212;
    background-repeat: repeat;
    background-position: center;
    -webkit-background-size: cover;
            background-size: cover;
}

.homepage-banner .container {
    height: 100%;
}

.homepage-default {
    text-align: left;

    color: #e3e3e3;
}

.homepage-default .homepage-banner-warpper {
    display: table;

    width: 100%;
    max-width: 770px;
    height: 100%;
}

.homepage-default .homepage-banner-content {
    display: table-cell;

    padding-top: 150px;

    text-align: left;
    vertical-align: middle;
}

.homepage-default .homepage-banner-content .group-title .title {
    font-family: 'Raleway';
    font-size: 3.214rem;

    margin: 0;
    margin-bottom: 20px;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: #ffffff;
}

.homepage-default .homepage-banner-content .group-title .text {
    margin: 0;
}

.homepage-default .homepage-banner-content .group-open-hours {
    margin-top: 25px;
}



.homepage-default .homepage-banner-content .group-btn {
    margin-top: 40px;
}

.about-us-1 {
    display: table;

    width: 100%;
}

.about-us-1 .left-image,
.about-us-1 .right-infomation {
    display: table-cell;
}

.about-us-1 .left-image {
    position: relative;

    overflow: hidden;

    width: 45%;

    background-color: #121212;
   
    background-position: center;
    background-size: cover;
}




 .item {
    position: relative;

    display: inline-block;

    padding: 0 15px;

    color: #8d8f93;
}

 .item i {
    margin-right: 8px;
}




.input-group {

    margin-bottom: 20px;
}
.create-booking .input-group .form-control {
    text-align: left;

    color: #ffffff;
    border-color: rgba(255, 255, 255, .5);
    border-right: none;
    background-color: transparent;
}

.create-booking .input-group .form-control:hover,
.create-booking .input-group .form-control:focus {
    border-color: rgba(255, 255, 255, .5);
}

.create-booking .input-group .form-control::-webkit-input-placeholder {
    font-weight: 300;

    color: rgba(255, 255, 255, .5);
}

.create-booking .input-group .form-control:-moz-placeholder {
    font-weight: 300;

    color: rgba(255, 255, 255, .5);
}

.create-booking .input-group .form-control::-moz-placeholder {
    font-weight: 300;

    color: rgba(255, 255, 255, .5);
}

.create-booking .input-group .form-control:-ms-input-placeholder {
    font-weight: 300;

    color: rgba(255, 255, 255, .5);
}

.create-booking .input-group .input-group-addon {
    position: relative;
    z-index: 10;

    color: rgba(255, 255, 255, .5);
    border-color: rgba(255, 255, 255, .5);
    border-left: none;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    background-color: transparent;
}

.create-booking .btn:hover {
    color: #01050e;
    border-color: #ffffff;
    background-color: #ffffff;
}

.create-booking .form-group {
    margin-bottom: 50px;
}

.create-booking .form-group .col-sm-6 {
    margin-bottom: 30px;
}

.create-booking .form-group .col-sm-6:nth-last-child(-n + 2) {
   /* margin-bottom: 0;*/
}

.create-booking .left-image,
.create-booking .right-infomation {
    display: table-cell;
}

.create-booking .left-image {
    width: 45%;

    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.create-booking .right-infomation {
    position: relative;

    color: #ffffff;
}

.create-booking .right-infomation .content-wrapper {
    width: 580px;
    margin-left: 4%;
}

.create-booking .more-infomation {
    text-align: left;

    border-top: 1px solid #eeeeee;
}

.create-booking .more-infomation .col-sm-6 {
    margin-top: 30px;
}

.create-booking .more-infomation .title-info {
    font-family: 'Raleway';
    font-size: 22px;

    margin: 0 0 25px 0;

    text-transform: capitalize;

    color: #01050e;
}

.create-booking .more-infomation .text {
    margin-bottom: 20px;
}

.create-booking .more-infomation .text:last-child {
    margin-bottom: 0;
}

.create-booking.style-1 .right-infomation {
    background-color: #121a2e;
}

.create-booking.style-1 .btn {
    color: #ffffff;
    border-color: #0167b2;
    background-color: #0167b2;
}

.create-booking.style-1 .btn:hover {
    color: #ffffff;
    border-color: #ffffff;
    background-color: transparent;
}

.create-booking.style-1 .bg-images-pc {
    position: absolute;
    right: 20px;
    bottom: 0;

    display: none;

    width: 30%;
}

.create-booking.style-2 .left-image {
    background-image: url('../images/background-full/DSC_4813.jpg');
}

.create-booking.style-2 .right-infomation {
    background-color: #0167b2; padding-top: 75px;
}

.create-booking.style-2 .btn {
    color: #ffffff;
    border-color: #121a2e;
    background-color: #121a2e;
    padding: 2px 36px;
}

.create-booking.style-2 .btn:hover {
    color: #ffffff;
    border-color: #ffffff;
    background-color: transparent;
}

.create-booking.style-2 .bg-images-pc {
    position: absolute;
    right: 20px;
    bottom: 0;

    display: none;

    width: 30%;
}


.create-booking.style-3 .main-content,
.create-booking.style-4 .main-content {
    width: 80%;
    margin: 0 auto;
}

.create-booking.style-3 .input-group .form-control,
.create-booking.style-4 .input-group .form-control {
    color: #121a2e;
    border-color: #121a2e;
}

.create-booking.style-3 .input-group .form-control:hover,
.create-booking.style-4 .input-group .form-control:hover,
.create-booking.style-3 .input-group .form-control:focus,
.create-booking.style-4 .input-group .form-control:focus {
    border-color: #121a2e;
}

.create-booking.style-3 .input-group .form-control::-webkit-input-placeholder,
.create-booking.style-4 .input-group .form-control::-webkit-input-placeholder {
    color: #50545c;
}

.create-booking.style-3 .input-group .form-control:-moz-placeholder,
.create-booking.style-4 .input-group .form-control:-moz-placeholder {
    color: #50545c;
}

.create-booking.style-3 .input-group .form-control::-moz-placeholder,
.create-booking.style-4 .input-group .form-control::-moz-placeholder {
    color: #50545c;
}

.create-booking.style-3 .input-group .form-control:-ms-input-placeholder,
.create-booking.style-4 .input-group .form-control:-ms-input-placeholder {
    color: #50545c;
}

.create-booking.style-3 .input-group .input-group-addon,
.create-booking.style-4 .input-group .input-group-addon {
    color: #50545c;
    border-color: #121a2e;
}

.create-booking.style-3 .btn,
.create-booking.style-4 .btn {
    color: #ffffff;
    border-color: #121a2e;
    background-color: #121a2e;
}

.create-booking.style-3 .btn:hover,
.create-booking.style-4 .btn:hover {
    color: #ffffff;
    border-color: #0167b2;
    background-color: #0167b2;
}

.create-booking.style-4 {
    background-image: none;
}

.create-booking.style-4 .main-content {
    width: 100%;
}

.create-booking.style-4 .btn {
    color: #ffffff;
    border-color: #0167b2;
    background-color: #0167b2;
}

.create-booking.style-4 .btn:hover {
    color: #ffffff;
    border-color: #121a2e;
    background-color: #121a2e;
}

.create-booking.style-4 .bg-images-pc {
    position: absolute;
    right: -20px;
    bottom: 0;

    display: none;

    width: 19%;
}



.coming-soon-wrapper {
    display: table;

    width: 100%;
    max-width: 1170px;
}

.left-infomation,
.right-infomation {
    display: table-cell;

    width: 50%;
    padding: 0 15px;

    vertical-align: middle;
}



.content .item .day,
 .content .item .time {
    display: inline-block;

    margin-bottom: 0;
}

 .content .item .day {
    position: relative;

    float: left;

    text-transform: capitalize;
}

.content .item .time {
    float: right;

    text-transform: uppercase;
}



.logo-bg .list-logo {
    margin-bottom: 0;
    padding: 80px 0;
}

.logo-bg .list-logo .item {
    float: left;
}

.logo-bg .list-logo .item .link {
    display: block;

    margin-bottom: 20px;
}

.logo-bg .list-logo .item .link img {
    margin: 0 auto;
}

.logo-bg .list-logo .item .link:last-child {
    margin-bottom: 0;
}





.about-us-2 {
    position: relative;

    display: table;

    width: 100%;
}

.about-us-2 .left-infomation {
    display: table-cell;
}

.about-us-2 .left-infomation .content-wrapper {
    width: 570px;
}

.about-us-2 .left-infomation .text {
    font-size: 14px;

    margin-bottom: 30px;
}

.about-us-2 .left-infomation .signature {
    text-align: right;
}

.about-us-2 .left-infomation .signature .name {
    margin: 10px 0 0 0;

    text-transform: uppercase;
}

.about-us-2 .left-infomation .group-list {
    margin-top: 50px;
}

.about-us-2 .left-infomation .group-list .box-media {
    margin-bottom: 40px;
}

.about-us-2 .left-infomation .group-list .col-xs-6:nth-last-child(-n + 2) .box-media {
    margin-bottom: 0;
}

.about-us-2 .right-image {
    position: absolute;
    bottom: 0;
    left: 50%;

    width: 47%;
    max-width: 630px;
    margin-left: 30px;
}


.banner-infomation-slide .list-infomation {
    margin: 0 -15px;
}

.banner-infomation-slide .infomation-item {
    padding: 0 15px;
}

.infomation-item {
    text-align: center;
}

.infomation-item .icons {
    font-size: 4.5rem;
    line-height: 1;

    display: block;

    margin-bottom: 30px;
}

.infomation-item .title {
    font-family: 'Raleway';
    font-size: 1.429rem;

    margin: 0 0 10px 0;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.infomation-item .description {
    margin: 0 0 30px 0;

    color: #dcdcdc;
}

.infomation-item .btn {
    width: 150px;
}

.infomation-item .btn:hover {
    color: #ffffff;
    border-color: #ffffff;
    background-color: transparent;
}

/*----------  2.3. Homepage 3  ----------*/

.background-slide .slide-item {
    position: relative;

    overflow: hidden;

    width: 100%;
    height: 100vh;

    color: #ffffff;
    background-color: #121212;
    background-repeat: repeat;
    background-position: center;
    -webkit-background-size: cover;
            background-size: cover;
}

.background-slide .slide-item .img-bg {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


.background-slide .slide-item.background-item-3 .homepage-banner-content {
    text-align: left;
}

.background-slide .slide-item.background-item-3 .homepage-banner-content .group-title-2 {
    margin-left: 0;

    -webkit-animation-delay: .2s;
            animation-delay: .2s;
}

.background-slide .slide-item.background-item-3 .homepage-banner-content .group-open-hours {
    margin-top: 25px;

    -webkit-animation-delay: .6s;
            animation-delay: .6s;
}

.background-slide .slide-item.background-item-3 .homepage-banner-content .group-open-hours .title {
    font-size: 1.286rem;

    margin-bottom: 15px;

    text-transform: capitalize;
}

.background-slide .slide-item.background-item-3 .homepage-banner-content .group-open-hours .time-1 .day,
.background-slide .slide-item.background-item-3 .homepage-banner-content .group-open-hours .time-2 .day {
    display: inline-block;

    min-width: 130px;

    text-transform: capitalize;
}

.background-slide .slide-item.background-item-3 .homepage-banner-content .group-open-hours .time-1 .time,
.background-slide .slide-item.background-item-3 .homepage-banner-content .group-open-hours .time-2 .time {
    display: inline-block;
}

.background-slide .slide-item.background-item-3 .homepage-banner-content .group-open-hours .time-1 {
    margin-bottom: 5px;
}

.background-slide .slide-item.background-item-3 .homepage-banner-content .group-btn-2 {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
}

.background-slide .homepage-banner-warpper {
    position: relative;
    z-index: 10;

    display: table;

    width: 100%;
    height: 100%;
}

.background-slide .homepage-banner-content {
    display: table-cell;

    padding-top: 50px;

    text-align: center;
    vertical-align: middle;
}
.logo-image { background-color: #01101d;
    position: absolute;     padding: 3px 16px;
    display: block;     max-width: 301px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    z-index: 999;
}
.header-fixed .logo-image {display: none;}
.logo-image img {
    margin: 0px auto;
}
.background-slide .homepage-banner-content .logo-images {
    display: block;

    margin-bottom: 80px;

    -webkit-animation-delay: .2s;
            animation-delay: .2s;
}

.background-slide .homepage-banner-content .logo-images img {
    margin: 0 auto;
}

.background-slide .homepage-banner-content .group-title,
.background-slide .homepage-banner-content .group-title-2 {
    max-width: 770px;
    margin: 0 auto;

    -webkit-animation-delay: .2s;
            animation-delay: .2s;
}

.background-slide .homepage-banner-content .group-title .title,
.background-slide .homepage-banner-content .group-title-2 .title {
    font-family: 'Raleway';
    font-size: 3.214rem;
    line-height: 1.4;

    margin: 0;
    margin-bottom: 20px;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: #ffffff;
}
.group-title h2 {
    font-family: 'Raleway';
    color: #000;
    font-weight: bold;
}
.background-slide .homepage-banner-content .group-title .text,
.background-slide .homepage-banner-content .group-title-2 .text {
    margin: 0;
}

.background-slide .homepage-banner-content .group-btn,
.background-slide .homepage-banner-content .btn-center {
    margin-top: 40px;
}

.background-slide .homepage-banner-content .btn-left,
.background-slide .homepage-banner-content .btn-right,
.background-slide .homepage-banner-content .btn-center {
    -webkit-animation-delay: .8s;
            animation-delay: .8s;
}

.about-us-3 {
    text-align: center;
}

.about-us-3 .text {
    margin-bottom: 0;
}

.about-us-3 .video-thumbnail {
    margin-top: 50px;
}

.video-thumbnail {
    position: relative;
    z-index: 1;

    width: 100%;
    height: auto;
}

.video-thumbnail .show-video {
    visibility: visible !important;

    opacity: 1 !important;
}

.video-thumbnail .video-bg {
    position: relative;
    z-index: 5;
}

.video-thumbnail .video-bg img {
    width: 100%;
    height: 100%;
}

.video-thumbnail .video-button-play {
    font-size: 1.6rem;
    line-height: 66px;

    position: absolute;
    z-index: 6;
    top: 50%;
    left: 50%;

    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    padding-left: 6px;

    cursor: pointer;
    text-align: center;

    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .1);
}

.video-thumbnail .video-button-close {
    position: absolute;
    z-index: 12;
    top: 15px;
    right: 15px;

    visibility: hidden;

    width: 30px;
    height: 30px;

    cursor: pointer;

    opacity: 0;
    background-image: url('../images/more-image/btn-closevideo.png');
}

.video-thumbnail .video-embed {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;

    visibility: hidden;

    width: 100%;
    height: 100%;

    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;

    opacity: 0;
    border: none;
}

.our-chefs .our-chefs-list {
    margin: 0 -15px;
}

.our-chefs .chef-item {
    padding: 0 15px;
}

.chef-item {
    position: relative;
}

.chef-item .our-chef-avatar {
    display: block;

    padding-bottom: 147px;
}

.chef-item .our-chef-avatar img {
    margin: 0 auto;
}

.chef-item .our-chef-info {
    position: absolute;
    right: 15px;
    bottom: 0;
    left: 15px;

    padding: 30px;

    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;
    text-align: center;

    border: 3px solid #eeeeee;
    background-color: #ffffff;
}

.chef-item .our-chef-info .name {
    font-family: 'antonioregular', sans-serif;
    font-size: 1.429rem;

    display: block;

    margin-bottom: 2px;

    text-transform: uppercase;

    color: #01050e;
}

.chef-item .our-chef-info .job {
    font-size: 14px;

    display: block;

    margin-bottom: 7px;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    text-transform: capitalize;

    color: #50545c;
}

.chef-item .our-chef-info .description {
    visibility: hidden;
    overflow: hidden;

    height: 0;
    margin-bottom: 7px;

    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;

    opacity: 0;
    color: rgba(255, 255, 255, .5);
}

.chef-item .our-chef-info .our-chef-socials {
    display: block;
}

.chef-item .our-chef-info .our-chef-socials .link {
    display: inline-block;

    padding: 0 7px;

    color: #c3c6cb;
}

.chef-item .our-chef-info:hover {
    border-color: #0167b2;
    background-color: #0167b2;
}

.chef-item .our-chef-info:hover .name {
    color: #ffffff;
}

.chef-item .our-chef-info:hover .job {
    color: #ffffff;
}

.chef-item .our-chef-info:hover .description {
    display: block;
    visibility: visible;

    height: 72px;

    opacity: 1;
}

.chef-item .our-chef-info:hover .our-chef-socials .link {
    color: #ffffff;
}

.testimonial {
    position: relative;

    overflow: hidden;

    width: 100%;

    color: #ffffff;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
    -webkit-background-size: cover;
            background-size: cover;
}

.testimonial.style-1 {
    background-color: #121212;
    background-image: url('../images/background-full/banner-6.jpg');
}

.testimonial.style-2 {
    background-color: #0167b2;
    background-image: url('../images/background-full/banner-7.jpg');
}

.testimonial.style-2 .testimonial-list .testimonial-item .icons {
    color: #ffffff;
}

.testimonial.style-2 .testimonial-list .testimonial-item .news-content {
    position: relative;
}

.testimonial.style-2 .testimonial-list .testimonial-item .news-content .content .name {
    color: #ffffff;
}

.testimonial.style-2 .testimonial-list .testimonial-item .news-content .content .text {
    color: rgba(255, 255, 255, .8);
}

.testimonial.style-2 .testimonial-list .testimonial-item .news-content .description {
    color: rgba(255, 255, 255, .7);
}

.testimonial.style-2 .testimonial-list .testimonial-item .news-content:after {
    font-family: 'robotoblack';
    font-size: 7rem;

    position: absolute;
    top: 50%;
    left: 20%;

    margin-top: 20px;

    content: 'SAYINGS';

    color: rgba(255, 255, 255, .1);
}

.testimonial.style-3 {
    background-color: #121212;
    background-image: url('../images/background-full/banner-9.jpg');
}

.testimonial-list {
    width: 80%;
    margin: 0 auto;
}

.testimonial-list .slider-for {
    left: -60px;

    margin-bottom: 0;
}

.testimonial-list .slider-nav {
    width: 240px;
    margin: 0 auto;
}

.testimonial-list .avatar-item {
    padding-top: 15px;

    cursor: pointer;
    text-align: center;
}

.testimonial-list .avatar-item .image {
    position: relative;

    overflow: hidden;

    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-bottom: 20px;

    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;

    border: 3px solid #ffffff;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background-color: #ffffff;
}

.testimonial-list .avatar-item .image:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    content: '';

    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background-color: rgba(0, 0, 0, .5);
}

.testimonial-list .avatar-item.slick-center {
    position: relative;
    z-index: 10;
}

.testimonial-list .avatar-item.slick-center .image {
    -webkit-transform: scale(1.3);
       -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
         -o-transform: scale(1.3);
            transform: scale(1.3);
}

.testimonial-list .avatar-item.slick-center .image:after {
    display: none;
}

.testimonial-list .testimonial-item {
    display: table;

    padding: 0 30px;
}

.testimonial-list .testimonial-item .icons {
    font-size: 10rem;
    line-height: 80px;

    position: relative;

    display: table-cell;

    padding-right: 20px;

    vertical-align: bottom;

    color: #0167b2;
}

.testimonial-list .testimonial-item .icons span {
    position: relative;
    top: 20px;
}

.testimonial-list .testimonial-item .icons:after {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 2px;
    height: 80px;

    content: '';

    background-color: rgba(255, 255, 255, .5);
}

.testimonial-list .testimonial-item .news-content {
    display: table-cell;

    padding: 30px 0 20px 20px;

    text-align: center;
    vertical-align: middle;
}

.testimonial-list .testimonial-item .news-content .content {
    position: relative;
    top: -30px;
    left: 50%;

    width: 150px;
    margin-left: -75px;

    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;
    text-align: center;
}

.testimonial-list .testimonial-item .news-content .content .name {
    font-family: 'robotobold';
    font-size: 16px;

    margin-bottom: 0;

    white-space: nowrap;
    text-transform: capitalize;

    color: #0167b2;
}

.testimonial-list .testimonial-item .news-content .content .text {
    font-size: 14px;

    margin: 0;

    color: #b8b8b8;
}

.testimonial-list .testimonial-item .news-content .description {
    font-style: italic;

    margin-bottom: 0;

    color: #d5d5d5;
}

/*----------  2.4. About us  ----------*/

.morepage-banner-wrapper {
    position: relative;

    overflow: hidden;

    width: 100%;

    color: #ffffff;
    background-color: #121212;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
    -webkit-background-size: cover;
            background-size: cover;
}



.morepage-banner {
    padding: 220px 0 100px 0;

    text-align: center;
}

.morepage-banner .group-icons {
    font-size: 2.5rem;
    line-height: 1;

    display: inline-block;

    width: 146px;
    margin-bottom: 25px;

    background-image: url('../images/more-image/bg-icon.png');
    background-repeat: no-repeat;
}

.morepage-banner .title {
    font-family: 'antonioregular', sans-serif;
    font-size: 2.571rem;
color: #fff;
    margin: 0 0 10px 0;

    text-transform: uppercase;
}

.morepage-banner .breadcrumb {
    font-size: 14px;

    display: inline-block;

    margin: 0;
    padding: 0;

    text-transform: capitalize;

    border-radius: 0;
    background-color: transparent;
}

.morepage-banner .breadcrumb li {
    display: inline-block;
}

.morepage-banner .breadcrumb li .link {
    position: relative;

    display: inline-block;

    color: #b0b0b0;
}

.morepage-banner .breadcrumb li .link:hover {
    color: #0167b2;
}

.morepage-banner .breadcrumb li.active .link {
    pointer-events: none;

    color: #ffffff;
}

.morepage-banner .breadcrumb li + li:before {
    font-family: FontAwesome;

    padding: 0 10px;

    content: '\f105';

    color: #ffffff;
}

.box-media {
    overflow: visible;

    cursor: pointer;
}

.box-media .media-left {
    padding: 0;

    text-align: center;
}

.box-media .media-right {
    padding-left: 15px;
}

.box-media .icons {
    font-size: 40px;
    line-height: 70px;

    display: block;

    width: 70px;
    height: 70px;

    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;

    color: #d1d1d1;
    border: 1px solid #d1d1d1;
    border-radius: 50%;
}

.box-media .title {
    font-size: 16px;

    display: block;

    margin-bottom: 5px;

    text-transform: capitalize;

    color: #15171b;
}

.box-media .title:hover {
    color: #0167b2;
}

.box-media .text {
    margin-bottom: 0 !important;
}

.box-media:hover .icons {
    -webkit-transform: scale(.8);
       -moz-transform: scale(.8);
        -ms-transform: scale(.8);
         -o-transform: scale(.8);
            transform: scale(.8);

    color: #ffffff;
    border: 1px solid #0167b2;
    background: #0167b2;
}

/*----------  2.5. Reservation  ----------*/



.taste-of-fresh {
    width: 80%;
    margin: 0 auto;

    text-align: center;
}

.taste-of-fresh .title {
    font-family: 'robotoblack';
    font-size: 3.429rem;

    margin: 0;
    margin-bottom: 15px;

    text-transform: uppercase;
}

.taste-of-fresh .title .name-1,
.taste-of-fresh .title .name-2,
.taste-of-fresh .title .name-3 {
    display: inline-block;
}

.taste-of-fresh .title .name-2 {
    font-family: 'robotoregular';
    font-size: 40px;

    padding: 0 12px;
}

.taste-of-fresh .title .name-3 {
    color: #0167b2;
}

.taste-of-fresh .text {
    margin-bottom: 35px;

    color: #d6d6d6;
}

/*----------  2.6. Menu grid  ----------*/

.meal-wrapper {
    text-align: center;
}

.meal-wrapper .description-menu {
    width: 80%;
    margin: 0 auto 30px auto;
}

.meal-wrapper .more-image {
    margin: 0 0 40px 0;

    opacity: .5;
}

.meal-wrapper .more-image img {
    margin: 0 auto;
}

.tab-main-menu {
    margin-bottom: 60px;
}

.tab-main-menu .name {
    font-family: 'Raleway';
    font-size: 18px;

    position: relative;

    padding: 0 15px;

    cursor: pointer;
    -webkit-transition: all .2s ease;
       -moz-transition: all .2s ease;
         -o-transition: all .2s ease;
            transition: all .2s ease;
    text-align: center;
    text-transform: capitalize;

    color: #01050e;
    border: none !important;
    -webkit-border-radius: 0 !important;
       -moz-border-radius: 0 !important;
            border-radius: 0 !important;
}

.tab-main-menu .name .image-1 {
    position: relative;

    visibility: visible;

    opacity: 1;
}

.tab-main-menu .name .image-2 {
    position: absolute;

    visibility: hidden;

    opacity: 0;
}

.tab-main-menu .name img {
    max-width: 150px;
    margin: 0 auto;
}

.tab-main-menu .name:hover,
.tab-main-menu .name.slick-current {
    color: #0167b2;
    border: none;
    background-color: transparent;
}

.tab-main-menu .name:hover .image-1,
.tab-main-menu .name.slick-current .image-1 {
    position: absolute;

    visibility: hidden;

    opacity: 0;
}

.tab-main-menu .name:hover .image-2,
.tab-main-menu .name.slick-current .image-2 {
    position: relative;

    visibility: visible;

    opacity: 1;
}

.tab-main-menu .slick-prev,
.tab-main-menu .slick-next {
    width: 36px;
    height: 36px;
    margin-top: -18px;
}

.tab-main-menu .slick-prev:before,
.tab-main-menu .slick-next:before {
    font-family: 'FontAwesome';
    font-size: 2.6rem;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    opacity: 1;
    color: #01050e;
}

.tab-main-menu .slick-prev:hover:before,
.tab-main-menu .slick-next:hover:before {
    color: #0167b2;
}

.tab-main-menu .slick-prev:before {
    content: '\f104';
}

.tab-main-menu .slick-next:before {
    content: '\f105';
}

.main-menu .content-menu {
    margin-bottom: 0;
}

.main-menu .content-menu .col-md-4:nth-last-child(-n + 3) .menu-items.style-4 {
    margin-bottom: 0;
}

.sub-menu .col-sm-6:nth-last-child(-n+2) .menu-items.style-3 {
    margin-bottom: 0;
    padding-bottom: 0;

    border: none;
}


.blog-wrapper {
    text-align: left;
}

.blog-post {
    margin-bottom: 60px;
}

.blog-post:last-child {
    margin-bottom: 0;
}

.blog-post .blog-image {
    margin-bottom: 35px;
}

blockquote {
    position: relative;

    display: table;

    padding: 0;

    border-left: none;
}

blockquote .icons {
    font-size: 8rem;
    line-height: 90px;

    display: table-cell;

    color: #e7e8ee;
}

blockquote .quote-wrapper {
    display: table-cell;

    padding-left: 20px;

    vertical-align: top;
}

blockquote .quote {
    font-size: 1.43rem;
    font-style: italic;

    display: block;

    margin-bottom: 10px;

    color: #3e4148;
}

blockquote .quote:hover {
    color: #0167b2;
}

blockquote .footer-quote {
    line-height: 1;
}

blockquote .footer-quote .author {
    font-family: 'robotobold';
    font-size: 14px;

    margin-right: 10px;

    color: #3c3c3c;
}

blockquote .footer-quote .company {
    font-size: 12px;

    color: #81878f;
}

/*----------  2.8. Blog Detail  ----------*/



.blog-detail-wrapper blockquote {
    margin-bottom: 25px;
    margin-left: 30px;
    padding-left: 30px;

    border-left: 3px solid #81878f;
}

.blog-detail-wrapper blockquote .blockquote-title {
    font-family: 'robotobold';
    font-size: 1.571rem;
    font-style: italic;

    margin-bottom: 15px;

    color: #6e747c;
}

.blog-detail-wrapper blockquote .blockquote-des {
    font-size: 1.143rem;
    font-style: italic;
}

.blog-detail-wrapper .video-thumnail-wrap {
    margin-bottom: 25px;

    text-align: center;
}

.blog-detail-wrapper .video-thumnail-wrap .caption {
    font-style: italic;

    margin-top: 15px;
}

.blog-detail-wrapper .blog-detail-list {
    margin: 0;
    padding: 0;
}

.blog-detail-wrapper .blog-detail-list li {
    margin-bottom: 10px;

    list-style: none;

    color: #50545c;
}

.blog-detail-wrapper .blog-detail-list li:last-child {
    margin-bottom: 0;
}

.blog-detail-wrapper .blog-detail-list li:before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;

    display: inline-block;

    margin-right: 10px;

    content: '\f178';

    color: #dbdbdb;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: auto;
}

.blog-author {
    text-align: left;
}

.blog-author .media-left {
    position: relative;
    z-index: 2;

    width: 100px;
    padding: 0;

    vertical-align: middle;
}

.blog-author .media-left .media-image {
    display: block;
}

.blog-author .media-left .media-image img {
    width: 100%;
}

.blog-author .media-right {
    position: relative;

    padding: 30px;

    text-align: left;

    background-color: #f9f9f9;
}

.blog-author .media-right:before {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: -30px;

    width: 30px;
    height: 100%;

    content: '';

    background-color: #f9f9f9;
}

.blog-author .media-right .author {
    font-size: 18px;

    color: #01050e;
}

.blog-author .media-right .bem {
    padding: 0 10px;
}

.blog-author .media-right .position {
    font-size: 14px;
}

.blog-author .media-right .des {
    margin-top: 7px;
    margin-bottom: 0;
}

.blog-comment {
    text-align: left;
}

.blog-comment .main-title-2 {
    text-align: left;
}

.blog-comment .comment-list {
    margin-bottom: 0;
}

.blog-comment .comment-list .parent {
    margin-top: 0;
    margin-bottom: 40px;
}

.blog-comment .comment-list .parent:last-child {
    margin-bottom: 0;
}

.blog-comment .comment-list .parent:last-child > .comment-item {
    margin-bottom: 0;

    border-bottom: 0;
}

.blog-comment .comment-list .comment-item:not(:last-child) {
    margin-bottom: 40px;
    padding: 0;
}

.blog-comment .comment-list .comment-list-children li .comment-item {
    margin-bottom: 40px;
    padding: 0;
}

.blog-comment .comment-list .comment-list-children {
    margin-left: 70px;
}

.blog-comment .comment-list .comment-list-children li .comment-item {
    margin-bottom: 40px;
    padding: 0;
}

.blog-comment .comment-list .comment-list-children li:last-child .comment-item {
    margin-bottom: 0;
}

.blog-comment .comment-list .comment-left {
    float: left;

    width: 70px;
    padding: 0;
}

.blog-comment .comment-list .comment-left .media-image {
    display: block;
}

.blog-comment .comment-list .comment-left .media-image img {
    width: 100%;
}

.blog-comment .comment-list .comment-right {
    padding-left: 85px;
}

.blog-comment .comment-list .comment-right .pull-left .author {
    font-size: 15px;
    font-weight: 500;

    margin-bottom: 5px;

    color: #01050e;
}

.blog-comment .comment-list .comment-right .pull-right.time {
    font-size: .857em;
    font-style: italic;

    color: #77858e;
}

.blog-comment .comment-list .comment-right .pull-right.time i {
    margin-right: 7px;
}

.blog-comment .comment-list .comment-right .des {
    display: inline-block;

    width: 100%;
}

.blog-comment .comment-list .comment-right .btn.btn-crystal:hover {
    color: #0167b2;
    border: 0;
    background-color: transparent;
    box-shadow: none;
}

.blog-comment .comment-list .comment-right .btn.btn-crystal:focus {
    border: 0;
    background-color: transparent;
    box-shadow: none;
}

.blog-comment .comment-list .btn-crystal {
    font-size: .857em;
    font-weight: 400;
    font-style: italic;
    line-height: 24px;

    float: right;

    width: inherit;
    height: auto;
    padding: 0;

    text-align: right;
    text-transform: capitalize;

    color: #77858e;
    border: 0;
}

.blog-comment .comment-list .btn-crystal i {
    margin-right: 7px;
}

.blog-comment .comment-list .comment-box {
    margin-left: 70px;
}

.comment-box .list-item {
    margin-bottom: 10px;
    padding: 30px 15px;

    background-color: #fafafa;
}

.comment-box .list-item .comment-form textarea {
    max-width: 650px;

    border: none;
}

.comment-box .list-item .media-submit {
    margin-top: 10px;
}

.comment-box .list-item .btn-submit {
    width: auto;
    height: 36px;

    color: #ffffff;
    border: none;
    background-color: #0167b2;
}

.leave-comment {
    text-align: left;
}

.leave-comment .main-title-2 {
    text-align: left;
}

.leave-comment .comment-form {
    display: inline-block;

    width: 100%;
    margin: 0 -5px;
}

.leave-comment .comment-form .col-50 {
    float: left;

    width: 50%;
    padding: 0 5px;
}

.leave-comment .comment-form .form-control {
    margin-bottom: 10px;

    border: 1px solid #bbbcc0;
}

.leave-comment .comment-form .form-control:hover,
.leave-comment .comment-form .form-control:focus {
    border: 1px solid #bbbcc0;
}

.leave-comment .comment-form .form-control:last-child {
    margin-bottom: 0;
}

.leave-comment .comment-form .form-textarea {
    max-width: 100%;
    height: 90px;
}

.leave-comment .comment-form .btn-submit {
    line-height: 24px;

    float: right;

    height: 24px;
    margin-top: 25px;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    border: none;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    background-color: transparent;
}

.leave-comment .comment-form .btn-submit .icons {
    margin-left: 7px;
}

.leave-comment .comment-form .btn-submit:hover {
    color: #0167b2;
}

/*----------  2.9. Contact   ----------*/



.contact-info-item {
    display: block;

    margin-top: 20px;
    padding: 0 30px;

    text-align: center;
}

.contact-info-item .icons {
    font-size: 4rem;
    line-height: 1;

    display: block;

    margin-bottom: 30px;

    color: #d2d2d2;
}

.contact-info-item .title {
    font-family: 'Raleway';
    font-size: 1.571rem;

    margin-bottom: 15px;

    text-transform: uppercase;

    color: #01050e;
}

.contact-info-item .text {
    margin-bottom: 0;

    text-transform: capitalize;
}

.contact-info-item .text:last-child {
    margin-bottom: 0;
}

.contact-form-wrapper {
    position: relative;

    background-color: #f4f6fa;
}

.contact-form-wrapper .bg-images-pc {
    position: absolute;
    bottom: 0;
    left: -5%;

    display: none;

    width: 25%;
}

.contact-form {
    text-align: center;
}

.contact-form .form-control {
    border: 1px solid #bbbcc0;
    background-color: transparent;
}

.contact-form .form-control:hover,
.contact-form .form-control:focus {
    border: 1px solid #bbbcc0;
}

.contact-form .form-textarea {
    max-width: 100%;
    height: 120px;
    margin-top: 30px;
}

.contact-map {
}

.contact-map #googleMap {
    height: 300px;
}

.text-danger {
    color: #e74c3c;
}

.form-group {
    margin-bottom: 0;
}

.help-block {
    margin: 0;
}

.help-block ul {
   padding: 0px;
    list-style: none;
    font-size: 12px;
    margin-bottom: 0;
    text-align: left;
}

/*----------  2.10. 404   ----------*/

.page-404 {
    width: 100%;
    height: 100vh;

    text-align: center;

    background-image: url('../images/background-full/404.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page-404 .title {
    font-family: 'robotoblack';
    font-size: 4.8rem;

    margin-top: 5%;
    margin-bottom: 30px;

    color: #01050e;
}

/*----------  2.11. Event  ----------*/

.main-event {
    width: 100%;

    background-image: url('../images/background-full/banner-22.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.main-event .coming-soon-event-wrapper {
    max-width: 568px;
    margin: 0 auto;
}

.more-event .coming-soon-event-wrapper .infomation .title {
    font-size: 2.143rem;
}

.more-event .coming-soon-event-wrapper .coming-soon-count {
    max-width: 390px;
    margin: 20px auto 0 auto;
}

.more-event .coming-soon-event-wrapper .coming-soon-count .count-wrapper {
    height: 50px;
}

.more-event .coming-soon-event-wrapper .coming-soon-count .count-wrapper .time {
    border: none;
    border-bottom: 1px solid #b0b5bd;
}

.more-event .coming-soon-event-wrapper .coming-soon-count .count-wrapper .time .count {
    font-size: 2.571rem;
    line-height: 50px;

    color: #81899a;
}

.more-event .coming-soon-event-wrapper .coming-soon-count .count-wrapper .time-label {
    position: relative;
    left: auto;

    width: auto;
    margin-left: 0;
}

.more-event .coming-soon-event-wrapper .btn {
    margin-top: 70px;
}

/*----------  2.12. Gallery isotope  ----------*/

.gallery-wrapper {
    text-align: center;
}

.gallery-wrapper .tab-menu {
    display: table;

    max-width: 750px;
    margin-right: auto;
    margin-left: auto;
}

.gallery-wrapper .tab-menu li {
    display: table-cell;
    float: none;

    width: 1%;

    cursor: pointer;
}

.description-gallery {
    max-width: 630px;
    margin: 0 auto 30px auto;
}

.description-gallery .title {
    font-family: 'Raleway';
    font-size: 2.143rem;

    margin: 0 0 15px 0;

    text-transform: capitalize;

    color: #01050e;
}

.description-gallery .text {
    margin-bottom: 0;
}

.grid-gallery {
    margin: 0 -15px;
}

.grid-gallery:after {
    display: block;
    clear: both;

    content: '';
}

.grid-item-wrapper {
    float: left;
    overflow: hidden;

    width: 33%;

    transition: box-shadow .5s ease;
}

.grid-item-wrapper:before {
    display: block;

    padding-top: 75%;

    content: '';
}

.grid-item-wrapper .grid-item {
    position: absolute !important;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;

    overflow: hidden;
}

.grid-item-wrapper .grid-item .link {
    position: relative;
    z-index: 1;

    display: block;
}

.grid-item-wrapper .grid-item .link img {
    width: 100%;
    height: 100%;
}

.grid-item-wrapper.grid-item-height2:before {
    display: block;

    padding-top: 150%;

    content: '';
}

.dh-overlay {
    z-index: 2;

    display: table;

    width: 100%;
    height: 100%;

    -webkit-transition: all 0s ease;
       -moz-transition: all 0s ease;
         -o-transition: all 0s ease;
            transition: all 0s ease;
    text-align: center;

    background-color: rgba(237, 67, 29, .5);
}

.dh-overlay .content {
    font-family: 'Raleway';
    font-size: 1.8rem;

    display: table-cell;

    vertical-align: middle;
    text-transform: capitalize;

    color: #ffffff;
}

/*=================================
======        END PAGE       ======
==================================*/

/*=================================
======         PLUGIN        ======
==================================*/


.ui-timepicker-wrapper {
    width: 200px;
    height: 220px;
}

.ui-timepicker-list li {
    padding: 10px 0 10px 15px;

    text-align: left;
}

/*=================================
======     END PLUGIN       ======
=================================*/
#loginbox, #logintopbox {display: none;border: solid 1px #d3d3d3;
    padding: 20px;} .mb-avatar-container { cursor: pointer;
    float: left;
    overflow: hidden;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .1);
    margin-top: 10px;
}#logintopbox {
  background: rgba(255, 255, 255, 0.69);
    width: 320px;
    position: absolute;
    margin-top: 63px;
    right: 0;
}.header-main.hide-menu div#logintopbox {
    display: none !important;
}
.image-event {
    position: relative;

    display: block;
}

.image-event .background {
    position: relative;
    z-index: 2;
    top: 0;
    left: 0;

    overflow: hidden;

    width: calc(100% - 15px);

    -webkit-transition: all .8s ease;
       -moz-transition: all .8s ease;
         -o-transition: all .8s ease;
            transition: all .8s ease;
}

.image-event .background img {
    width: 100%;
}

.image-event .background .homepage-hero-module {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100% !important;

    -webkit-transition: all .8s ease;
       -moz-transition: all .8s ease;
         -o-transition: all .8s ease;
            transition: all .8s ease;

    opacity: 0;
}

.image-event .background .homepage-hero-module .filter,
.image-event .background .homepage-hero-module video {
    width: 110% !important;
    margin-left: -5%;
}

.image-event .border {
    position: absolute;
    top: 15px;
    left: 15px;

    width: calc(100% - 15px);
    height: 100%;

    -webkit-transition: all .8s ease;
       -moz-transition: all .8s ease;
         -o-transition: all .8s ease;
            transition: all .8s ease;

    border: 1px solid #898989;
}

.image-event:hover .background {
    top: 15px;
    left: 15px;
}

.image-event:hover .background .homepage-hero-module {
    z-index: 10;

    opacity: 1;
}

.image-event:hover .border {
    top: 0;
    left: 0;
}

.media {
    font-size: 24px;
}.title {
    font-family: 'antoniobold';
    font-size: 2.571rem;
    margin: 0;
    margin-bottom: 5px;
    text-transform: capitalize;
    color: #01050e;
}.res {
    margin-bottom: 10px;
}