@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --light: #fff;
  --light-overlay: rgba(255, 255, 255, 0.8);
  --lightGray: #ededf1;
  --black: #000;
  --blue: #000e3f;
  --blue-overlay: rgba(0, 14, 63, 0.3);
  --gold: #a98b4c;
  --gold-overlay: rgba(169, 139, 76, 0.6);
  --gray: #3e4851;
  --small: 1.25em;
  --medium: 1.5em;
  --large: 2em;
  --xlarge: 2.5em;
  --smallPad: 10px;
  --normalPad: 20px;
  --largePad: 40px;
}
.fadeInUp {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  color: var(--blue);
  font-family: "Raleway", sans-serif;
}
h4 {
  font-size: var(--medium);
}
.textAlign {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
a {
  text-decoration: none;
  color: var(--blue);
}
a:hover {
  color: var(--gold);
}
.accentText {
  color: var(--gold);
  font-size: var(--large);
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
  top: -0.05em;
  position: relative;
}
#topBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
  width: 90%;
  margin: 0 5%;
  position: sticky;
}
#headerLogo {
  height: 100%;
  display: flex;
  align-items: center;
}
#headerLogo img {
  min-height: 0;
  height: 90%;
  width: auto;
  margin: 5% 0;
  display: block;
}
#mainNav ul li {
  display: inline-block;
  margin: 15px;
  font-size: 1.5em;
}
#mainNav ul li a {
  font-size: var(--small);
}
.hrBar {
  color: var(--gold);
  width: 95%;
  margin: 10px 2.5%;
  height: 3px;
  background-color: var(--gold);
}
.smallHr {
  width: 20%;
  height: 4px;
  color: var(--gold);
  background-color: var(--gold);
  border: none;
  margin: var(--smallPad);
}
#hero {
  background-image: url("https://temp.seniorlivinghiring.com/img/heroBG.jpg");
  width: 100%;
  height: 550px;
  background-position: center;
  background-size: cover;
}
#overlay {
  height: 100%;
  width: 100%;
  inset: 0;
  background: var(--light-overlay);
}
#heroContent {
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}
#heroContent h1 {
  font-size: var(--xlarge);
}
#heroContent h2 {
  font-size: var(--large);
}
#heroContent h1,
#heroContent h2,
#heroContent p {
  margin: var(--normalPad);
}
#heroContent p {
  font-size: var(--large);
}
#heroButtons {
  display: flex;
  width: 100%;
  height: auto;
  gap: var(--normalPad);
  align-items: center;
  justify-content: center;
  gap: var(--normalPad);
  flex-direction: row;
}
#heroButtons a {
  color: var(--light) !important;
}
.buttonLink {
  background-color: var(--blue);
  border: solid thin var(--gold);
  padding: var(--smallPad);
  font-size: var(--medium);
}
#pageBody {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--normalPad) 0;
}
#homeContent {
  width: 100%;
}
.divLabel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--normalPad) 0;
  width: 100%;
}
.content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--normalPad) 0;
  width: 90%;
  margin: 10px 5%;
}
.content p {
  font-size: var(--small);
  line-height: var(--medium);
  text-align: center;
}
.video {
  width: 70%;
  aspect-ratio: 16/9;
}
#whyChoose {
  width: 100%;
  height: 470px;
  background-color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#whyChoose h4 {
  color: var(--light);
  font-size: var(--medium);
}
#whyChooseBoxes {
  width: 100%;
}
#whyChooseBoxes h5,
#whyChooseBoxes p {
  color: var(--light);
  margin: var(--small);
}
#whyChooseBoxes h5 {
  font-size: var(--medium);
}
#whyChooseBoxes ul {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--normalPad);
  text-align: center;
}
#whyChooseBoxes ul li {
  list-style: none;
  border: solid thin var(--gold);
  padding: var(--smallPad);
  width: 20%;
}
#whyChooseBoxes ul li a {
  color: var(--light);
}
#ourHeroes {
  width: 100%;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--lightGray);
}
.ourHeroesBoxes {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
}
#ourHeroesBoxes ul {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  gap: var(--smallPad);
}
#ourHeroesBoxes ul li {
  list-style: none;
  width: 30%;
  border: solid thin black;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--smallPad);
}
.ourHeroesImg {
  width: 45%;
  min-width: 100px;
  aspect-ratio: 1/1;
  border-radius: 125px;
  background-size: contain;
}
.ourHeroesText {
  width: 45%;
  height: 100%;
  display: flex;
  justify-content: start;
  flex-direction: column;
  line-height: 1.5em;
}
.ourHeroesText h5 {
  color: var(--gold);
  font-size: var(--large);
  margin: 0;
  line-height: var(--medium);
}
#silverSeniorConsulting {
  width: 100%;
  text-align: center;
}
#silverSeniorConsulting img {
  width: 100%;
  height: auto;
}
#workWithUs {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: var(--lightGray);
  height: 400px;
}
#wwuText {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
#slhQuote {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
#slhQuote h4 {
  margin: var(--normalPad);
}
#copyRight {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--smallPad);
}
