@import "./fonts.css";

body {
  font-family: FontSpring, DINNextLTArabic, sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

button,
a,
input,
textarea,
select {
  outline: none;
  cursor: pointer;
}

.gradient-bg-1 {
  background: linear-gradient(0.83deg, #06211a 0.71%, #006f53 99.32%);
}

.gradient-bg-2 {
  background: linear-gradient(53.43deg, #06211a 2.42%, #006f53 74.21%);
}

.gradient-bg-3 {
  background: linear-gradient(180deg, #06211a 45.67%, #006f53 100%);
}

.gradient-bg-4 {
  background: linear-gradient(180deg, #06211a 0%, #006f53 100%);
}

.gradient-bg-5 {
  background: linear-gradient(180deg, #06211a 0%, #006f53 100%);
}

.gradient-bg-6 {
  background: linear-gradient(
    0.83deg,
    rgba(6, 33, 26, 0.43) 0.71%,
    rgba(0, 111, 83, 0.43) 99.32%
  );
}

.gradient-bg-7 {
  background: linear-gradient(0.83deg, #06211a 0.71%, #006f53 99.32%);
}

.gradient-bg-8 {
  background: linear-gradient(180deg, #06211a 0%, #006f53 100%);
}

.team-gradient-card {
  background: linear-gradient(
    0.83deg,
    rgba(6, 33, 26, 0.43) 0.71%,
    rgba(0, 111, 83, 0.43) 99.32%
  );
}

.team-gradient {
  background: linear-gradient(
    180deg,
    rgba(6, 33, 26, 0.2) 0%,
    rgba(0, 111, 83, 0.2) 52.4%
  );
}
.article-gradient-bg {
  background: linear-gradient(180deg, #06211a 0%, #006f53 100%);
}

.gradient-with-class {
  background: linear-gradient(
    204.74deg,
    rgba(6, 33, 26, 0.12) 15.77%,
    rgba(0, 111, 83, 0.12) 96.08%
  );
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.gradient-with-class-2 {
  background: linear-gradient(
    0.83deg,
    rgba(6, 33, 26, 0.2) 0.71%,
    rgba(0, 111, 83, 0.2) 99.32%
  );
}

.text-gradient-1 {
  background: linear-gradient(90deg, #49a66d 0%, #1c402a 55.29%);
}

.text-gradient-2 {
  background: linear-gradient(180deg, #06211a 0%, #006f53 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

  backdrop-filter: blur(2.47059px);
}

.text-gradient {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.card-shadow {
  box-shadow: 3px 1px 9px 0.5px rgba(43, 114, 21, 0.25);
}

.hidden-scrollbar {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hidden-scrollbar::-webkit-scrollbar {
  display: none;
}

.bars {
  position: relative;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #111111;
  transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
}
.bars::after,
.bars::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #111111;
  transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
}
.bars::after {
  margin-top: -6px;
}
.bars::before {
  margin-top: 6px;
}

.clicked .bars::after,
.clicked .bars::before {
  margin: 0px;
}

.clicked .bars {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  width: 20px;
}

.clicked .bars::before {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.coming-soon-cell {
  background: linear-gradient(180deg, #06211a 0%, #006f53 100%);
  color: white;
  text-align: center;
  font-size: 40px;
  font-weight: normal;
  writing-mode: horizontal-tb;
  vertical-align: middle;
  padding: 20px;
  width: 200px;
  position: relative;
}

.header-row {
  background: linear-gradient(
    0.83deg,
    rgba(6, 33, 26, 0.43) 0.71%,
    rgba(0, 111, 83, 0.43) 99.32%
  );

  color: white;
  font-weight: bold;
  font-size: 40px;
}

.header-cell {
  padding: 20px 15px;
  text-align: left;
  border: none;
}

.data-row {
  background-color: #e8e8e8;
  height: 60px;
}

.data-cell {
  padding: 15px;
  border-bottom: 1px solid #d0d0d0;
  border-inline-end: 1px solid #d0d0d0;
  background-color: #e8e8e8;
}

.data-cell:last-child {
  border-inline-end: none;
}

/* Responsive design */
@media (max-width: 768px) {
  .coming-soon-cell {
    width: 150px;
    font-size: 18px;
    padding: 15px;
  }

  .header-cell,
  .data-cell {
    padding: 10px 8px;
    font-size: 14px;
  }

  .header-row {
    font-size: 16px;
  }
}

