@font-face {
    font-family: 'Montserrat Medium';
    src: url('../fonts/subset-Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/subset-Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/subset-Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat Bold';
    src: url('../fonts/subset-Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/subset-Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat SemiBold';
    src: url('../fonts/subset-Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/subset-Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/* https://meyerweb.com/eric/tools/css/reset/v2.0-modified | 20110126License: none (public domain)*/
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, 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;
}
* {
    box-sizing: border-box;
}
:focus {
	outline: 0;
}
html, body {
    font-family: 'Montserrat';
    color:#000;
}

.bg {
	width: 100%;
	height: auto;
	background-size: cover;
	background-repeat:none;
	background-position: center bottom;
}
#bg1 {
	background-image:url('../img/bg1.jpg');
}
#bg2 {
	background-image:url('../img/bg2.jpg');
	margin-top:30px;
}

h4 {
	font-size: 25px;
	color:#3c2517;
	font-weight: bold;
	font-family: 'Montserrat';
}
h4 strong {
	font-family: 'Montserrat Bold';
}

.container {
	width: 800px;
	margin:0 auto;
	padding:150px 0;
}
.box {
	padding:30px;
	width: 50%;
	margin:0 auto;
	text-align: center;
	background: #fff;
    box-shadow: 0px 0px 20px 20px rgba(0,0,0,0.2);
}
.box img {
	margin:15px 0;
    max-width: 212px;
}
.box .button {
	margin-top:30px;
}
.button {
	color:#b7ae85;
	font-size: 20px;
	background: rgb(60,37,23);
	background: -moz-linear-gradient(0deg, rgba(60,37,23,1) 0%, rgba(89,54,33,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(60,37,23,1) 0%, rgba(89,54,33,1) 100%);
	background: linear-gradient(0deg, rgba(60,37,23,1) 0%, rgba(89,54,33,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3c2517",endColorstr="#593621",GradientType=1);
	padding:10px 60px 10px 20px;
	border-radius: 25px;
	text-decoration: none;
	display: inline-block;
    text-shadow: 1px 1px 1px #36240e;
    font-family: 'Montserrat SemiBold';
    position: relative;
    transition:0.3s ease all;
}
.button:hover {
	color:#fff;
    transition:0.3s ease all;
}
.button:before {
	position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 30px;
    height: 30px;
    background: #6e472f;
    border-radius: 50%;
    background-size: contain;
}
.button:after {
	position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 16px;
    height: 13px;
	background: url('../img/arrow.png') no-repeat;
	background-size: contain;
}

.box-transparent > * {
	flex: 1;
}
.box-transparent {
	padding:30px;
	width: 100%;
	margin:100px auto 0 auto;
	text-align: center;
	display: flex;
	background: rgba(255,255,255,0.5);
    box-shadow: 0px 0px 20px 20px rgba(0,0,0,0.2);
}
.box-transparent p {
	font-family: 'Montserrat Medium';
}
.box-transparent a {
	color:#000;
	text-decoration: none;
    transition:0.3s ease all;
}
.box-transparent a:hover {
	color:#333;
    transition:0.3s ease all;
}
h5 {
    font-family: 'Montserrat Bold';
    font-size: 18px;
    margin:15px 0;
}
h5 span {
    font-family: 'Montserrat Medium';
}
p {
	font-size: 13px;

}
.box-transparent img {
	max-width: 120px;
	height: auto;
}

@media (max-width: 768px) {
	.container {
		width: 95%;
		margin-left:2.5%;
	}
	.box-transparent {
    	flex-wrap: wrap;
	}
	.box-transparent > div:not(:last-child) {
		max-width: 100%;
		flex-basis: 100%;
    	margin-bottom: 50px;
	}
	.box, .box-transparent {
	    width: 90%;
	}
	.box img {
	    max-width: 100%;
	}
}