@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
	3.1 Header - Logo
	3.2 Header - Main Navigation
	3.3 Header - Search
	3.4 Header - Shopping
	3.5 Header - Burger
4. Home
5. Menu
6. Product
	6.1 Current Page
	6.2 Product Image
	6.3 Product Content
7. Reviews
8. Review Form
9. Newsletter
10. Footer


******************************/

/***********
1. Fonts
***********/

@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");
@font-face {
    font-family: "Lucida";
    src: url("../fonts/lucida_bright_regular.ttf") format("truetype");
}
@font-face {
    font-family: "Lucida";
    src: url("../fonts/lucida_bright_demi.ttf") format("truetype");
    font-weight: 700;
}
@font-face {
    font-family: "Beyond";
    src: url("../fonts/beyond_the_mountains.otf") format("opentype"),
        url("../fonts/beyond_the_mountains.ttf") format("truetype");
}

/*********************************
2. Body and some general stuff
*********************************/

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
body {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: #ffffff;
    color: #2f2f2f;
}
div {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul {
    list-style: none;
    margin-bottom: 0px;
}
p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
    color: #929191;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
p a {
    display: inline;
    position: relative;
    color: inherit;
    border-bottom: solid 1px #ffa07f;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
a,
a:hover,
a:visited,
a:active,
a:link {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
p a:active {
    position: relative;
    color: #ff6347;
}
p a:hover {
    color: #ffffff;
    background: #ffa07f;
}
p a:hover::after {
    opacity: 0.2;
}
::selection {
}
p::selection {
}
h1 {
    font-size: 48px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
h5 {
    font-size: 14px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {
}
.form-control {
    color: #db5246;
}
section {
    display: block;
    position: relative;
    box-sizing: border-box;
}
.clear {
    clear: both;
}
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}
.clearfix::after {
    clear: both;
}
.clearfix {
    zoom: 1;
}
.float_left {
    float: left;
}
.float_right {
    float: right;
}
.trans_200 {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.trans_300 {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.trans_400 {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.trans_500 {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.fill_height {
    height: 100%;
}
.super_container {
    width: 100%;
    overflow: hidden;
}
.prlx_parent {
    overflow: hidden;
}
.prlx {
    height: 130% !important;
}
.parallax-window {
    min-height: 400px;
    background: transparent;
}
.nopadding {
    padding: 0px !important;
}
.section_title_container {
}
.section_subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #937c6f;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.section_title {
    font-family: "Lucida", serif;
    font-size: 60px;
    text-transform: uppercase;
    color: #2f2f2f;
    margin-top: -4px;
}
.button {
    width: 142px;
    height: 46px;
    background: #937c6f;
    text-align: center;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.button a {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.2em;
    line-height: 46px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.button:hover {
    background: #e0e3e4;
}
.button:hover a {
    color: #232323;
}

/*********************************
3. Header
*********************************/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #ffffff;
    z-index: 100;
    padding-left: 60px;
    padding-right: 64px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.header.scrolled {
    height: 80px;
}
.header_inner {
    width: 100%;
    height: 100%;
}

/*********************************
3.1 Header - Logo
*********************************/

.logo a {
    font-family: "Lucida", serif;
    font-size: 30px;
    color: #2f2f2f;
}

/*********************************
3.2 Header - Main Navigation
*********************************/

.main_nav {
    padding-left: 252px;
    -webkit-transform: translateY(4px);
    -moz-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
}
.main_nav ul li {
    display: inline-block;
    margin-right: 50px;
}
.main_nav ul li:last-child {
    margin-right: 0;
}
.main_nav ul li a {
    font-size: 12px;
    text-transform: uppercase;
    color: #2f2f2f;
    font-weight: 600;
    letter-spacing: 0.2em;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.main_nav ul li a:hover {
    color: #937c6f;
}

/*********************************
3.3 Header - Search
*********************************/

.search {
    display: inline-block;
    width: 400px;
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -ms-transform: translateY(2px);
    -o-transform: translateY(2px);
    transform: translateY(2px);
}
.search_input {
    width: 100%;
    height: 43px;
    background: #f9f5f5;
    border: none;
    outline: none;
    padding-left: 20px;
}
.search_button {
    position: absolute;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    width: 19px;
    height: 19px;
    background: transparent;

    border: none;
    outline: none;
}
.search_button:focus {
    outline: none !important;
}
.search_button img {
    max-width: 100%;
}

/*********************************
3.4 Header - Shopping
*********************************/

.shopping {
    display: inline-block;
    margin-left: 111px;
    padding-right: 161px;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}
.shopping a {
    display: inline-block;
    margin-right: 10px;
}
.shopping a:last-child {
    margin-right: 0;
}
.cart_num_container,
.star_num_container {
    position: absolute;
    top: 13px;
    left: -5px;
    width: 15px;
    height: 15px;
    background: #937c6f;
    border-radius: 50%;
}
.cart_num_inner,
.star_num_inner {
    width: 100%;
    height: 100%;
}
.cart_num,
.star_num {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 9px;
    font-weight: 600;
    color: #ffffff;
}
.star img {
    width: 20px;
    height: 20px;
}
.avatar img {
    width: 20px;
    height: 20px;
}

/*********************************
3.5 Header - Burger
*********************************/

.burger_container {
    position: absolute;
    top: calc(50% + 4px);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 22px;
    height: 16px;
    cursor: pointer;
}
.burger_container div {
    width: 100%;
    height: 2px;
    background: #232323;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    pointer-events: none;
}
.burger_container:hover div {
    background: #937c6f;
}

/*********************************
4. Home
*********************************/

.home1 {
    width: 100%;
    /* padding-top: 100px; */
    height: 100px;
    margin-top: 30px;
    margin-bottom: 0px;
}
.home_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.home_container1 {
    width: 100%;
    height: 100px;
}
.home_content1 {
    /* position: absolute; */
    left: 0;
    top: 62.4%;
    width: 100%;
}
.home_title1 {
    font-family: "Lucida", serif;
    font-size: 36px;
    color: #000;
    line-height: 0.75;
    text-align: center;
}
.breadcrumbs1 {
    margin-top: 6px;
}
.breadcrumbs1 ul li {
    display: inline-block;
    position: relative;
    font-family: "Lucida", serif;
    font-size: 16px;
    color: #000;
}
.breadcrumbs1 ul li a {
    font-family: "Lucida", serif;
    font-size: 16px;
    color: #000;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.breadcrumbs1 ul li::after {
    display: inline-block;
    content: "/";
    margin-left: 6px;
}
.breadcrumbs1 ul li:last-child::after {
    display: none;
}
.breadcrumbs1 ul li a:hover {
    color: #937c6f;
}

/*********************************
5. Menu
*********************************/

.menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #ffffff;
    z-index: 101;
    padding-right: 60px;
    padding-top: 87px;
    padding-left: 50px;
}
.menu.active {
    right: 0;
}
.menu_close_container {
    position: absolute;
    top: 30px;
    right: 60px;
    width: 18px;
    height: 18px;
    transform-origin: center center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    cursor: pointer;
}
.menu_close {
    width: 100%;
    height: 100%;
    transform-style: preserve-3D;
}
.menu_close div {
    width: 100%;
    height: 2px;
    background: #232323;
    top: 8px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.menu_close div:last-of-type {
    -webkit-transform: rotate(90deg) translateX(-2px);
    -moz-transform: rotate(90deg) translateX(-2px);
    -ms-transform: rotate(90deg) translateX(-2px);
    -o-transform: rotate(90deg) translateX(-2px);
    transform: rotate(90deg) translateX(-2px);
    transform-origin: center;
}
.menu_close:hover div {
    background: #937c6f;
}
.menu .logo {
    margin-bottom: 60px;
}
.menu_nav ul li {
    margin-bottom: 11px;
}
.menu_nav ul li a {
    font-size: 12px;
    text-transform: uppercase;
    color: #2f2f2f;
    font-weight: 600;
    letter-spacing: 0.2em;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.menu_nav ul li a:hover {
    color: #937c6f;
}
.menu .search {
    width: 100%;
    margin-bottom: 67px;
}

/*********************************
6. Product
*********************************/

.product {
    padding-top: 22px;
    padding-bottom: 15px;
    background: #ffffff;
}

/*********************************
6.1 Current Page
*********************************/
/* 
.current_page
{
	
} */
.current_page ul li {
    display: inline-block;
    position: relative;
    font-family: "Lucida", serif;
    font-size: 16px;
    color: #232323;
    margin-top: 60px;
    margin-bottom: 0px;
}
.current_page ul li::after {
    display: inline-block;
    content: "/";
    margin-left: 10px;
    margin-right: 6px;
}
.current_page ul li:last-child::after {
    display: none;
}
.current_page ul li a {
    font-family: "Lucida", serif;
    font-size: 16px;
    color: #232323;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.current_page ul li a:hover {
    color: #937c6f;
}

/*********************************
6.2 Product Image
*********************************/

.product_row {
    margin-top: 15px;
}
.product_image {
    width: 100%;
}
.product_image_large {
    width: 100%;
}
.product_image_large img {
    max-width: 100%;
    height: 500px;
}
.product_image_thumbnails {
    margin-top: 28px;
    margin-bottom: 28px;
}
.product_image_thumbnail {
    width: auto;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-right: 30px;
    cursor: pointer;
}
.product_image_thumbnail:last-child {
    margin-right: 0;
}

/*********************************
6.3 Product Content
*********************************/

.product_name {
    font-size: 30px;
    font-weight: 600;
    color: #232323;
    line-height: 1.5;
}
.product_price {
    font-size: 24px;
    font-weight: 600;
    margin-top: 9px;
    color: #8a8a8a;
}
.rating {
    margin-top: 9px;
}
.rating i {
    font-size: 18px;
    margin-right: 3px;
    color: #e0e3e4;
}
.rating i:last-child {
    margin-right: 0px;
}
.rating_1 i:first-child {
    color: #f5c06f;
}
.rating_2 i:first-child {
    color: #f5c06f;
}
.rating_2 i:nth-child(2) {
    color: #f5c06f;
}
.rating_3 i:first-child {
    color: #f5c06f;
}
.rating_3 i:nth-child(2) {
    color: #f5c06f;
}
.rating_3 i:nth-child(3) {
    color: #f5c06f;
}
.rating_4 i:first-child {
    color: #f5c06f;
}
.rating_4 i:nth-child(2) {
    color: #f5c06f;
}
.rating_4 i:nth-child(3) {
    color: #f5c06f;
}
.rating_4 i:nth-child(4) {
    color: #f5c06f;
}
.rating_5 i:first-child {
    color: #f5c06f;
}
.rating_5 i:nth-child(2) {
    color: #f5c06f;
}
.rating_5 i:nth-child(3) {
    color: #f5c06f;
}
.rating_5 i:nth-child(4) {
    color: #f5c06f;
}
.rating_5 i:nth-child(5) {
    color: #f5c06f;
}
.in_stock_container {
    margin-top: 27px;
}
.in_stock {
    display: inline-block;
    position: relative;
    background: #e0e3e4;
    width: 15px;
    height: 15px;
}
.in_stock.in_stock_true::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: url(../images/checked.png);
}
.in_stock_container span {
    font-size: 14px;
    color: #232323;
    margin-left: 7px;
}
.product_text {
    margin-top: 5px;
}
.product_text p:last-of-type {
    margin-bottom: 0;
}
.product_quantity_container {
    margin-top: 20px;
}
.product_quantity_container span {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #232323;
    vertical-align: middle;
}
.product_quantity {
    display: inline-block;
    width: 122px;
    height: 41px;
    border: solid 1px #b5b5b5;
    overflow: hidden;
    padding-left: 11px;
    vertical-align: middle;
    margin-left: 14px;
}
.product_quantity input {
    display: block;
    width: 30px;
    height: 41px;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #232323;
    text-align: left;
    padding-left: 9px;
    line-height: 39px;
    float: left;
}
.quantity_buttons {
    position: absolute;
    top: 0;
    right: 7px;
    height: 100%;
    width: 29px;
}
.quantity_inc,
.quantity_dec {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 50%;
    cursor: pointer;
}
.quantity_control i {
    font-size: 16px;
    color: #232323;
    pointer-events: none;
}
.quantity_control:active {
    border: solid 1px rgba(14, 140, 228, 0.2);
}
.quantity_inc {
    padding-bottom: 0px;
    justify-content: flex-end;
}
.quantity_inc i {
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
}
.quantity_dec {
    padding-top: 0px;
    justify-content: flex-start;
}
.quantity_dec i {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
}
.product_size_container {
    margin-top: 10px;
}
.product_size {
    display: inline-block;
    vertical-align: middle;
}
.product_size_container span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #232323;
}
.regular_radio {
    display: none;
}
.regular_radio:checked + label {
    background: #937c6f;
    color: #ffffff;
}
.regular_radio + label {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 48px;
    height: 41px;
    background: #ffffff;
    border: solid 1px #b5b5b5;
    cursor: pointer;
    margin-right: 8px;
}
.cart_button {
    margin-top: 10px;
}

/*********************************
7. Reviews
*********************************/

.reviews {
    width: 100%;
    margin-top: 99px;
}
.reviews_title {
    font-family: "Lucida", serif;
    font-size: 30px;
    color: #232323;
    text-transform: uppercase;
    line-height: 0.75;
}
.reviews_container {
    margin-top: 99px;
}
.review {
    margin-bottom: 62px;
}
.reviews_container ul li:last-child {
    margin-bottom: 0;
}
.review_image {
    width: 92px;
    height: 92px;
    overflow: hidden;
    border-radius: 50%;
    float: left;
}
.review_image img {
    max-width: 100%;
}
.review_content {
    padding-left: 139px;
}
.review_name a {
    font-size: 16px;
    font-weight: 600;
    color: #232323;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.review_name a:hover {
    color: #937c6f;
}
.review_date {
    font-size: 12px;
    color: #937c6f;
    margin-top: 3px;
}
.review_rating {
    margin-top: 14px;
}
.review_text {
    margin-top: 28px;
}
.review_text p {
    color: #777777;
    line-height: 2.14;
}
.review_text p:last-of-type {
    margin-bottom: 0;
}

/*********************************
8. Review Form
*********************************/

.review_form_container {
    width: 100%;
    margin-top: 99px;
}
.review_form_title {
    font-family: "Lucida", serif;
    font-size: 30px;
    color: #232323;
    text-transform: uppercase;
    line-height: 0.75;
}
.review_form_content {
    margin-top: 99px;
}
.review_form {
    width: 100%;
}
.review_form div {
    width: 100%;
}
.review_form_input {
    display: block;
    width: calc((100% - 60px) / 3);
    height: 53px;
    border: solid 1px #b5b5b5;
    outline: none;
    padding-left: 22px;
}
.review_form_text {
    width: 100%;
    height: 53px;
    border: solid 1px #b5b5b5;
    outline: none;
    padding-left: 22px;
    margin-top: 27px;
    height: 234px;
    padding-top: 20px;
}
.review_form_input::-webkit-input-placeholder,
.review_form_text {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #8c8c8c !important;
}
.review_form_input:-moz-placeholder,
.review_form_text {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #8c8c8c !important;
}
.review_form_input::-moz-placeholder,
.review_form_text {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #8c8c8c !important;
}
.review_form_input:-ms-input-placeholder,
.review_form_text {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #8c8c8c !important;
}
.review_form_input::input-placeholder,
.review_form_text {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #8c8c8c !important;
}
.review_form_button {
    width: 179px;
    height: 46px;
    border: none;
    outline: none;
    background: #937c6f;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    margin-top: 18px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.review_form_button:hover {
    background: #e0e3e4;
    color: #232323;
}

/*********************************
9. Newsletter
*********************************/

.newsletter {
    width: 100%;
    padding-left: 62px;
    padding-right: 62px;
}
.newsletter_content {
    width: 100%;
    padding-top: 88px;
    padding-bottom: 94px;
}
.newsletter_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.newsletter .section_subtitle,
.newsletter .section_title {
    color: #ffffff;
}
.newsletter_container {
    margin-top: 75px;
}
.newsletter_input {
    width: 100%;
    height: 46px;
    background: #ffffff;
    padding-left: 25px;
    border: none;
    outline: none;
}
.newsletter_input::-webkit-input-placeholder {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #b3b3b3 !important;
}
.newsletter_input:-moz-placeholder {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #b3b3b3 !important;
}
.newsletter_input::-moz-placeholder {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #b3b3b3 !important;
}
.newsletter_input:-ms-input-placeholder {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #b3b3b3 !important;
}
.newsletter_input::input-placeholder {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #b3b3b3 !important;
}
.newsletter_button {
    position: absolute;
    top: 0;
    right: 0;
    width: 142px;
    height: 46px;
    background: #937c6f;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.newsletter_button:hover {
    background: #e0e3e4;
    color: #232323;
}
.newsletter_text {
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
    margin-top: 19px;
}

/*********************************
10. Footer
*********************************/

.footer {
    padding-top: 80px;
}
.footer_logo a {
    font-family: "Lucida", serif;
    font-size: 60px;
    color: #232323;
}
.footer_nav {
    margin-top: 14px;
}
.footer_nav ul li {
    display: inline-block;
    margin-right: 53px;
}
.footer_nav ul li:last-child {
    margin-right: 0;
}
.footer_nav ul li a {
    font-size: 12px;
    text-transform: uppercase;
    color: #232323;
    font-weight: 600;
    letter-spacing: 0.2em;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.footer_nav ul li a:hover {
    color: #937c6f;
}
.footer_social {
    margin-top: 51px;
}
.footer_social ul li {
    display: inline-block;
    margin-right: 36px;
}
.footer_social ul li:last-child {
    margin-right: 0;
}
.footer_social ul li a i {
    font-size: 24px;
    color: #937c6f;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.footer_social ul li a i:hover {
    color: #e0e3e4;
}
.copyright {
    margin-top: 56px;
    padding-bottom: 13px;
    font-family: "Lucida", serif;
    font-size: 12px;
    color: #232323;
}
