/* ==========================================================================
   Base styles
   ========================================================================== */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    color: #313230;
    font-size: 16px;
    background-color: #F9F7F5;
    overflow-x: hidden;
    line-height: 19px;
    letter-spacing: 0px;
}

body, html{
    background-color: #F9F7F5;
}

body.oak-no-scroll {
    overflow: hidden;
}

.clear {
    clear: both;
    float: none;
}

img {
    max-width: 100%;
    height: auto;
}

* {
    outline: none !important;
}

.container {
    max-width: 1040px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.section-title h4{
	font-family: acumin-pro-wide;
	font-weight: 200;
}

a {
    color: #1A2B1F;
    transition: all .3s;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #1A4D2E;
}

::-webkit-input-placeholder {

    /* Edge */
    color: #6B7F72;
    font-weight: 400;
    opacity: 1;
    font-size: 14px
}

:-ms-input-placeholder {

    /* Internet Explorer 10-11 */
    color: #6B7F72;
    font-weight: 400;
    opacity: 1;
    font-size: 14px
}

::placeholder {
    color: #6B7F72;
    font-weight: 400;
    opacity: 1;
    font-size: 14px
}

p:last-child{
    margin-bottom: 0;
}

p, h1, h2, h3, h4, h5, h6{
    
    margin-top: 0;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Source Serif Pro';
    font-weight: 400;
}

/* ==========================================================================
 Helper classes
 ========================================================================== */
.hidden {
    display: none !important;
}

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
 CSS Base
 ========================================================================== */
 .oak-btn{
    background: #1A4D2E;
    border-radius: 4px;
    padding: 8px 14px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    min-width: max-content;
    color: #fff;
	 transition: all .3s ease-in-out;
}

.oak-btn:hover{
	text-decoration: none;
	background: #2B2624;
	color: #fff;
}

.oak-btn__orange--outline{
    border: 1px solid #D3A574;
    color: #D4A574;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    background-color: transparent;    
    padding: 7px 13.5px;
}

.oak-btn.oak-btn__orange--outline:hover{
	background: #D3A574;
    color: #2B2624;
}

.oak-btn__orange{
    background: #D4A574;
    color: #2B2624;
    padding: 7px 15.5px 8px;
	border: 1px solid #D4A574
}

.oak-btn.oak-btn__orange:hover{
	background: transparent;
	color: D4A574;
}

.oak-btn__black{
    background: #2B2624;
    color: #fff;
    padding: 8px 16.5px 9px;
}

.oak-btn.oak-btn__black:hover{
	background: #1A4D2E;
}

.oak-heading{
	color: #1A2B1F;
	font-size: 40px;
	line-height: calc(57 / 40);
	letter-spacing: 0;

}