/**
 * [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.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.7. Blog
 *    - 2.8. Blog Detail
 *    - 2.9. Contact
 *    - 2.10. 404
 *      
 */

/*----------  0.1. Color  ----------*/

/*----------  0.2. Font  ----------*/

/*=================================
======      GLOBAL STYLE     ======
==================================*/

/*----------  1.1. Button  ----------*/

.btn {
    line-height: 36px;

    position: relative;

    overflow: hidden;

    width: 200px;
    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:before {
    position: absolute;
    top: -5px;
    left: -80px;

    width: 100px;
    height: 30px;

    content: '';
    -webkit-transition: all 1s ease;
       -moz-transition: all 1s ease;
         -o-transition: all 1s ease;
            transition: all 1s ease;
    -webkit-transform: rotate(-60deg);
       -moz-transform: rotate(-60deg);
        -ms-transform: rotate(-60deg);
         -o-transform: rotate(-60deg);
            transform: rotate(-60deg);
}

.btn:hover {
    border-bottom: 2px solid;
}

.btn:hover:before {
    left: 300px;
}

.btn.btn-maincolor {
    color: #ffffff;
    border-color: #614a3d;
    background-color: #614a3d;
}

.btn.btn-maincolor:before {
    background-color: #ffffff;
}

.btn.btn-transparent {
    color: #614a3d;
    border-color: #614a3d;
    background-color: transparent;
}

.btn.btn-transparent:before {
    background-color: #614a3d;
}

.btn.btn-transparent.white {
    color: #ffffff;
    border-color: #ffffff;
    background-color: transparent;
}

.btn.btn-transparent.white:before {
    background-color: #ffffff;
}

.btn-readmore {
    font-size: 1.143rem;

    position: relative;

    display: inline-block;

    text-transform: capitalize;

    color: #614a3d;
}

.btn-readmore:before {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 0;
    height: 1px;

    content: '';
    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;

    background-color: #614a3d;
}

.btn-readmore i {
    line-height: 24px;

    width: 24px;
    height: 24px;
    margin-left: 10px;

    text-align: center;

    color: #ffffff;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background-color: #614a3d;
}

.btn-readmore:hover {
    color: #614a3d;
}

.btn-readmore:hover:before {
    width: calc(100% - 33px);
}

.btn-viewmore {
    color: #a69e9a;
    border: 1px solid #beb9b6;
}

.btn-viewmore:hover {
    color: #a69e9a;
    border-color: transparent;
    box-shadow: 4.5px 7px 21px 0 rgba(0, 0, 0, .12);
}

.group-btn .btn-left {
    margin-right: 12px;
}

/*----------  1.2. Main title  ----------*/

.main-titles {
    position: relative;

    margin-bottom: 50px;

    text-align: center;
}.meetbenson {
    float: right;
    margin-top: -84px;
    display: block;
}.meetbenson img {
    width: 90%;
    height: auto;
}
#specials .main-titles {
    margin-bottom: 157px;
}
.main-titles .main-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 5.143rem;
    line-height: 50px;

    margin: 0;

    text-transform: capitalize;

    color: #79685e;
}

.main-titles .sub-title {
    font-size: 2.143rem;
    font-weight: 700;

    margin: 14px 0 5px 0;

    text-transform: uppercase;

    color: #614a3d;
}

.main-titles img {
    margin: 0 auto;
}

.main-titles.white .main-title,
.main-titles.white .sub-title {
    color: #ffffff;
}


/*----------  1.6. Input  ----------*/

.form-group {
    margin-bottom: 50px;
}

.form-group .col-sm-6 {
    margin-bottom: 30px;
}

.form-group .col-sm-6:nth-last-child(-n + 2) {
    margin-bottom: 0;
}

.form-control {
    width: 100%;
    height: 40px;

    text-align: left !important;

    color: #614a3d;
    border: none;
    border-bottom: 1px solid #614a3d;
    border-radius: 0 !important;
    background-color: transparent;
    box-shadow: none;
}

.form-control:hover,
.form-control:focus {
    border-color: #614a3d;
    box-shadow: none;
}

.form-control::-webkit-input-placeholder {
    color: #736b66;
}

