/* General settings */
body {
    font-family: 'Open Sans',Helvetica,Arial,sans-serif;
    font-size: 16px;
    line-height: 16px;
    color: #333;
    font-weight: 300;

    -webkit-user-select: none;  
    -moz-user-select: none;    
    -ms-user-select: none;      
    user-select: none;
}

.clear {
    clear: both;
}

.ac { text-align: center; }

h1 {
    font-size: 36px;
    color: #4b463c;
    -webkit-font-smoothing: antialiased;
    font-weight: 100;
    letter-spacing: -1px;
    padding-top: 70px;
    line-height: 46px;
    margin-top: 0;
}

.main-page p {
    max-width: 760px;
    font-size: 20px;
    line-height: 1.6;
    color: #4b463c;
    margin: 20px auto 0;
}

.container-main {
    margin-top: -2px;
}

.container-main section h1 { text-align: center; }
.container-main p { text-align: center; margin: 30px auto 0; }


.container-main section {
    background: -moz-linear-gradient(top, rgba(237,229,218,1) 0%, rgba(255,255,255,0) 100px); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(237,229,218,1)), color-stop(100px,rgba(255,255,255,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(237,229,218,1) 0%,rgba(255,255,255,0) 100px); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(237,229,218,1) 0%,rgba(255,255,255,0) 100px); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(237,229,218,1) 0%,rgba(255,255,255,0) 100px); /* IE10+ */
    background: linear-gradient(to bottom, rgba(237,229,218,1) 0%,rgba(255,255,255,0) 100px); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ede5da', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}

.container-main section img {
    display: block;
    margin: 50px auto 0;
}

.container-main.legal p, .container-main.legal li {
    font-size: 18px;
    line-height: 24px;
    color: #666;
}
.container-main.legal ul { margin-top: 20px; }
.container-main.legal li { margin-top: 8px; }

.container-footer {
    margin-top: -2px;
    height: 70px;
    background-color: #333;
    padding: 0 40px;
    line-height: 70px;
    color: #eee;
}

.container-footer a.menu-btn {
    background-color: transparent;
    color: #fff;
}

.quotes { background-color: #FAFAFA; margin-top: -2px; }
.quotes p { margin: 0 auto; padding: 50px 20px; font-size: 22px; font-style: italic; color: #999; }
/* Forms */
label {
    display: block;
    font-weight: bold;
    margin: 15px 0 5px 0;
    color: #333;
}

input, textarea { width: 100% }
textarea { height: 150px; }

/* Fixed navbar */
#fixed-navbar {
    position: fixed;
    height: 60px;
    background-color: #fff;
    width: 100%;
    opacity: 0;
    z-index: 10000;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

#fixed-navbar.active {
    opacity: 0.85;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px)
}

#fixed-navbar.menu-active {
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -o-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px)
}

#fixed-navbar .logo {
    position: relative;
    top: 4px;
    left: 50%;
    width: 46px;
    margin-left: -30px;
}

#fixed-navbar div.download-app {
    float: right;
    margin-top: 13px;
    margin-right: 30px;
}

/* Menu */
#fixed-menu {
    position: fixed;
    width: 100%;
    height: 30px;
    background-color: white;
    z-index: 9999;
    opacity: 0.85;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

#fixed-menu.active {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px)
}

#fixed-menu ul {
    list-style-type: none;
}

#fixed-menu ul li {
    display: inline-block;
    float: left;
    margin-right: 15px;
    padding-left: 20px;
    line-height: 10px;
    background: left center no-repeat url('../img/bullet.png');
    font-size: 14px;
    line-height: 5px;
}

#fixed-menu a {
    text-decoration: none;
    color: inherit;
}

a#menu-btn {
    position: absolute;
    top: 13px;
    left: 40px;
}
a#download-btn {
    position: absolute;
    top: 13px;
    right: 40px;
}

a.menu-btn {
    font-size: 14px;
    display: inline-block;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-color: #DEDEDE;
    color: #555;
    cursor: pointer;
    padding: 0 6px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;
}

a.menu-btn i { font-size: 16px; }
/* Header */
#container-header {
    width: 100%;
    position: absolute;
    top:0;
    left: 0;
    z-index: 10000;
    text-align: center;
    height: 180px;
    line-height: 180px;
    display: block;
}

#container-header .logo {
    position: absolute;
}

/* Slider */
#slider {
    width: 100%;
    position: relative;
}

#slider img {
    z-index: 1;
    width: 100%;
}

/* Download button */
div.download-app {
    display: inline-block;
    width: 226px;
    line-height: 1;
    position: relative;
}

