/* ----  Footer CSS Start  ------ */
.footer {
  background-color: var(--Primary--Navy-Blue-500);
  color: var(--white);
}

.footer a {
	color: var(--white);
	text-decoration:none;
}
.footer-newsletter span a:hover {
	text-decoration:underline;
	color: var(--white);
}

.footer .site-footer-layout {
    padding: 35px 0 30px;
}

.footer-logo {
	margin-bottom: 20px;
	width: 185px;
	height: 47px;
	object-fit: cover;	
}

.footer-address {
  font-size: 16px;
  line-height: 1.6;
}
	
.footer-address p {
margin-bottom: 0px;
}

.footer-list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	margin: 0px;
}

.footer-list li {
  margin-bottom: 10px;
  min-width: 49%;
}

.footer-list a, .footer-list a:hover {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  display: block;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-newsletter img {
  margin-right: 10px;
}

.footer-newsletter span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
}

.footer-social strong {
  display: block;
  margin-bottom: 10px;
}

.footer-icons img {
  width: 30px;
}

.site-footer-layout {
    letter-spacing: 0.2px;
    margin-top: 30px;
    border-bottom: 1px solid #555;
    border-color: rgba(255, 255, 255, 0.15);
}
		
.footer-copyright {
    background-color: var(--Dark-Navy-Blue);
    padding: 0.5em 0;
	text-align: center;
}
	
.footer-copyright p {
margin: 0px;
}	
	
.hex-grid {
list-style: none;
margin: 0px;
display: flex;
padding: 0px;
}	

.hex-cell a {
	text-decoration:none;
}

.footer-icons .hex-cell a>i {
		margin: 4px;
}	

.hex-cell i {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-size: 20px;
	font-weight: lighter !important;	
	color: var(--white);
	background: #335f83;	
	width: 42px;
	height: 50px;
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	position:relative;
    border: 1px solid var(--Primary--Navy-Blue-500);
    border-radius: 10px;	
	font-family: "FontAwesome";
    background: -webkit-mask-image: radial-gradient(circle at 50% 50%, black 60%, transparent 100%);
    mask-image: radial-gradient(circle at 50% 50%, black 68%, transparent 78%);	
}	

.hex-cell a>i.fa-brands {	
    display: flex;
    justify-content:center;
    align-items: center;	
}

.hex-cell a:hover {
	color: var(--white);	
}
	
.hex-cell a>i.fa-facebook-f:hover {	
	background-color: #3b5998;
}
.hex-cell a>i.fa-x-twitter:hover {	
	background-color: #000;
}

.hex-cell a>i.fa-youtube:hover {	
	background-color: #ff0000;
}	
	
.hex-cell a>i.fa-instagram:hover {	
	background-color: #d62976;
}
	
.hex-cell a>i.fa-linkedin-in:hover {	
	background-color: #0077b5;
}

.hex-cell a>i.fa-threads:hover {
    background-color: #393939;
}
	
@media only screen and (max-width: 600px) {
	.footer-list li {
		margin-bottom: 0px;
		min-width: 100%;
	}
	.footer-list li a {
		padding: 7px 0px;
	}
	
}
	
@media screen and (max-width: 900px) and (min-width: 768px) {
	.footer-address {
		    margin-bottom: 20px;
	}
	
	.footer-list {
		margin-bottom: 16px;
	}	
	
}	
	
@media only screen and (max-width: 991px) {
    .footer-logo{
        width: 236px;
        height: 60px;
        object-fit: cover;
    }
	
	.footer-newsletter {
		margin-top: 20px;
	}	
	
	#backToTop {
	  font-size: initial !important;
	}
	
}		
	
@media only screen and (min-width: 1024px) {	
	.footer-list li {
	  padding: 0px 16px;
	}
}
	
/* ----  Footer CSS End  ------ */	

/* Back To Top arrow Start  */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: none;
  background-color: var(--Dark-Navy-Blue);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#backToTop:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}
/* Back To Top arrow End  */