.form-control:-moz-placeholder {
    color: #736b66;
}

.form-control::-moz-placeholder {
    color: #736b66;
}

.form-control:-ms-input-placeholder {
    color: #736b66;
}

.input-group,
.form-group {
    position: relative;
}

.input-group .input-group-addon,
.form-group .input-group-addon {
    color: #614a3d;
    border: none;
    border-bottom: 1px solid #614a3d;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    background-color: transparent;
}

.input-group .line-effect,
.form-group .line-effect {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;

    width: 0;
    height: 1px;

    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;

    background-color: #614a3d;
}

.input-group .form-control:focus + .line-effect,
.form-group .form-control:focus + .line-effect {
    width: 100%;
}

/*----------  1.9. Banner  ----------*/

.banner {
    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;
}

/*----------  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: #614a3d;
    border: 2px solid #614a3d;
    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: #614a3d;
}


/*=================================
======    END GLOBAL STYLE   ======
==================================*/

/*=================================
======          PAGE         ======
==================================*/

/*----------  2.1. Homepage 1  ----------*/

.homepage-banner {
    position: relative;

    overflow: hidden;

    width: 100%;
    height: 100vh;

    color: #ffffff;
    background-color: #000205;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
    -webkit-background-size: cover;
            background-size: cover;
}

.homepage-banner .container {
    height: 100%;
}

.homepage-banner-warpper {
    display: table;

    width: 100%;
    height: 100%;
}

.homepage-banner-content {
    display: table-cell;

    vertical-align: middle;
}

.homepage-default .homepage-banner-content {
    padding-top: 120px;
}



.blogs-list {
    padding-top: 50px;
}

.blogs-wrapper .image-wrapper {
    position: relative;

    display: block;
}

.blogs-wrapper .image-wrapper .label-time {
    font-weight: 700;

    position: absolute;
    z-index: 3;
    top: -50px;
    left: 50%;

    width: 100px;
    padding: 16px 0;

    -webkit-transition: all .8s ease;
       -moz-transition: all .8s ease;
         -o-transition: all .8s ease;
            transition: all .8s ease;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
    text-transform: uppercase;

    color: #ffffff;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background-color: #614a3d;
}

.blogs-wrapper .image-wrapper .label-time .day {
    font-size: 3.214rem;
    line-height: 1;
}

.blogs-wrapper .image-wrapper .label-time .month {
    font-size: 1.143rem;
}

.blogs-wrapper .image-wrapper .images,
.blogs-wrapper .image-wrapper blockquote,
.blogs-wrapper .image-wrapper .video-thumbnail {
    position: relative;
    z-index: 2;
    top: 0;
    left: 0;
border: solid 1px #000;
    width: calc(100% - 15px);

    -webkit-transition: all .8s ease;
       -moz-transition: all .8s ease;
         -o-transition: all .8s ease;
            transition: all .8s ease;
}

.blogs-wrapper .image-wrapper blockquote {
    margin: 0;
    padding: 80px 50px 50px 50px;

    color: #ffffff;
    border: none;
    background-image: url('../images/blogs/image-4.jpg');
}

.blogs-wrapper .image-wrapper blockquote .icons {
    font-size: 5.9rem;
    line-height: 70px;

    display: table-cell;

    vertical-align: top;
}

.blogs-wrapper .image-wrapper blockquote .quote-wrapper {
    display: table-cell;

    padding-left: 20px;

    vertical-align: top;
}

.blogs-wrapper .image-wrapper blockquote .quote-wrapper .quote {
    font-size: 1.143rem;

    color: #ffffff;
}

.blogs-wrapper .image-wrapper .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;
}

.blogs-wrapper .content-wrapper {
    margin-top: 40px;
}

.blogs-wrapper .content-wrapper .title {
    font-size: 1.714rem;
    font-weight: 700;
    line-height: 1.4;

    position: relative;

    display: inline-block;

    margin-bottom: 10px;

    color: #614a3d;
}

.blogs-wrapper .content-wrapper .title:before {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 0;
    height: 2px;

    content: '';
    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;

    background-color: #614a3d;
}

.blogs-wrapper .content-wrapper .title:hover:before {
    width: 100%;
}