div.download-app .hidden {
    border-color: #929292;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

div.download-app span.ctn {
    display: inline-block;
    verical-align: middle;
    height: 30px;
    border-radius: 4px;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    line-height: 30px;
    padding: 0 5px;
    font-weight: 300;
    text-decoration: none;
    width: 150px;
    color: #929292;
    border-color: #929292
}

div.download-app:hover span.ctn span {
    opacity: 0;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none
}

div.download-app:hover .hidden {
    opacity: 1
}

div.download-app span.ctn span {
    -webkit-transition: opacity 900ms cubic-bezier(0.25, .46, .45, .94);
    -moz-transition: opacity 900ms cubic-bezier(0.25, .46, .45, .94);
    -o-transition: opacity 900ms cubic-bezier(0.25, .46, .45, .94);
    transition: opacity 900ms cubic-bezier(0.25, .46, .45, .94)
}

div.download-app.white span.ctn {
    border-color: #fff;
    color: #fff;
    height: 45px;
    width: 200px;
    line-height: 45px;
    font-weight: 700;
    border-width: 3px;
    padding: 0 10px;
}

div.download-app.white a {
    height: 45px;
    border-width: 3px;
    line-height: 45px;
    padding: 0 10px;
    font-weight: 700;
    width: 89px;
}

div.download-app a {
    display: inline-block;
    verical-align: middle;
    height: 30px;
    border-width: 2px;
    border-style: solid;
    border-color: #929292;
    text-align: center;
    line-height: 30px;
    padding: 0 5px;
    color: inherit;
    font-weight: 300;
    text-decoration: none;
    width: 64px;
    -webkit-transition: all 300ms cubic-bezier(0.25, .46, .45, .94);
    -moz-transition: all 300ms cubic-bezier(0.25, .46, .45, .94);
    -o-transition: all 300ms cubic-bezier(0.25, .46, .45, .94);
    transition: all 300ms cubic-bezier(0.25, .46, .45, .94)
}

div.download-app a.ios {
    border-radius: 4px 0 0 4px;
    border-style: solid;
    border-color: inherit;
    border-right-width: 0;
    padding-right: 11px;
    color: #929292
}

div.download-app a.android {
    border-radius: 0 4px 4px 0;
    border-style: solid;
    border-color: inherit;
    border-left-width: 0;
    padding-left: 11px;
    color: #929292
}

div.download-app a.android i {
    font-weight: 300;
    font-style: italic;
    font-size: 12px;
}

div.download-app a:hover {
    border-color: #f36b6b;
    background-color: #f36b6b;
    color: #fff;
    -webkit-transition: all 700ms cubic-bezier(0.19, 1, .22, 1);
    -moz-transition: all 700ms cubic-bezier(0.19, 1, .22, 1);
    -o-transition: all 700ms cubic-bezier(0.19, 1, .22, 1);
    transition: all 700ms cubic-bezier(0.19, 1, .22, 1)
}

div.download-app a.android:hover {
    background-color: #999;
    border-color: #999;
    font-weight: 300;
    font-style: italic;
}

div.download-app.white {
    border-color: #fff !important;
    color: #fff !important;
    top: 10px
}

/* Other pages */
body.appendix .appendix-content { 
    background: -moz-linear-gradient(top, rgba(237,229,218,1) 0%, rgba(255,255,255,0) 200px); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(237,229,218,1)), color-stop(200px,rgba(255,255,255,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(237,229,218,1) 0%,rgba(255,255,255,0) 200px); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(237,229,218,1) 0%,rgba(255,255,255,0) 200px); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(237,229,218,1) 0%,rgba(255,255,255,0) 200px); /* IE10+ */
    background: linear-gradient(to bottom, rgba(237,229,218,1) 0%,rgba(255,255,255,0) 200px); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ede5da', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */

 }

/* Contact form */
.appendix input, .appendix textarea, .appendix select, .appendix label {
  font-family: inherit;
  font-size: 12px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.contact {
  position: relative;
  margin: 50px auto;
  padding: 5px;
  width: 330px;
  background: #f6f2ed;
  border: 1px solid #cfd5da;
  border-bottom-color: #ccd1d6;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.contact-inner {
  padding: 25px;
  background: white;
  border-radius: 2px;
}

.contact:before, .contact:after, .contact-inner:before, .contact-inner:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  width: 1px;
  height: 1px;
  border: outset transparent;
  border-width: 12px 14px 0;
  border-top-style: solid;
  -webkit-transform: rotate(360deg);
}

.contact:before {
  margin-top: 1px;
  border-top-color: #b5a083;
}

.contact-inner:before {
  border-top-color: #b5a083;
}

.contact-inner:after {
  margin-top: -1px;
  border-top-color: #f6f2ed;
}

.contact:after {
  margin-top: -8px;
  border-top-color: white;
}

