
header   {
    background-color: rgb(0, 24, 77);
    font-family: Montserrat, arial;
    font-size: 200;
    font-weight: 200;
    letter-spacing: 2px;
    color: white;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    /* align-items: center; */

    height: 45px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 20);
}

@media(max-width: 900px)  {
    header  {
        height: 70px;
    }
}

.navbar-left  {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    cursor: pointer;
}

.navbar-logo    {
    height: 30px;
}

.ran-logo    {
  height: 30px;
  margin-left: 10px;
  transition: 1s;
}

@media(max-width: 900px)  {
  .ran-logo, .navbar-logo {
    height: 25px;
    margin-left: 0;
    transition: 1s;
  }
}

.navbar-middle     {
    /* max-width: 600px; */
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.navbar-middle, a  {
  text-decoration: none;
  color: rgb(177, 177, 177);
}

.navbar-middle div {
    /* font-size:2vw; */
    display: flex;
    justify-content: space-around;
    transition: 1s;
}

@media(max-width: 600px)  {
  .navbar-middle div  {
     font-size: 6px;
     transition: 0.3s;
     padding: 2px;
     transition: 1s;
  }
}

@media (min-width: 601px) and (max-width: 999px)    {
  .navbar-middle div  {
    font-size: 10px;
    transition: 0.3s;
    padding: 4px;
    transition: 1s;
  }
}

@media (min-width: 1000px)  {
  .navbar-middle div {
    transition: 0.3s;
    padding: 10px;
    transition: 1s;
      }
}

.home-button-url:visited,
.download-button-url:visited,
.news-button-url:visited,
.community-button-url:visited,
.agent-button-url:visited {
  color: rgb(255, 255, 255);
}

.home-button,
.download-button,
.news-button,
.community-button,
.agent-button    {
    font-size: 14px;
    font-weight: 300;
    color: rgb(255, 255, 255);
    padding: 1px 10px;
    cursor: pointer;
    position: relative;
}

.home-button:hover,
.download-button:hover,
.news-button:hover,
.community-button:hover,
.agent-button:hover    {
  color: rgb(255, 255, 255);
  text-decoration: underline;
  text-underline-offset: 7px;
}

.home-button .tooltip,
.download-button .tooltip,
.news-button .tooltip,
.community-button .tooltip,
.agent-button .tooltip,
.facebook-page .tooltip  {
  position: absolute;
  bottom: -30px;
  padding: 2px 5px;
  font-size: 12px;
  border-radius: 2px;

  color: white;
  background-color: rgb(92, 92, 92);
  transition: 0.3s;
  pointer-events: none;  /* this means when you hover on tooltip it is not doing anything */
  white-space: nowrap;   /* this will prevent from text warpping around */
  opacity: 0;
}

.home-button-url:hover .tooltip,
.download-button-url:hover .tooltip,
.news-button:hover .tooltip,
.community-button:hover .tooltip,
.agent-button:hover .tooltip,
.facebook-page:hover .tooltip  {
  opacity: 1;
  align-content: center;
}

.navbar-right  {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    transition: 1s;
}

@media (max-width: 900px)   {
    .navbar-right {
        margin: -30px;
        transition: 1s;
  }
}

@media (min-width: 901px) and (max-width: 1199px)   {
    .navbar-right    {
        margin: -50px;
        transition: 1s;
  }
}

.facebook-page  {
    padding-top: 4px;
}

.fb-icon    {
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: 1s;
}

@media(max-width: 900px)  {
  .fb-icon {
    height: 22px;
    transition: 1s;
  }
}

.page-background    {
    margin-top: 40px;
}

footer   {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: rgb(29, 29, 29);
    color: white;
    height: 45px;

    /* position: fixed;
    bottom: 0;
    left: 0;
    right: 0; */
    z-index: 1000;
    margin-bottom: 0;
}

 @media(max-width: 900px)  {
    footer {
      height: 80px;
  }
}

.footer-left  {
    display: flex;
    justify-content: center;
    flex: 1;
}

.ran-logo-footer  {
    height: 35px;
}

@media(max-width: 900px)  {
  .ran-logo-footer {
    height: 25px;
    margin: auto;
  }
}

@media(min-width: 901px) and (max-width: 1200px)  {
  .ran-logo-footer {
    height: 30px;
    margin: auto;
  }
}

.copyright  {
    font-size: 12px;
    font-weight: 400;
    flex: 1;
    margin-left: -300px;
}

@media(max-width: 900px)  {
    .copyright {
      font-size: 10px;
      font-weight: 200;
      margin: auto;
  }
}

@media(min-width: 901px) and (max-width: 1000px)  {
    .copyright {
      font-size: 10px;
      font-weight: 300;
      margin-left: -100px;
  }
}


@media(min-width: 1001px) and (max-width: 1400px)  {
    .copyright {
      font-size: 10px;
      font-weight: 300;
      margin-left: -150px;
  }
}

@media(min-width: 1401px) and (max-width: 1800px)  {
  .copyright {
    font-size: 10px;
    font-weight: 300;
    margin-left: -200px;
}
}

.copyright-text {
      
}

@media(max-width: 900px)  {
  .copyright-text {
    margin: auto;
  }
}

@media(min-width: 901px) and (max-width: 1200px)  {
  .copyright-text {
    margin: auto;
  }
}

.signature  {
    display: flex;
    justify-content: center;
    flex: 1;
}

.junix  {
    color: rgb(0, 129, 123);
}

.web-dev  {
    font-size: 12px;
    font-weight: 300;
    color: rgb(126, 126, 126);
}