@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Chicle&display=swap");

/* Variables */
:root {
  --main-color: #4eb773;
  --secondary-color: #e7edf0;
  --gray-color: #f9f9f9;
}

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

/* Main Styling */
body,
html {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 2.6rem;
  text-transform: capitalize;
}

h2 {
  font-size: 2em;
  font-weight: lighter;
}

h4 {
  font-size: 1.25em;
}

h1,
h2,
h4 {
  font-weight: 400;
  margin-bottom: 15px;
}

p {
  line-height: 2em;
  font-size: 16px;
  margin-bottom: 20px;
}

img {
  max-width: 100%;
}

/* Utility Container */
.container {
  margin: auto;
  max-width: 1100px;
  overflow: auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  padding: 13px 40px;
}

.btn-dark {
  background: var(--main-color);
  color: #fff;
}

.txt-large {
  font-size: 18px;
}

.txt-small {
  font-size: 12px;
}

.txt-center {
  text-align: center;
}

.txt-dark {
  font-weight: 600;
}

.txt-gray {
  color: #9fa6b1;
}

.p-50 {
  padding: 50px 0;
}

.pb-30 {
  padding-bottom: 30px;
}

.bk-gray {
  background: var(--gray-color);
}

.font-chicle {
  font-family: "Chicle", cursive;
}

.display-1 {
  font-size: 5rem;
}

.display-2 {
  font-size: 3.5rem;
}

/* Navbar */
.navbar {
  height: 100%;
  background: var(--main-color);
  padding: 15px 0;
}

.navbar .logo {
  display: flex;
}

.navbar .logo a {
  font-size: 18px;
  font-weight: 500;
  padding-top: 5px;
}

.navbar .logo img {
  height: 35px;
  padding-right: 10px;
}

.navbar .current {
  text-decoration: underline;
  color: #fff;
}

.navbar a {
  color: #fff;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.navbar ul {
  display: flex;
}

.navbar ul li {
  list-style: none;
  padding: 20px 10px;
  font-size: 14px;
}

/* Showcase */
#showcase {
  padding: 80px 0 10px 0;
  background: var(--secondary-color);
  text-align: center;
}

#showcase img {
  padding: 10px 0;
}

/* Features */
#features {
  padding: 20px 0 70px 0;
  background: var(--secondary-color);
  text-align: center;
}

.flex-features {
  display: flex;
}

.flex-features-box {
  background: #fff;
  flex: 1;
  padding: 30px 10px;
  margin: 5px;
  border-radius: 10px;
}

.flex-features-box h4 {
  color: #4eb773;
}

.flex-features-box p {
  font-size: 0.8rem;
}

.flex-features-box p:nth-child(3) {
  font-size: 0.7rem;
}

/* Holdings */
#holdings {
  padding: 0 0 70px 0;
  background: var(--secondary-color);
}

#holdings table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 350px;
  margin: 0 auto;
  border-radius: 8px; /* Adjust for desired roundness */
  overflow: hidden;
}

#holdings td,
th {
  border: 1px solid #ddd;
  padding: 8px;
}

#holdings tr:nth-child(even) {
  background-color: #fff;
}

#holdings tr:nth-child(3),
#holdings tr:nth-child(5),
#holdings tr:nth-child(7) {
  background-color: #d6e7db;
}

#holdings tr:hover {
  background-color: #ddd;
}

#holdings th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #004840;
  /* background-color: #4eb773; */
  color: white;
}

#holdings .full-width-header {
  text-align: center; /* Centers the text across the full width */
}

.holdings-content {
  width: 500px;
  text-align: center;
  padding: 20px 0;
  margin: 0 auto;
}

/* About */
#about {
  padding: 80px;
}

#about .flex {
  display: flex;
}

/* Footer */
#main-footer {
  background: var(--main-color);
  color: #fff;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 20px;
}
/* Navbar Internal */
.navbar-internal {
  background: #004840;
  padding-top: 5px;
}

.d-flex {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}

.d-flex img {
  height: 30px;
}

.d-flex li {
  padding: 6px;
}
