/*SINGLE POST*/
a.elementor-post-info__terms-list-item:hover {
	color: #6FABE3 !important;
}

/*GENERAL*/
.ifsdfp-app-root .ifsdf-richtext a {
	color:#0055A4 !important;
}

#masthead {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/*MENU - CUSTOM SOCIAL LINKS*/
.social-links-list {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.social-links-list li {
  list-style: none;
}

.social-links-list li a {
  width: 30px;
    height: 30px;
    background-color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 1rem;
    margin: 0 10px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    z-index: 1;
}

.social-links-list li a .icon {
  position: relative;
  color: #777777;
  transition: .5s;
  z-index: 3;
}

.social-links-list li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.social-links-list li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: .5s;
  z-index: 2;
}

.social-links-list li a:hover:before {
  top: 0;
}

.social-links-list li:nth-child(1) a:before{
  background: #3b5999;
}

.social-links-list li:nth-child(2) a:before{
  background: #55acee;
}

.social-links-list li:nth-child(3) a:before {
  background: #0077b5;
}

.social-links-list li:nth-child(4) a:before {
  background: #dd4b39;
}

/********************************************************/
/*************************FOOTER*************************/
/********************************************************/
.custom_footer {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Footer Social Media Container */
.footer_social-media-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Footer Social Icon Link */
.footer_social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer_social-icon:hover {
  background-color: #2563eb; /* blue-600 */
  color: #ffffff;
  transform: scale(1.05);
}

.footer_social-icon svg {
  width: 18px;
  height: 18px;
	color:#fff;
}

/* Contact Section */

/* Contact List */
.footer_contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* 8px */
}

/* Contact Item (Link or Div) */
.footer_contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* 12px */
  color: #94a3b8; /* slate-400 */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_contact-item:hover {
  color: #60a5fa; /* blue-400 */
}

/* Contact Icon Box */
.footer_contact-icon-box {
    width: 25px;
    height: 25px;
    border-radius: 5px;
  background-color: #2a3850; 
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

/* Address specific positioning */
.footer_contact-icon-box--address {
  margin-top: 2px;
  align-self: flex-start;
}

.footer_contact-item:hover .footer_contact-icon-box {
  background-color: rgba(37, 99, 235, 0.2); /* blue-600/20 */
}

/* Contact Icon (SVG) */
.footer_contact-icon-box svg {
  width: 14px;
  height: 14px;
  stroke: #cce7ff; /* blue-400 */
}

/* Contact Text */
.footer_contact-text {
  font-size: 0.9rem;
  line-height: 1.6;
	color:#cce7ff;
}

/* Company Section */

/* Company List */
.footer_company-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Company Link */
.footer_company-link {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* 8px */
  color: #cce7ff !important; /* slate-400 */
  font-size: 0.9rem !important; /* 14px */
  text-decoration: none;
  transition: color 0.3s ease;
	line-height: 1.2em !important;
}

.footer_company-link:hover {
  color: #60a5fa !important; /* blue-400 */
}

/* Animated Line (appears on hover) */
.footer_company-line {
  width: 0;
	margin-left:-6px;
  height: 1px;
  background-color: #60a5fa; /* blue-400 */
  transition: width 0.3s ease;
}

.footer_company-link:hover .footer_company-line {
  width: 6px; /* 1.5 * 4px = 6px (w-1.5) */
}