/*------------------------------------------------------------------
footer.css
Last edited: 8/2/22
[Table of contents]

1. FOOTER
2. COPYRIGHT MENU
3. SOCIAL MENU
4. SCROLL TO TOP

100. MEDIA QUERIES
    100a. EXTRA SMALL DEVICES (phones 576px and up)
    100b. SMALL DEVICES (tablets, 768px and up)
    100c. MEDIUM DEVICES (desktops, 992px and up)
    100d. LARGE DEVICES (large desktops, 1200px and up)
    100e. EXTRA LARGE DEVICES (large desktops, 1400px and up)

[Notes]

-------------------------------------------------------------------*/

/*------------------------------------------------------------------
1. FOOTER
-------------------------------------------------------------------*/
footer {
	background-color: #FAFAFA;
	border-top: 2px solid #CCE0EB;
	color: #707070;
	font-size: 20px;
	padding: 50px 0 100px 0; 
	-webkit-box-shadow: 0px 500px 0px 500px rgba(250,250,250,1);
	-moz-box-shadow: 0px 500px 0px 500px rgba(250,250,250,1);
	box-shadow: 0px 500px 0px 500px rgba(250,250,250,1);
}
footer .widget {
	background: none;
	border-bottom: none;
	margin: 0;
	padding: 0;
}
footer .widget a:link,
footer .widget a:visited {
    color: #707070;
    display: block;
    padding: 10px 0;
}
footer .widget ul {
	list-style: none;
	margin: 0 0 1.1em;
	padding: 0;
	text-transform: uppercase;
}
footer .widget ul li {
	border-bottom: none;
	border-left: 1px solid #707070;
	display: inline-block;
	margin: 0;
	padding: 0 8px;
}
footer .widget ul li:first-child {
	border-top: 0;
	border-left: none;
	padding-left: 0;
}
footer .widget ul li li {
	text-transform: none;
	margin-left: 0.9em;
	padding: 0;
	list-style: outside disc; 
}
/*------------------------------------------------------------------
2. COPYRIGHT MENU
-------------------------------------------------------------------*/
.footer-copyright-wrapper {
	margin-top: 30px;
}
.footer-copyright-wrapper .textwidget {
	color: #707070;
}
.footer-copyright-wrapper .widget li {
	display: inline-block;
    border-left: 1px solid #707070;
	padding: 0 10px;
	text-transform: none;
}
.footer-copyright-wrapper .widget li:first-child {
	border-left: none;
	padding-left: 0;
}
/*------------------------------------------------------------------
3. SOCIAL MENU
-------------------------------------------------------------------*/
#footer-social-menu {
    display: flex;
	margin: 20px 0 0;
}
#footer-social-menu li {
    list-style: none;
	margin-right: 0;
}
#footer-social-menu [class^="icon-"], 
#footer-social-menu [class*=" icon-"] {
	background: #8bb929;
	border-radius: 50%;
	font-size: 15px;
	margin-left: 8px;
	padding: 10px;
}
#footer-social-menu li:first-child [class^="icon-"] {
	margin-left: 0;
}
#footer-social-menu [class^="icon-"]:hover, 
#footer-social-menu [class*=" icon-"]:hover {
	background: #fff;
}

/*------------------------------------------------------------------
4. SCROLL TO TOP
-------------------------------------------------------------------*/
.scroll-to-top-button button {
	background-color: #403f3f;
	color: #ffffff;
	padding: 20px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	border: none;
  }
  .scroll-to-top-button button:hover {
	background-color: #00669A;
	text-decoration: none;
  }
  .scroll-to-top-button button {
	opacity: 0;
	-moz-transform: translateX(calc(100% - 60px));
	-webkit-transform: translateX(calc(100% - 60px));
	-o-transform: translateX(calc(100% - 60px));
	-ms-transform: translateX(calc(100% - 60px));
	transform: translateX(calc(100% - 60px));
  }
  .scroll-to-top-button button.on {
	opacity: 1;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 10;
  }
  .scroll-to-top-button button:hover {
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-o-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
  }
  .scroll-to-top-button [class^="icon-"],
  .scroll-to-top-button [class*=" icon-"] {
	color: #ffffff;
	padding: 0;
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
  }
  .scroll-to-top-button .button-text {
	padding-left: 20px;
  }



/* add mobile CSS here */

/*------------------------------------------------------------------
100. MEDIA QUERIES
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
100a. EXTRA SMALL DEVICES (phones 576px and up)
-------------------------------------------------------------------*/
@media (min-width: 576px) {
    
}
/*------------------------------------------------------------------
100b. SMALL DEVICES (tablets, 768px and up)
-------------------------------------------------------------------*/
@media (min-width: 768px) {
/*------------------------------------------------------------------
1. FOOTER
-------------------------------------------------------------------*/
footer .widget a:link,
footer .widget a:visited {
    display: inline-block;
    padding: 0;
}    
/*------------------------------------------------------------------
2. COPYRIGHT MENU
-------------------------------------------------------------------*/
.footer-copyright-wrapper {
    align-items: center;
    display: flex;
}
.footer-copyright-wrapper .textwidget {
	/*float: left;*/
	margin-right: 12px;
}
.footer-copyright-wrapper .widget li:first-child {
	border-left: 1px solid #707070;
	padding-left: 10px;
}	    
.footer-copyright-wrapper .widget li,
.footer-copyright-wrapper .widget li:last-child {
    margin: 0 0 0.9em;
}    
/*------------------------------------------------------------------
3. SOCIAL MENU
-------------------------------------------------------------------*/
#footer-social-menu {
	/*display: block;*/
	float: right;
	margin: 0;
}    
}

/*------------------------------------------------------------------
100c. MEDIUM DEVICES (desktops, 992px and up)
-------------------------------------------------------------------*/
@media (min-width: 992px) {

}

/*------------------------------------------------------------------
100d. LARGE DEVICES (large desktops, 1200px and up)
-------------------------------------------------------------------*/
@media (min-width: 1200px) {
	
}

/*------------------------------------------------------------------
100e. EXTRA LARGE DEVICES (large desktops, 1400px and up)
-------------------------------------------------------------------*/
@media screen and (min-width: 1450px) {
   
}