@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #ffffff;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #ffffff;
}

h4 {
    font-size: 20px;
    color: #ffffff;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #b1b1b1;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1{
    margin: 40px 0;
}

body {
    width: 100%;
    background-color: #000000;
}

.logo {
    height: 70px;
    width: 70px;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background-color: #000000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#hero {
    background-image: url("../images/tradingchart.png");
    background-repeat: no-repeat;
    width: 100%;
    height: 67vh;
    background-position: top 25% right 0px;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;
}

#hero h1 {
    color: #088178;
}

#hero button {
  background-color: #ffffff;
  border-radius: 10px;
  color: rgb(0, 0, 0);
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

#hero button:hover {
  background-color: rgb(0, 0, 0);
  border-radius: 10px;
  padding: 14px 80px 14px 65px;
  color: rgb(255, 255, 255); 
  border: 1px solid rgb(255, 255, 255);
}

#socials {
    text-align: center;
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 20px 20px;
}


.socialpics {
    height: 50px;
    width: 50px;
    margin: 20px;
}

.socialheader {
    text-align: center;
}