/* ---------------------------------
   CSS RESET
---------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: inherit;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

:root {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

.container{
	width:1135px;
	margin:0 auto;
}

body{
	background-color:#636922;
	color:#fff;
	font-family: "brother-1816-printed", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}

h2{
	font-family: "brother-1816-printed", sans-serif;
	font-weight: 500;
	font-size: 40px;
	line-height: 48px;
	margin-bottom:32px;
}

h3{
	font-family: "brother-1816-printed", sans-serif;
	font-weight: 500;
	font-size: 24px;
	line-height: 30px;
	margin-bottom:24px;
}


#site-header{
	text-align: center;
	margin-bottom:75px;
}

#header-logo img {
	display: inline-block;
	background-color: #fff;
	border-radius: 0px 0px 42px 42px;	
	padding: 50px 27px 42px 26px;
	box-sizing: border-box;	
}

#hero {
	text-align: center;
	padding-bottom: 90px;
	position: relative;
	overflow: hidden;
}

#hero::before {
	background-image: url(images/vigvam.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	content: '';
	width: 460px;
	height: 549px;
	position: absolute;
	left: -50px;
	bottom: 0;
	z-index:-1;
}

#hero::after {
	background-image: url(images/tree.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	content: '';
	width: 478px;
	height: 460px;
	position: absolute;
	right: -20px;
	bottom: 0;
	z-index:-1;
}

#hero h3{
	margin-bottom:45px;
}

#post-intro{
	background: #575C20;
	border-radius: 59.5px;
	padding:32px;
	box-sizing:border-box;
	margin-bottom:24px;
}

#post-intro > .large-text {
	margin-bottom: 8px;
}

.large-text{
	font-size: 20px;
	line-height: 28px;
	letter-spacing: -0.25px;		
}

.btn{
	font-weight: 500;
	letter-spacing: 0.5px;
	color: #FFFFFF;
	padding:17px 24px;
	background-color:#F39200;
	border-radius:64px;
	display:inline-block;
	transition:all 0.25s linear;
}

.btn:hover{
	background-color:#575C20;
}

.btn::after {
	background-image: url(images/bt-arrow.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	content: '';
	width: 14px;
	height: 10px;
	display: inline-block;
	margin-left: 12px;
	position: relative;
	top: 1px;
}


.col-2 {
	background-color: #42441B;
	padding: 86px 7% 86px 10%;
	box-sizing: border-box;
	width:55%;
}

.col-2:last-child{
	width:45%;	
	background-color:#C6B9AB;
	color:#42441B;
	padding:86px 10% 86px 7%;
}

.col-2 h2{
	margin-bottom:0;
}

.col-2 h3{
	margin-bottom:36px;
}

.col-2:first-child h2,
.col-2:first-child h3{
	color:#C6B9AB;
}

.row-section {
	display: flex;
	justify-content: space-between;
}

main ul {
	margin: 36px 0;
}

main ul li {
	margin-bottom: 34px;
	position: relative;
	padding-left:38px;
}

main ul li:last-child{
	margin-bottom:0;
}

main ul li:before{
	position: absolute;
	left:0;
	top:0;
	height:100%;
	width:1px;
	background:#F39200;
	content:'';
}

.p-margin-section{
	margin-bottom:32px;
}

#site-footer {
	background-color: #F39200;
	text-align: center;
	padding: 36px 0;
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
}

#site-footer a{
	text-decoration: underline;
	color:#fff;
}

#site-footer a:hover{
	text-decoration: none;	
}

@media screen and (max-width: 1200px) {
	#header-logo img {
		max-width: 180px;
		padding: 25px 20px 30px 20px;
		border-radius: 0px 0px 25px 25px;
	}	
	
	.container {
		width: calc(100% - 50px);
	}	
	
	#site-header {
		margin-bottom: 50px;
	}	
	
	h2 {
		font-size: 30px;
		line-height: 38px;
		margin-bottom: 24px;
	}	
	
	h3 {
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 18px;
	}
	
	#hero h3 {
		margin-bottom: 30px;
	}	
	
	#hero::before {
		width: 260px;
		height: 327px;
	}	
	
	#hero::after {
		width: 270px;
		height: 309px;
	}	
	
	.row-section {
		flex-direction: column;
	}	
	
	.col-2 {
		padding: 50px 25px !important;
		width: 100% !important;
	}	
}


@media screen and (max-width: 767px) {
	#hero::before {
		width: 120px;
		height: 151px;
	}	
	
	#hero::after {
		width: 120px;
		height: 136px;
	}	
}