.HeaderContainer {
    position: fixed;
    top: 0;
    z-index: 99;
    background-color: transparent;
    margin: 0 auto;
    width: 100%;
    padding: 1vw;
    /* box-shadow: 0px 0px 10px -6px black; */
    display: flex;
    justify-content: space-between;
}
.topLogo{
    display: inline-block;
    width: 12vw;
    height: auto;
}

.topBtn{
    display: inline-block;
    padding: 14px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 46px;
    background: var(--primary-brand-color-600, #4E3BC2);
    color: var(--White, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    border: none;;
    vertical-align: bottom;
    float: right;
    margin-right: 2.778vw;
    cursor: pointer;
}
.header_buttons{
    display: flex;
    align-items: center;
  }
.header_buttons p{
    width: max-content;
    color: #fff;
    font-size: 1vw;
    margin: 0 1vw;
    cursor: pointer;
    background-color: #4e3bc20a;
    padding: 0.5vw 1vw;
    border-radius: 2vw;
    font-weight: 800;
  }
  .header_buttons .header_cta{
    border: 1px solid #fff;
    border-radius: 5vw;
  }
  .header_buttons .header_cta:hover{
    background-color: #fff;
    color: #4d3bc2;
    font-weight: bold;
  }

  .header_buttons p:hover{
    background-color: #fff;
    color: #4d3bc2;
    font-weight: bold;
  }
  .white-bg{
    background: white;
    box-shadow: 0px 0px 10px 0px black;
  }
  .white-text .button-text {
    color: #4d3bc2;
  }
  .white-text .header_cta{
    border: 1px solid #4d3bc2;
  }
  .white-text .button-text:hover {
    background: #4d3bc2;
    color: white;
  }