@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --brand-color: #00379b;

}

body {
  background-color: white;
}

.t-primary-bgcolor {
  background: #00379b;
}

a {
  color: var(--brand-color);
}

.container {
  width: 1152px;
}

.header-wrapper .container {
  padding: 0 1.5rem;
}

.header__logo {
  align-self: center !important;
}

.header {
  font-family: Montserrat;
  background-color: white;
  height: 120px;
  display: flex;
  justify-content: space-between;
}

.header a {
  color: #303030;
}

.header__nav .fa-instagram {
  font-size: 20px;
}

.header__nav .fa-magnifying-glass {
  font-size: 16px;
}

.header__nav {
  display: flex;
  padding: 15px 0;
  background-color: white;
  justify-content: space-between;
  align-items: center;
  align-self: flex-start;
}

.header__nav a {
  text-transform: uppercase;
  font-size: 11.2px;
  font-weight: 700;
  position: relative;
  line-height: 18px;
  display: flex;
  align-items: flex-start;
  margin-left: 30px;
}

.header__nav a:before {
  bottom: -7px;
  height: 2px;
  background-color: #d70b52;
  position: absolute;
  left: 0;
  width: 100%;
  content: '';
  opacity: 0;
  transition: opacity .3s, transform .3s;
  transform: translateY(10px);
}

.header__nav a:hover:before {
  opacity: 1;
  transform: translateY(0px);
}

.header__nav a:hover {
  text-decoration: none;
  color: #d70b52;
}

.header__logo img {
  max-height: 67px;
}

.order-button::before {
  display: none !important;
}

.order-button {
  display: flex;
  color: #fff !important;
  padding: 15px;
  max-height: 50px;
  font-size: 11.2px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25px !important;
  border-radius: 15px;
  box-shadow: 2px 2px 5px gray;
  background: linear-gradient(90deg, #d70b52, #ea6425);
  margin-left: 30px;
}

.order-button:hover {
  background: #ea6425 !important;
}

.order-button::after {
  display: none !important;
}

.planroom-button::before {
  display: none !important;
}

.planroom-button {
  display: flex;
  color: #fff !important;
  padding: 15px;
  max-height: 50px;
  font-size: 11.2px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25px !important;
  border-radius: 15px;
  box-shadow: 2px 2px 5px gray;
  background: linear-gradient(90deg, #54bcc0, #5cbae5);
  margin-left: 30px !important;
}

.planroom-button:hover {
  background: #5cb9e5 !important;
}

.planroom-button::after {
  display: none !important;
}

/** Hide project order/download stuff until user is logged in **/
body.is-guest .project__buttons {
  display: none;
}

.slideshow__links,
#promos::before {
  display: none;
}

#promos {
  column-gap: 10px;
}

#promos .box {
  margin: 0;
  border-radius: 0;
  background: none;
  padding: 20px;
}

#promos .jobs .scroll {
  font-size: 14px;
  max-height: 500px;
}

#promos .jobs .job {
  line-height: 1.5;
}