html {
  scroll-behavior: smooth;
}

body{
	margin:0px;
	font-family: 'Didact Gothic', sans-serif;
	color:#fff;
	font-size:16px;
}

h1{
	font-family: 'DM Serif Display', serif;
	font-size: 48px;
	font-weight: normal;
}

h2{
	font-family: 'DM Serif Display', serif;
	font-size: 36px;
	font-weight: normal;
}

h3{
	font-family: 'DM Serif Display', serif;
	font-size: 25px;
	font-weight: normal;
}

h4{
	font-family: 'DM Serif Display', serif;
	font-size: 20px;
	font-weight: normal;
}

h1.pt {
	font-size: 36px;
	margin-top: -36px;
}

h2.pt {
	font-size: 25px;
	margin-top: -25px;
}

h3.pt{
	font-size: 16px;
	margin-top: -16px;
}

h4.pt{
	font-size: 12px;
	margin-top: -12px;
}

.golden{
	color:#c4976c;
}

.bg-golden{
	background-color:#c4976c;
}

.grey{
	color:#e6e6e6;
}

.bg-grey{
	background-color:#e6e6e6;
}

.black{
	color:#000000;
}

.bg-black{
	background-color:#000000;
}

.white{
	color:#fff;
}

.bg-white{
	background-color:#fff;
}

#to-up-button{
	display:none;
}

.show-to-top{
	position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: rgba(196, 151, 108, 0.4);
    color: rgba(0, 0, 0, 0.5);
    font-size: 25px;
    padding: 10px;
    z-index: 67;
    width: 30px;
    text-align: center;
	display:block!important;
}

.show-to-top:hover{
    background-color: rgba(196, 151, 108, 1);
	color: rgba(0, 0, 0, 0.8);
	transition: 0.5s;
}

.container{
	width:100%;
	text-align:center;
	min-height: 100vh;
	box-sizing:border-box;
}

.hide{
	display:none;
}

.content{
	padding-top:67px;
}

a.anchor {
    display: block;
    position: relative;
    top: -67px;
    visibility: hidden;
}

.row{
	display: flex;
}

.row-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
	margin: auto;
}

.separator {
	width:33%;
	margin: 0 auto;
	border-top-style:solid;
	border-top-width:2px;
	border-top-color:#c4976c;
	height:40px;
}

@media (max-width: 1280px) {
	.row-container {
		margin: auto 40px;
	}
}