﻿:root {
  --gold: #d99d50;
  --blue: #244c8c;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#office-number-square {
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--gold);
}

.main-logo {
    /*width: 15rem;
  height: 5.5rem;*/
    max-width: 245px;
}

.nav-bottom-border {
  border-bottom: 0.25rem solid var(--gold);
}

main {
  flex: 1;
}

.contents {
  height: 100%;
}

.first-half {
    color: #515151;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.grow {
    transition: all .2s ease-in-out;
}

.grow:hover {
    transform: scale(1.1);
}

.first-half-header {
  font-size: 2rem;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .first-half-header {
    font-size: 3rem;
    font-weight: 700;
    line-height: 4.8rem;
  }
}

.description {
  padding-left: 1rem;
  height: 83px;
  border-left: 2px solid var(--blue);
  font-size: 1.1rem;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .description {
    padding-left: 1rem;
    height: 83px;
    border-left: 2px solid var(--blue);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
  }
}

.go-to-map-button {
  width: 100%;
  margin: auto;
  background-color: var(--blue);
  color: white;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 200;
}

@media only screen and (min-width: 768px) {
  .go-to-map-button {
    width: 70%;
  }
}

.go-to-map-button:hover {
  color: white;
  background-color: #416aac !important;
}

.second-half {
  background-repeat: no-repeat;
  background-image: url("../images/base-background.png");
  background-position: right;
  height: 100%;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  border-left: 0.25rem solid var(--gold);
}

.triangle {
  position: absolute;
  width: 0;
  height: 0;
  left: 2px;
  top: -15px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--gold);

  opacity: 0;

  transition: top 0.25s linear, opacity 0.15s linear;
}

.dropdown-menu li:hover > .triangle {
  top: 26%;
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  /* this is so the triangle only shows at medium screens and higher. */
  .dropdown:hover > .triangle {
    top: 26%;
    opacity: 1;
  }
}

.dropdown-item:active {
  background-color: var(--gold) !important;
}
