.grid-container {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto auto auto;
  gap: 0px 0px;
  grid-template-areas:
    "footer"
    "footer2"
    "copyright";
}

/*start footer 1*/
.div-3-ft1 div{
	width: 33.3333%;
	float: left;
	text-align:center;
}
.footer { grid-area: footer; }
.footer p{
	text-align: center;
	font-size: 15px;
	font-family: "Tienne";
}
.ft-1{
	margin-left:25%;
	margin-right:25%;
}
/*end footer 1*/

/*start footer 2*/
.div-4-ft2 div{
	width: 25%;
	float: left;
}
.footer2 { grid-area: footer2; }
.footer2 { 
	padding-top: 20px;
	padding-bottom: 20px;
	background-color:#FAFAFA;
}
.footer2 a{
	color:#000;
	text-decoration:none;
}
.footer2 a:hover{
	color:#9F824A;
}
.footer2 h3 {
	font-weight: 400;
	text-transform: uppercase;
	font-family: "Tienne";
	font-size: 16px;
}
.ft-2{
	margin-left:15%;
	margin-right:15%;
	line-height: 1.4;
}
/*end footer 2*/

/*start copyright*/
.div-3-cpy div{
	
	float: left;
}
.copyright { grid-area: copyright; }
.copyright{
	background-color:#000000;
	padding: 10px;
}
.cpy{
	color:#ffffff;
	margin-left:15%;
	margin-right:15%;
	font-size:13px;
}
.cpy a{
	color:#fff;
}
.cpy a:hover{
	color:#9F824A;
	text-decoration:none;
	list-style-type: none !important;
}
ul {
	list-style-type: none !important;
	padding-left: 0;
	margin-left: 0
}
/*end copyright*/





/*start responsive layout*/

@media all and (min-width: 900px) {
	.ft-2_2{display: none !important;}
}
@media all and (max-width: 900px) 
{
	.div-3-ft1 div{width:100%;margin-left:0;margin-right:0;}
	.ft-2{display:none !important;}
}
@media all and (max-width: 1300px) 
{
    .div-3-cpy div {width: 100%;float: none; text-align:center;}
	.div-3-cpy img {margin-top:10px; margin-bottom:5px;}
}


.divider {								/* minor cosmetics */
	display: table; 
	font-size: 18px; 
	text-align: center; 
	width: 75%; 						/* divider width */
	margin: 8px auto;					/* spacing above/below */
	padding-top: 15px;
}
.divider span { display: table-cell; position: relative; }
.divider span:first-child, .divider span:last-child {
	width: 50%;
	top: 13px;							/* adjust vertical align */
	-moz-background-size: 100% 2px; 	/* line width */
	background-size: 100% 2px; 			/* line width */
	background-position: 0 0, 0 100%;
	background-repeat: no-repeat;
}
.divider span:first-child {				/* color changes in here */
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), to(#9f824a));
	background-image: -webkit-linear-gradient(180deg, transparent, #9f824a);
	background-image: -moz-linear-gradient(180deg, transparent, #9f824a);
	background-image: -o-linear-gradient(180deg, transparent, #9f824a);
	background-image: linear-gradient(90deg, transparent, #9f824a);
}
.divider span:nth-child(2) {
	color: #9f824a; padding: 0px 5px; width: auto; white-space: nowrap;
}
.divider span:last-child {				/* color changes in here */
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#9f824a), to(transparent));
	background-image: -webkit-linear-gradient(180deg, #9f824a, transparent);
	background-image: -moz-linear-gradient(180deg, #9f824a, transparent);
	background-image: -o-linear-gradient(180deg, #9f824a, transparent);
	background-image: linear-gradient(90deg, #9f824a, transparent);
}