body {
  font-family: 'Unbounded', Arial, Helvetica, sans-serif;
}

.footer {
  background: linear-gradient(180deg, #111827 0%, #11427d 100%);
}

.footer .container-fluid {
  min-height: 400px;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 45px;

  background-image: url('../images/footer-brand-2.png');
  background-repeat: no-repeat;
  background-position: 256px bottom;
}

.link {
  border-radius: 50%;
  transition: all .2s;
}

.link:hover,
.link:active,
.link:focus {
  outline: none;
  -webkit-box-shadow: 0px 0px 40px 6px rgba(24, 90, 168, 0.57);
  -moz-box-shadow: 0px 0px 40px 6px rgba(24, 90, 168, 0.57);
  box-shadow: 0px 0px 40px 6px rgba(24, 90, 168, 0.57);
}

.wpcf7-submit {
  transition: all .2s;
}

.wpcf7-submit:hover,
.wpcf7-submit:active,
.wpcf7-submit:focus {
  -webkit-box-shadow: 0px 0px 21px 2px rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0px 0px 21px 2px rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 21px 2px rgba(255, 255, 255, 0.6);
}

.custom-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.custom-modal-content {
  background-color: #2D2D2D;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  color: #fff;
  position: relative;
  animation: modalopen 0.2s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes modalopen {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-btn {
  color: #aaa;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
  position: absolute;
  top: 1px;
  right: 10px;
}

.close-btn:hover {
  color: #fff;
}

.notification-container {
  position: fixed;
  top: 60px;
  right: 20px;
  z-index: 1000;
}

.notification {
  position: relative;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: white;
  background-color: #4CAF50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  opacity: 0;
  animation: slideIn 0.5s forwards, fadeOut 0.5s 2s forwards;
  display: flex;
  align-items: center;
}

.notification::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 8px 0 0 8px;
}

.notification-icon {
  margin-right: 10px;
  font-size: 20px;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #3a3a3a, #2a2a2a);
  border: 2px solid #1a1a1a;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #4a4a4a, #3a3a3a);
}

::-webkit-scrollbar-corner {
  background: #1a1a1a;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #3a3a3a #1a1a1a;
}