/*------------------------------------------------------------------
footer.css
Last edited: 2/13/25
[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, 1450px and up)

[Notes]
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
1. FOOTER
-------------------------------------------------------------------*/
footer {
	background: #231f20;
	color: #fff;
	letter-spacing: 0.1em;
	padding: 65px 0 145px 0; 
	text-transform: uppercase;
	-webkit-box-shadow: 0px 500px 0px 500px rgba(35,31,32,1);
	-moz-box-shadow: 0px 500px 0px 500px rgba(35,31,32,1);
	box-shadow: 0px 500px 0px 500px rgba(35,31,32,1);
}
footer .widget {
	background: none;
	border-bottom: none;
	margin: 0;
	padding: 0;
}
footer .widget a:link,
footer .widget a:visited {
    color: #fff;
    display: block;
    padding: 10px 0;
}
footer .widget a:hover,
footer .widget ul li a:hover,
footer .widget a:active,
footer .widget ul li a:active {
  color: #fff;
  text-decoration: underline;
}
footer .widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}
footer .widget ul li {
	border-bottom: none;
	margin: 0;
	padding: 0;
}
footer .widget ul li li {
	text-transform: none;
	margin-left: 0.9em;
	padding: 0;
	list-style: outside disc; 
}
.footer-logo img {
	max-width: 100%;
}
/*------------------------------------------------------------------
2. COPYRIGHT MENU
-------------------------------------------------------------------*/
.footer-copyright-wrapper {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}
.footer-copyright-wrapper .textwidget {
	color: #fff;
}
.footer-copyright-wrapper .widget li {
	display: inline-block;
    border-left: 1px solid #fff;
	padding: 0 10px;
}
.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: #f47b2b;
	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: #143155;
	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;
  }

/*------------------------------------------------------------------
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 .textwidget {
	/*float: left;*/
	margin-right: 12px;
}
.footer-copyright-wrapper .widget li:first-child {
	border-left: none;
	padding-left: 0;
}	    
.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) {
/*------------------------------------------------------------------
2. COPYRIGHT MENU
-------------------------------------------------------------------*/
.footer-copyright-wrapper {
	margin-top: 0;
}
}

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

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