@font-face {
  font-family: outfit;
  src: url(fonts/Outfit-VariableFont_wght.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: outfit;
}

.custom-shadow {
  box-shadow: 0px 3.449px 20.693px 0px rgba(0, 0, 0, 0.05);
}

.text-primary {
  color: #1d2128 !important;
}

.text-secondary {
  color: #666666 !important;
}

.bg-primary {
  background-color: #007456 !important;
}

.stroke {
  border: 1px solid #e5e5e5 !important;
}

.hero-sec {
  background-image: url(images/hero_bg_2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 95vh;
}

.hero-sec h1 {
  color: #1aaa84 !important;
  font-size: 2rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-sec h1 {
  color: #1aaa84 !important;
  font-size: 4.5rem;
  width: 80%;
  
 }

.hero-sec h2 {
  font-size: 4rem;
}

.buttons a {
  transition: all 0.3s;
  box-shadow: 4px 4px 10px #1d21281c;
}

.btn-green:hover {
  background-color: white !important;
  color: #1d2128 !important;
}

.btn-white:hover {
  background-color: #007456 !important;
  color: white !important;
}

.fa-arrow-right {
  rotate: -42deg;
}

.social-link-icon {
  background-color: white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  box-shadow: 5px 3px 15px 0px rgba(0, 0, 0, 0.06) inset,
    2px 4px 6px 0px rgba(0, 0, 0, 0.05), 5px 10px 16px 0px rgba(0, 0, 0, 0.06);
}

.social-link-icon:hover > i {
  transition: all 0.3s;
  color: #2dcaa0 !important;
}

footer {
    position: fixed;
    width: 100%;
    bottom: 0;
}

.footer-link:hover {
  color: #2dcaa0 !important;
}

.table-area {
  border-radius: 10px;
  border: 1px solid #ececec;
}

table.table {
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
  border-color: #f5f5f5 !important;
  border-collapse: collapse;
  max-height: 500px !important;
  overflow-y: auto;
}

table.table th,
table.table td {
  width: calc(100% / 7);
  word-wrap: break-word;
  text-align: center;
  padding: 15px 0;
}

table.table th {
  padding: 8px 0;
}

table.table td {
  color: #666666;
}

table.table th {
  background-color: #f8fafc;
}

table.table .table-download-btn {
  background-color: #007456;
  color: white;
  padding: 6px 10px;
  border-radius: 5px;
}

table.table tbody tr:nth-child(even) td {
  background-color: #f8fafc;
}

table.table .table-download-btn {
  background-color: #007456;
}

.eye-btn {
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

#pass:focus,
#pass:focus-visible {
  z-index: 3 !important;
}

.form-modal {
  width: 65% !important;
}

.skeleton-box {
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    background-color: #e6ebfb;
  }
  50% {
    background-color: #d8ddef;
  }
  100% {
    background-color: #e6ebfb;
  }
}
}