*,
*::before,
*::after {
  box-sizing: border-box;
  border: none;
  margin: 0;
  padding: 0;
}
body,
html {
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}

html {
  min-height: 100%;
}
body {
  min-height: 100%;
}

:root {
    --main-text-color: #fff;
    --main-background-color:#ffffff99;
    font-size: 16px;

  }


.main-div {
    position: relative;
    width: 100vw;
   /* height: 100vh;*/
    font-family: "Foundry Sterling Medium";
    background-image: url(../images/BG.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

footer {
  width: 100%;
  border-top: 1px solid white;
  position: absolute;
  bottom: 0;
  color: white;
}
footer > p {
  
  font-size: 14px;
  padding: 20px;
}

a {
  text-decoration: none;
}
.logo {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
}
.logo >img{
  height: 12vh;
  object-fit: contain;
}
label {
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 11px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.678);
}

a.lnkmyprofile {
    color: white !important;
    text-decoration: none;
}

.btn-primarycustom {
    color: #fff !important;
    background-color: #428bca !important;
    border-color: #357ebd !important;
}

    .btn-primarycustom:hover, .btn-primarycustom:focus, .btn-primarycustom:active, .btn-primarycustom.active, .open .dropdown-toggle.btn-primarycustom {
        color: #fff;
        background-color: #3276b1 !important;
        border-color: #285e8e !important;
    }

@media (min-width: 0px) and (max-width: 576px) {
      footer > p {
        font-size: 12px;
        padding: 15px;
      }
      
      a {
        text-decoration: none;
      }
      .logo {
        display: flex;
        justify-content: center;
        padding: 5px;
      }
      .logo >img{
        height: 8vh;
      }
      
}

@media (min-width: 577px) and (max-width: 768px) {
}
