* {
  margin: 0;
  padding:0;

  font-family: 'Roboto', sans-serif;
}
/* ---------------------------------------- 2 Top Nav Bar Section ------ */
.topNavBarContainer{
  position: fixed;
  display: flex;
  width:100%;
  height:91px;

  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px;

  background: #FFFFFF;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);

  transition: top 0.3s ease-in-out;

  /* border: 1px solid red; */
}

.nav-up {
  top:-91px;
}

#logoImg{
  width:120px;
  height:60px;
  object-fit: fill;

  margin-top: 15px;

  /* border: 1px solid red; */
}

#contactBtn{
  position:absolute;
  display: flex;
  align-items: center;
  justify-content: center;

  right:40px;
  height:91px;

  /* border: 1px solid red; */
}

#contactBtn a{
  display: flex;
  align-items: center;
  justify-content: center;

  width:150px;
  height: 56px;
  background-color: #f7b93f;
  border-radius: 50px;
  border: none;

  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  color: white;
}

.topNavBarContainer .topNavMenu{
  display: flex;
  align-items: center;
  justify-content: center;

  max-width:840px;
  height:91px;
  margin-left: 20px;

  /* border: 1px solid red; */
}

.topNavBarContainer .topNavMenu ul{
  list-style: none;
  padding:0;
  margin:0;
}

.topNavBarContainer .topNavMenu li{
  display: inline-block;
  box-sizing: border-box;
  text-align: center;

  width:134px;
  height:91px;

  padding-top: 35px;
  margin:0;

  /* border: 1px solid gray; */
}

.topNavBarContainer .topNavMenu .nav-link a{
  color:#383D49;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

.nav-link {
  padding-bottom: 18px;
  position: relative;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link::before {
  transition: 300ms;
  height: 5px;
  content: "";
  position: absolute;
  background-color: #F7B93F;
}

.nav-link-grow-up::before {
  height: 0%;
  bottom: 0px;
  left:0px;
}

.nav-link-grow-up:hover::before {
  height: 5px;
  width:134px;
}


/* ===================================================== */


#resources_dropdown {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  width: 180px;
  height:125px;
  z-index: 1;
  top:91px;
  margin-left: -25px;
}

#trading_dropdown {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  width: 180px;
  height:125px;
  z-index: 1;
  top:91px;
  margin-left: -25px;
}


.dropdown_content {
  height:125px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}



  /* ---------------------------------------- (END) 2 Top Nav Bar Section ------ */
/*
  @media screen and (max-width: 820px) {
    .topNavBarContainer {
      display: none;
    }
  } */
  /* Style inputs with type="text", select elements and textareas */
  input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }

  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    background-color: #45a049;
  }

.contactContainer{
  margin: 0 auto;
  margin-top:-420px;
  width:500px;
}
  /* Add a background color and some padding around the form */
.contactForm {
  border-radius: 10px;
  background-color: #f2f2f2;
  padding: 30px;

  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


.contactSubmitBtn{
  width: 350px;
  height: 35px;
  background-color: white;
  border-radius: 50px;
  border: 2px solid #f7b93f;
  cursor:pointer;

  font-size: 16px;
  text-decoration: none;
  text-align: center;

  margin-top:20px;

  color: #383d49;"
}

.contactSubmitBtn:hover{

  background-color: #f7b93f;
}
