/* ============================================
   NEW FOOTER
=============================================== */

.new-footer {
  background: #041f41;
  color: #eee;
  font-size: 13px;
  text-align: left;
}

.new-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.new-footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.new-footer-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 22px;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 18px;
  width: 100%;
}

.new-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-footer-col ul li {
  position: relative;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
  padding-left: 16px;
}

.new-footer-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #f64628;
  border-radius: 50%;
}

.new-footer-col ul li a {
  color: #e6e6e6;
  text-decoration: none;
}

.new-footer-col ul li a:hover {
  color: #f64628;
}

.logo-col .new-footer-logo {
  height: 35px;
  margin-bottom: 20px;
  position: relative;
  right: 6px;
  bottom: 6px;
}

.logo-col .new-footer-text {
  color: #e6e6e6;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.new-footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 14px;
  border-radius: 10px;
  color: #dcdcdc;
  margin-bottom: 10px;
}

.new-footer-contact .contact-item i {
  color: #f64628;
}

.new-footer-contact a {
  color: #fbfbfb;
  text-decoration: none;
}

.new-footer-contact a:hover {
  color: #f64628;
}

/* Sous-footer */
.new-sub-footer {
  background: #041730;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.new-sub-footer .new-footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
}

.new-footer-logo.small {
  height: 28px;
}

.new-footer-copy {
  color: #ccc;
  font-size: 12px;
}

.new-footer-social a {
  color: #ccc;
  margin: 0 10px;
  font-size: 16px;
  text-decoration: none;
}

.new-footer-social a:hover {
  color: #f64628;
}
.logo-col {
  margin-right: 30px; 
}
/* Responsive */
@media (max-width: 1024px) {
  .new-footer-col {
    flex: 1 1 45%;
  }
}

@media (max-width: 767px) {
  .new-footer-col {
    flex: 1 1 100%;
  }

  .new-sub-footer .new-footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .new-footer-social {
    margin-top: 5px;
  }
}

/*<!----- Footer END ----->*/

/* ============================================
   NOTIFICATIONS
=============================================== */

.notification.success {
    background: #5ecfb1
}    
.notification.waitforreview {
    background: #FBC54F;
}
.notification.reject {
    background: #EA4D37;
}
.notification {
    padding: 18px 20px;
    border-radius: 4px;
}    
.notification p {
    color: #fff;
    text-align: left;
    padding-bottom: 0;   
}
.notification-close {
    position: absolute;
    top: 50%;
    right: 20px;
    height: 20px;
    margin-top: -10px;
    color: rgba(255,255,255,.71);
}
/*<!--  Notifications END -->*/