/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Box Model */
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

/* Grid System */

.container {
    margin: 0 auto;
    padding: 0 15px;
}

.row:after,
.features-row:after {
    content: "";
    display: table;
    clear: both;
}

@media only screen and (min-width: 510px) {
    .container {
        width: 480px;
        padding: 0;
    }
    .row {
        margin: 0 -6.6666px;
    }
    .features-row {
        margin: 0 -15px;   
    }
}
@media only screen and (min-width: 768px) {
    .container {
        width: 746px;
        
    }
}
@media only screen and (min-width: 1024px) {
    .container {
        width: 1000px;
    }
}


.col-1-3,
.col-1-4 {
    float: left;
}

@media only screen and (min-width: 510px) {
    .col-1-3 {
        padding: 0 15px;
    }
    .col-1-4 {
        padding: 0 6.6666px;
        width: 50%; 
    }
}
@media only screen and (min-width: 768px) {
    .col-1-3 {
        width: 33.33333%; 
    }
}

@media only screen and (min-width: 1024px) {
    .col-1-4 {
        width: 25%;
    }  
}


/* Basic */

body {
    background-color: #eee;
    font: 400 15px/22px "Open sans", sans-serif;
    color: #8b8b8b;
}
ul, li {
    display: inline-block;
}

/* Header */

.header {
    padding: 0 15px;
}
.logo,
.icon-menu {
    display: inline-block;
    
}
    /* Logo */
    
    .logo {
        font-size: 33px;
        font-weight: 300;
        line-height: 1em;
        color: #f4f3ee;
        margin-top: 26px;
        padding-left: 36px;
        background-image: url("../../images/logo.png");
        background-repeat: no-repeat;
        background-position: left center;
    }
    /* Icon */
    .icon-menu {
        content: "";
        width: 24px;
        height: 17px;
        margin-top: 32px;
        background-image: url("../../images/menu-icon.png");
        float: right;
        cursor: pointer;
    }

@media (min-width: 768px) {
	.header {
		padding: 0 60px;
	}
}
/* Banner */

.banner {
    margin-top: -60px;
    padding: 214px 0;
    text-align: center;
    background: url("../../images/bg-00.jpg"), #2980B9;
    background-size: cover;
}
.banner-title {
    font-size: 52px;
    font-weight: 300;
    line-height: 62px;
    color: #fff;
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .banner {
        height: 100vh;
    }
}

/* Pricings */

.pricings {
    padding-top: 70px;
    padding-bottom: 40px;
}
.block-title {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #323232;
    margin-bottom: 20px;
}
.block-subtitle,
.block-text {
    margin-bottom: 40px;
}

.place-card {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid #e1e0d8;
  margin-bottom: 30px;
  transition: all .2s ease;
}

@media only screen and (min-width: 1024px) {
    .place-card:hover {
    transform: scale(1.04);
    transition: all .1s ease;
    }    
}


.place-card-price {
  position: absolute;
  z-index: 1000;
  bottom: 15px;
  right: 15px;
  color: #fff;
}
.place-card-image:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 100;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 45%);
}
.place-card-content {
    padding: 20px;   
}
.card-image {
    width: 100%;
}
.place-card-image {
    overflow: hidden;
    position: relative;
    line-height: 0;
}
.place-card-name {
    color: #323232;
    text-transform: uppercase;
    margin-bottom: 10px;
}
/* Features */
.features {
    padding-top: 80px;
    padding-bottom: 50px;
    background-color: #fff;
}
.features-title {
    font-size: 52px;
    font-weight: 300;
    line-height: 1em;
    color: #323232;
    margin-bottom: 56px;
}
    /* Subscribe */
.subscribe {
    padding-top: 70px;
    text-align: center;
}

/* Footer */
.footer {
    padding: 30px 0;
    text-align: center;
}
.copyrights {
    display: inline-block;
    margin-bottom: 15px;
}
.copyrights a {
    color: #555;
}
.nav-hz-footer li {
    padding-left: 15px;
}
.nav-hz-footer:first-of-type {
    padding-left: 0;
}
.nav-hz-footer a {
    color: #323232;
    text-transform: uppercase;
    text-decoration: none;
}
@media only screen and (min-width: 768px) {
    .footer {
        text-align: left;
    }
    .nav-hz-footer {
        float: right;
    }
}
@media only screen and (min-width: 1014px) {
    .copyrights {
        margin-bottom: 0;
    }
    
}
/* Form */
.input {
    height: 40px;
    border: none;
    outline: none;
    vertical-align: top;
    font: 400 16px/40px "Open Sans", sans-serif;
    color: #8b8b8b;
}
.input-search,
.input-email{
    padding: 0 14px;
    margin-bottom: 12px;
}
.input-search,
.input-email,
.input-btn {
    width: 100%;
}
.input-email {
    background-color: #eee;
}
.input-btn {
    padding: 0 50px;
    color: #fff;
    background-color: #fd4f32;
    cursor: pointer;
    
}
@media only screen and (min-width: 768px) {
    .input-email,
    .input-search {
        width: 326px;
    }
    .input-btn {
        width: auto;
    }
}
/* Side menu */
.menu {
    display: inline-block;
    width: 300px;
    height: 100%;
    padding-top: 60px;
    position: fixed;
    right: -300px;
    z-index: 1000;
    background-color: #fff;
    transition: all ease .3s;
    color: #333;
    border-left: 1px solid rgba(0, 0, 0, .1);
}
.side-nav-list {
    display: block;
    text-align: center;
}
.side-nav-item {
    display: block;

}
.side-nav-item a {
    
    display: inline-block;
    text-align: left;
    width: 80%;
    padding: 0 30px;
    line-height: 50px;
    color: #333;
    font-size: 22px;
    font-weight: 400;
    text-decoration: none;
}
.side-nav-item a:hover {
    background-color: #fd4f32;
    color: #fff;
}
.menu-exit {
    font-size: 30px;
    color: #333;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