.blogs-wrapper .content-wrapper .info {
    display: block;

    margin-bottom: 25px;
}

.blogs-wrapper .content-wrapper .info .item {
    position: relative;

    display: inline-block;

    padding: 0 15px;

    color: #666260;
}

.blogs-wrapper .content-wrapper .info .item i {
    margin-right: 8px;
}

.blogs-wrapper .content-wrapper .info .item.tag .link {
    position: relative;

    text-transform: capitalize;

    color: #666260;
}

.blogs-wrapper .content-wrapper .info .item.tag .link:hover {
    color: #614a3d;
}

.blogs-wrapper .content-wrapper .info .item.tag .link + .link {
    padding-left: 7px;
}

.blogs-wrapper .content-wrapper .info .item.tag .link + .link:before {
    position: absolute;
    left: 0;

    content: ',';

    color: #666260;
}

.blogs-wrapper .content-wrapper .info .item:first-child {
    padding-left: 0;
}

.blogs-wrapper .content-wrapper .info .item:last-child {
    padding-right: 0;
}

.blogs-wrapper .content-wrapper .info .item + .item:before {
    position: absolute;
    left: -3px;

    content: '/';
}

.blogs-wrapper .content-wrapper .text {
    margin-bottom: 25px;
}

.blogs-wrapper:hover .image-wrapper .label-time {
    top: -35px;
    left: calc(50% + 15px);
}

.blogs-wrapper:hover .image-wrapper .images,
.blogs-wrapper:hover .image-wrapper blockquote,
.blogs-wrapper:hover .image-wrapper .video-thumbnail {
    top: 15px;
    left: 15px;
}

.blogs-wrapper:hover .image-wrapper .border {
    top: 0;
    left: 0;
}

.coming-soon-wrapper {
    display: table;

    width: 100%;
    max-width: 1170px;
}

.coming-soon-wrapper .left-infomation,
.coming-soon-wrapper .right-infomation {
    display: table-cell;

    width: 50%;
    padding: 0 15px;

    vertical-align: middle;
}

.coming-soon-event-wrapper {
    text-align: center;

    color: #666260;
}

.coming-soon-event-wrapper .infomation .title {
    font-size: 1.714rem;
    font-weight: 700;
    line-height: 1.2;

    margin: 0 0 10px 0;

    text-transform: capitalize;

    color: #614a3d;
}

.coming-soon-event-wrapper .infomation .date {
    margin: 0 0 10px 0;
}

.coming-soon-event-wrapper .infomation .description {
    margin-bottom: 0;
}

.coming-soon-event-wrapper .coming-soon-count {
    max-width: 420px;
    margin: 40px auto 0 auto;
}

.coming-soon-event-wrapper .coming-soon-count .count-container {
    display: none;
}

.coming-soon-event-wrapper .coming-soon-count .count-wrapper {
    position: relative;

    display: inline-block;
    float: left;

    width: 33.333333%;
    padding: 0 30px;

    text-align: center;
}

.coming-soon-event-wrapper .coming-soon-count .count-wrapper .time {
    border: none;
}

.coming-soon-event-wrapper .coming-soon-count .count-wrapper .time .count {
    font-size: 4.286rem;
    font-weight: 700;
    line-height: 1.2;

    display: block;

    color: #614a3d;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

.coming-soon-event-wrapper .coming-soon-count .count-wrapper .time.hours .count {
    color: #ffffff;
    border-top: 1px solid #614a3d;
    border-bottom: 1px solid #614a3d;
    background-color: #614a3d;
}

.coming-soon-event-wrapper .coming-soon-count .count-wrapper .time-label {
    font-size: 1rem;
    font-weight: 700;

    margin-top: 15px;

    text-align: center;
    text-transform: uppercase;

    color: #614a3d;
}

.coming-soon-event-wrapper .btn {
    margin-top: 40px;
}

.coming-soon-event-wrapper.white .infomation .title {
    color: #ffffff;
}

.coming-soon-event-wrapper.white .infomation .date,
.coming-soon-event-wrapper.white .infomation .description {
    color: #e7e3e0; font-size: 27px;
    line-height: 31px;
}

.coming-soon-event-wrapper.white .coming-soon-count .count-wrapper .time .count {
    color: #e7e3e0;
    border-top: 1px solid #e7e3e0;
    border-bottom: 1px solid #e7e3e0;
}

.coming-soon-event-wrapper.white .coming-soon-count .count-wrapper .time.hours .count {
    color: #614a3d;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    background-color: #ffffff;
}

.coming-soon-event-wrapper.white .coming-soon-count .count-wrapper .time-label {
    color: #e7e3e0;
}

.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;
}

