html,
body {
  /* prevents horizonal scrolling */
  overflow-x: hidden;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.underline {
  text-decoration: underline;
}

.bold {
  font-weight: bold;
  font-size: 1.3rem;
}

.stronger-h2-letters {
  font-size: 1.2em;
}

#desktop-view-background {
  background-image: url(../assets/background.webp);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

/* MAIN CONTENT CONTAINER - holds the entirety of the primary content */
#main-container {
  padding: 0;
  width: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 1280px) {
  #main-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
  }
}
/*
  TOP NAV BAR
  */
#topnav-flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 164px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: #1A2530;
  padding-bottom: 10px;
  position: relative;
  padding-bottom: 0;
}

#topnav-logo {
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
#topnav-logo > img {
  width: 100px;
  height: 100%;
}

#nav-hamburger-container > h2 {
  font-family: "Montserrat", sans-serif;
  color: #fc9e49;
  margin-right: 20px;
}

#nav-horizontal-list-container {
  display: none;
}

@media only screen and (min-width: 768px) {
  #nav-hamburger-container {
    display: none;
  }
  #nav-horizontal-list-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    list-style: none outside none;
    margin: 0;
    padding: 0;
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 1%;
    position: relative;
    border-bottom: none;
    flex: 0 1 auto;
    height: 100%;
  }
  #nav-horizontal-list-container .active-page {
    background-color: #fc9e49;
  }
  #nav-horizontal-list-container > ul {
    border-bottom: 5px solid #fc9e49;
    padding: 0;
    list-style-type: none;
  }
  #nav-horizontal-list-container > ul > li {
    text-align: left;
    transition: all 300ms ease-in-out 0s;
    border-bottom: 5px solid transparent;
    float: left;
    margin-bottom: -5px;
  }
  #nav-horizontal-list-container > ul > li:hover {
    background-color: #fc9e49;
    color: #ffffff;
    display: block;
  }
  #nav-horizontal-list-container > ul > li > a {
    display: block;
    text-decoration: none;
    white-space: normal;
    color: white;
    font-size: 1em;
    line-height: 49px;
    padding: 0 15px;
    text-transform: uppercase;
  }
}
#nav-hamburger-custom {
  color: white;
  text-align: center;
  margin-left: 5%;
}

#hamburger-dropdown {
  position: absolute;
  top: 174px;
  right: 10px;
  width: 200px;
  background-color: white;
  z-index: 3;
  display: none;
  border: 5px solid #fc9e49;
  box-shadow: 10px 10px 10px gray;
  opacity: 1;
}

@-webkit-keyframes hamburger-dropdown-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes hamburger-dropdown-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#dropdown-content-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  height: 100%;
}
#dropdown-content-container > a {
  border-top: #fc9e49 solid 1px;
  border-bottom: #fc9e49 solid 1px;
  width: 100%;
  text-align: center;
  line-height: 40px;
  margin: 0;
  height: 40px;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
}

/*
FIXED CONTACT ME LINKS ON SIDE OF DESKTOP VIEW
*/
#contact-fixed-sidebar {
  display: none;
}

@media only screen and (min-width: 1360px) {
  #contact-fixed-sidebar {
    display: block;
    position: fixed;
    left: 0px;
    padding-left: 0;
    margin: 0;
    top: 35%;
    list-style-type: none;
    z-index: 4;
    background-color: #1A2530;
  }
  #contact-fixed-sidebar .contact-fixed-sidebar-dialogbox {
    display: none;
  }
  #contact-fixed-sidebar li > a > i {
    position: relative;
  }
}
@media only screen and (min-width: 1360px) and (max-height: 480px) {
  #contact-fixed-sidebar {
    top: 0;
  }
}
@media only screen and (min-width: 1360px) {
  #contact-fixed-sidebar li:hover .contact-fixed-sidebar-dialogbox {
    display: block;
    position: absolute;
    left: 60px;
    top: 0;
    z-index: 2;
    background-color: #1A2530;
    border-radius: 20px;
    font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 100;
    margin: 0;
    padding: 10px;
  }
}
@media only screen and (min-width: 1360px) {
  #contact-fixed-sidebar a {
    text-decoration: none;
    display: block;
  }
}
@media only screen and (min-width: 1360px) {
  #contact-fixed-sidebar i {
    text-align: center;
    background-color: #1A2530;
    width: 40px;
    color: white;
    height: 100%;
    font-size: 2em;
    padding: 10px;
  }
}
/*
CARDS - COMMON STYLING
*/
.card-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline;
}

.button {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  box-sizing: border-box;
}

.button-primary {
  display: block;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 70%;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #fc9e49;
  background-color: #1A2530;
  border-color: #fc9e49;
  font-size: 15px;
  color: white;
}

/*
  BOTTOM CONTACT ME FOOTER
  */
.footer-container {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  border-top: 5px solid #fc9e49;
  background-color: #1A2530;
}

.copyright-container {
  border-top: 1px solid #fc9e49;
  justify-content: flex-end;
}
.copyright-container > p {
  color: lightgrey;
  font-style: italic;
  margin-right: 30px;
}

#footer-container-title {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 5%;
  padding-right: 5%;
}
#footer-container-title .fa-arrow-right {
  display: none;
}
#footer-container-title .fa-arrow-down {
  display: inline-block;
}
#footer-container-title .fa-arrow-right,
#footer-container-title .fa-arrow-down {
  max-width: 34.41px;
}
#footer-container-title > h1 {
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.1rem;
}
#footer-container-title > h3 {
  color: #fc9e49;
  margin: 0;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

#footer-container-links {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
  padding-top: 10px;
}
#footer-container-links .contact-text {
  font-size: 12px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: auto 0 0 0;
  transform: translateY(10px);
}
#footer-container-links .fa-brands,
#footer-container-links .fa-solid {
  margin-right: 10px;
}
#footer-container-links ul {
  display: block;
  position: relative;
  width: 100%;
  list-style-position: inside;
}
#footer-container-links li {
  position: relative;
  display: block;
  list-style-type: none;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
#footer-container-links a {
  text-decoration: none;
}
#footer-container-links span {
  color: white;
  height: 200px;
  font-size: 2em;
  text-align: left;
}

@media only screen and (min-width: 804.1px) {
  #footer-container-title .fa-arrow-right {
    display: inline-block;
  }
  #footer-container-title .fa-arrow-down {
    display: none;
  }
}
/*
GENERIC FLEX CONTAINER - MOST SUBPAGES WILL LIKELY USE THIS CLASS
Column flex direction by default for mobile-first
*/
.generic-flex-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
  align-items: flex-start;
  justify-content: center;
  box-shadow: 5px 5px 5px 0px rgba(41, 51, 69, 0.75);
  background-color: white;
}/*# sourceMappingURL=common_custom.css.map */