.contact-input {
  overflow: hidden;
  margin-bottom: 20px;
  padding: 5px;
  background: #f6f2ed;
  border-radius: 2px;
}
.contact-input > input, .contact-input > textarea {
  display: block;
  width: 100%;
  height: 29px;
  padding: 0 9px;
  color: #4d5a5e;
  background: white;
  border: 1px solid #c6b399;
  border-bottom-color: #c6b399;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05), 0 1px rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05), 0 1px rgba(255, 255, 255, 0.2);
}
.contact-input > input:focus, .contact-input > textarea:focus {
  border-color: #b5a083;
  outline: 0;
  -webkit-box-shadow: 0 0 0 8px #e1ecf5;
  box-shadow: 0 0 0 8px #e1ecf5;
}
.lt-ie9 .contact-input > input, .lt-ie9 .contact-input > textarea {
  line-height: 27px;
}
.contact-input > textarea {
  padding: 4px 8px;
  height: 90px;
  line-height: 20px;
  resize: none;
}

.select {
  display: block;
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid #d2e2e7;
  border-bottom-color: #c5d4d9;
  border-radius: 2px;
  background-image: -webkit-linear-gradient(top, #fffefc, #f7f5f2);
  background-image: -moz-linear-gradient(top, #fffefc, #f7f5f2);
  background-image: -o-linear-gradient(top, #fffefc, #f7f5f2);
  background-image: linear-gradient(to bottom, #fffefc, #f7f5f2);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.select:before, .select:after {
  content: '';
  position: absolute;
  right: 11px;
  width: 0;
  height: 0;
  border-left: 3px outset transparent;
  border-right: 3px outset transparent;
}
.select:before {
  top: 10px;
  border-bottom: 3px solid #c6b399;
}
.select:after {
  top: 16px;
  border-top: 3px solid #c6b399;
}
.select > select {
  position: relative;
  z-index: 2;
  width: 112%;
  height: 29px;
  line-height: 17px;
  padding: 5px 9px;
  padding-right: 0;
  color: #beaf86;
  background: transparent;
  background: rgba(0, 0, 0, 0);
  border: 0;
  -webkit-appearance: none;
}
.select > select:focus {
  color: #4d5a5e;
  outline: 0;
}

.contact-submit {
  text-align: right;
}
.contact-submit > input {
  display: inline-block;
  vertical-align: top;
  padding: 0 14px;
  height: 29px;
  font-weight: bold;
  color: #beaf86;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
  background: #c6b399;
  border: 1px solid #b5a083;
  border-bottom-color: #b5a083;
  border-radius: 15px;
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #f7f2e6, #eee6d0);
  background-image: -moz-linear-gradient(top, #f7f2e6, #eee6d0);
  background-image: -o-linear-gradient(top, #f7f2e6, #eee6d0);
  background-image: linear-gradient(to bottom, #f7f2e6, #eee6d0);
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 4px #eef7f9;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 4px #eef7f9;
}
.contact-submit > input:active {
  color: #6a95a9;
  text-shadow: 0 1px rgba(255, 255, 255, 0.3);
  background: #c9dfe9;
  border-color: #a3bed0 #b5ccda #b5ccda;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px rgba(255, 255, 255, 0.2), 0 0 0 4px #eef7f9;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px rgba(255, 255, 255, 0.2), 0 0 0 4px #eef7f9;
}

/* Press */
.keep-in-touch { display:block; margin: 100px auto 0; text-align: center; color: #a3865f; font-size: 72px; line-height: 72px; text-decoration: none; }

/* About page */
.appendix .about p { font-size: 20px; font-weight: 100; font-style: italic; line-height: 26px; max-width: 700px; margin: 20px auto 0; text-align: justify; }

@media screen and (max-width: 399px)
{
    #container-header .logo {
        top: 10px;
        width: 40px;
        left: 50%;
        margin-left: -10px;
    }
}
@media screen and (min-width: 400px) and (max-width: 759px)
{
    #container-header .logo {
        top: 15px;
        width: 60px;
        left: 40%;
        margin-left: -20px;
    }
}
@media screen and (max-width: 759px)
{
    .hide-small { display: none !important; }
    #container-header div.download-app {
        display: none;
    }

    .container-fullwidth img { width: 100% }
    .container-main img { max-width: 100% }
    .container-main section p { padding: 0 20px; }

}
@media screen and (min-width: 760px)
{
    .show-small { display: none !important;}
    #container-header { min-width: 760px; }
    #container-header .logo {
        left: 50%;
        top: 50px;
        width: 150px;
        margin-left: -55px;
    }
    #container-header div.download-app {
        position: relative;
        left: 50%;
        margin-left: -380px;
    }

    .container-main, .container-fullwidth, .container-fullwidth img {
        width: 100%;
    }
    
}