.image-event-2 {
    min-height: 400px;

    text-align: center;

    background-color: #121212;
    background-image: url('../images/more-image/event-1.jpg');
    background-attachment: fixed;
    background-position: center left -50%;
    background-size: contain;
}

 
/* drink menu section /*/
.wrapper-cup-parallax {
    position: relative;

    width: 100%;
    height: 540px;
}

.wrapper-cup-parallax .img-cup {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 50%;

    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

.wrapper-cup-parallax .img-coffee-1 {
    position: absolute;
    z-index: 2;
    top: 15%;
    left: 35%;
}

.wrapper-cup-parallax .img-coffee-2 {
    position: absolute;
    z-index: 2;
    top: 24%;
    left: 54%;
}

.wrapper-cup-parallax .img-coffee-3 {
    position: absolute;
    z-index: 2;
    top: 2%;
    left: 63%;
}

.wrapper-cup-parallax .img-sugar-1 {
    position: absolute;
    z-index: 2;
    top: 1%;
    left: 43%;
}

.wrapper-cup-parallax .img-sugar-2 {
    position: absolute;
    z-index: 2;
    top: 22%;
    left: 46%;
}

.wrapper-cup-parallax .img-water-1 {
    position: absolute;
    z-index: 2;
    top: 22%;
    right: 32%;
}

.wrapper-cup-parallax .img-water-2 {
    position: absolute;
    z-index: 2;
    top: 28%;
    left: 32%;
}

.wrapper-cup-parallax .img-water-3 {
    position: absolute;
    z-index: 2;
    top: 30%;
    left: 42%;
}

.wrapper-cup-parallax .img-water-4 {
    position: absolute;
    z-index: 2;
    top: 40%;
    left: 30%;
}

.wrapper-cup-parallax .img-water-5 {
    position: absolute;
    z-index: 2;
    top: 26%;
    right: 35%;
}

.wrapper-cup-parallax .infomation {
    position: absolute;
    z-index: 5;

    overflow: hidden;

    width: 100%;
    max-width: 330px;
}

.wrapper-cup-parallax .infomation.layout-1 {
    top: 16%;
    left: 0;

    text-align: left;
}

.wrapper-cup-parallax .infomation.layout-3 {
    top: 62%;
    left: 0;

    text-align: left;
}

.wrapper-cup-parallax .infomation.layout-2 {
    top: 16%;
    right: 0;

    text-align: right;
}

.wrapper-cup-parallax .infomation.layout-4 {
    top: 62%;
    right: 0;

    text-align: right;
}

.wrapper-cup-parallax .infomation.layout-2 .table-info,
.wrapper-cup-parallax .infomation.layout-4 .table-info {
    margin-left: auto;
}

.wrapper-cup-parallax .infomation.layout-2 .title,
.wrapper-cup-parallax .infomation.layout-4 .title {
    float: right;
}

.wrapper-cup-parallax .infomation.layout-2 .title:before,
.wrapper-cup-parallax .infomation.layout-4 .title:before {
    right: 0;
    left: auto;
}

.wrapper-cup-parallax .infomation.layout-2 .icons,
.wrapper-cup-parallax .infomation.layout-4 .icons {
    float: left;
}

.wrapper-cup-parallax .infomation .heading {
    position: relative;
    z-index: 5;

    display: block;

    padding: 5px 0 10px 0;

    cursor: pointer;
}

.wrapper-cup-parallax .infomation .heading:hover .icons,
.wrapper-cup-parallax .infomation .heading.active .icons {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
}

.wrapper-cup-parallax .infomation .heading.active .icons:before {
    content: '\f068';
}

.wrapper-cup-parallax .infomation .table-info {
    display: table;

    padding: 10px 0;
}

.wrapper-cup-parallax .infomation .table-info .cell-1,
.wrapper-cup-parallax .infomation .table-info .cell-2 {
    display: table-cell;

    vertical-align: middle;
}

.wrapper-cup-parallax .infomation .title {
    font-size: 2.143rem;
    font-weight: bold;
    line-height: 25px;

    position: relative;

    float: left;

    margin: 0;
    padding-right: 5px;

    text-transform: capitalize;

    color: #614a3d;
    background-color: #ffffff;
}

.wrapper-cup-parallax .infomation .title:before {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;

    width: 300px;
    height: 1px;

    content: '';

    background-color: #614a3d;
}

.wrapper-cup-parallax .infomation .icons {
    line-height: 27px;

    float: right;

    width: 25px;
    height: 25px;
    margin-right: 3px;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
    text-align: center;

    color: #614a3d;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.wrapper-cup-parallax .infomation .text {
    margin: 0;
text-align: CENTER;
    text-transform: uppercase;

    color: #614a3d;
}

.wrapper-cup-parallax .infomation .number {
    font-family: 'Permanent Marker', cursive;
    font-size: 6rem;
    line-height: 50px;

    margin: 0;
    padding: 0 15px;

    color: #bcb5b2;
}

.wrapper-cup-parallax .infomation .more-infomation {
    margin-top: 15px;
}

.wrapper-cup-parallax .infomation .more-infomation .description {
    margin: 0;
}

.wrapper-cup-parallax .infomation .more-infomation .btn-readmore {
    margin-top: 10px;
}


/*----------  2.3. Homepage 3  ----------*/

.homepage-parallax {
    position: relative;

    overflow: hidden;

    width: 100%;
    height: 498px;
}

.homepage-parallax .container {
    height: 100%;
}

.homepage-parallax .img-background {
    position: absolute;
    z-index: 1;
    top: -150px;
    right: 0;
    bottom: 0;
    left: 0; width: 100%;
}

.homepage-parallax .homepage-banner-warpper {
    position: relative;
    z-index: 10;

    display: table;

    width: 100%;
    max-width: 770px;
    height: 100%;
    margin: 0 auto;
}

.homepage-parallax .homepage-banner-content {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
PADDING-TOP: 114px;
    color: #d8d3cf;
}

.homepage-parallax .title {
   font-size: 4.2rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.homepage-parallax .subtitle {
   font-size: 2.843rem;
    font-weight: 300;
    line-height: 1;
    margin: 0;
    letter-spacing: 7px;
	text-transform: uppercase; }

.homepage-parallax .description {
    font-size: 14px;
    font-weight: 300;

    margin: 25px 0 0 0;
    padding: 0 15px;
}

.homepage-parallax .group-btn {
    margin-top: 40px;
}


.testimonial.style-2 {
    background-image: url('../images/background-full/banner-10.jpg');
}


/*----------  2.6. Menu grid  ----------*/



.wrapper-list-menu .infomation-menu-wrapper .list-infomation {
    margin-bottom: 0;
}


.blog-wrapper .blogs-wrapper {
    margin-top: 100px;
}

.blog-wrapper .blogs-wrapper:first-child {
    margin-top: 50px;
}

.contact-form-wrapper {
    position: relative;

    overflow: hidden;

    background-color: #f9f7f5;
}

.contact-form-wrapper .img-bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
}

.contact-form-wrapper .container {
    position: relative;
    z-index: 2;
}

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

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-control {
    border-bottom: 1px solid #bbbcc0;
    background-color: transparent;
}

.contact-form .form-textarea {
    max-width: 100%;
    height: 120px;
    margin-top: 30px;
}

.contact-map {
    position: relative;

    width: 100%;
}

.contact-map #googleMap {
    height: 480px;
}

.text-danger {
    color: #e74c3c;
}

.input-group {
    margin-bottom: 0;
}

.help-block {
    margin: 0;
}

.help-block ul {
    margin-bottom: 0;

    text-align: left;
}


/*=================================
======        END PAGE       ======
==================================*/

