* {
  border-width: 0;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  --nav-bar-option-font-size: 1rem;
  --nav-bar-option-font-size-hovered: 1.05rem;
  --nav-bar-background-color: #614071;
  --nav-bar-options-color: white;
  --nav-bar-options-color-hovered: #5c700c;
  --slide-show-button-color: white;
  --slide-show-button-color-active: #614071;
  --odd-section-container-background-color: #5c700c;
  --even-section-container-background-color: #614071;
  --article-background-color: white;
  --footer-background-color: #614071;
  --paragraph-line-height: 2rem;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  background-color: #16091d;
}

.nav-bar {
  background-color: var(--nav-bar-background-color);
  display: flex;
  justify-content: center;
  padding-block: 1rem;
  height: 4.05rem;
  align-self: stretch;
}
.nav-bar .options {
  width: 80%;
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: space-between;
}
.nav-bar .options a {
  color: var(--nav-bar-options-color);
  text-decoration: none;
  transition: color 200ms ease-out;
  transition: font-size 200ms ease-out;
  font-size: var(--nav-bar-option-font-size);
}
.nav-bar .options a:hover {
  color: var(--nav-bar-options-color-hovered);
  font-size: var(--nav-bar-option-font-size-hovered);
}

main.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
}
main.content .cares-logo {
  position: absolute;
  z-index: 100;
  height: 15rem;
  aspect-ratio: 3/1;
  left: 3rem;
  top: 3rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

section.slide-show {
  width: 100vw;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2.5rem solid var(--even-section-container-background-color);
}
section.slide-show .slide-show-button {
  position: absolute;
  background-color: transparent;
  z-index: 100;
}
section.slide-show .slide-show-button i {
  font-size: 3rem;
  color: var(--slide-show-button-color);
  transition: all 200ms ease-out;
}
section.slide-show .slide-show-button:disabled {
  opacity: 0.5;
}
section.slide-show .slide-show-button:hover:not(:disabled) i {
  font-size: 4rem;
}
section.slide-show .slide-show-button:active:not(:disabled) i {
  color: var(--slide-show-button-color-active);
}
section.slide-show .slide-show-button.prev {
  left: 2.5rem;
}
section.slide-show .slide-show-button.next {
  right: 2.5rem;
}
section.slide-show.slide-2 .slide-show-image {
  transform: translateX(-100%);
}
section.slide-show.slide-3 .slide-show-image {
  transform: translateX(-200%);
}
section.slide-show.slide-4 .slide-show-image {
  transform: translateX(-300%);
}
section.slide-show.slide-5 .slide-show-image {
  transform: translateX(-400%);
}
section.slide-show .slide-show-image {
  width: 100vw;
  height: calc(100vh - 7.05rem);
  grid-row: 1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease-in-out 500ms;
}

.content-container {
  width: 85vw;
  padding-inline: 3rem;
}
.content-container.officer-carousel {
  padding-inline: 2.5rem;
}
.content-container.areas-carousel, .content-container.officer-carousel {
  border-top: 2.5rem solid var(--even-section-container-background-color);
  border-bottom: 2.5rem solid var(--even-section-container-background-color);
  width: 100vw;
}
.content-container h1, .content-container h2 {
  text-align: center;
}
.content-container p {
  text-indent: 0.75in;
  text-align: justify;
  line-height: var(--paragraph-line-height);
}
.content-container:nth-child(odd) {
  background-color: var(--odd-section-container-background-color);
}
.content-container:nth-child(even) {
  background-color: var(--even-section-container-background-color);
}
.content-container article {
  background-color: var(--article-background-color);
  padding-inline: 6rem;
  padding-block: 2rem;
  position: relative;
}
.content-container article::before {
  content: "";
  position: absolute;
  background-color: white;
  width: 100%;
  top: -1.25rem;
  left: 0;
  height: 1.25rem;
  border-radius: 2rem 2rem 0 0;
}
.content-container article:not(.about-the-officers)::after {
  content: "";
  position: absolute;
  background-color: white;
  width: 100%;
  bottom: -1.25rem;
  left: 0;
  height: 1.25rem;
  border-radius: 0 0 2rem 2rem;
}

.the-areas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
  padding: 2rem;
  height: 15rem;
}
.the-areas .the-areas-caption {
  flex-basis: 100%;
}
.the-areas img {
  aspect-ratio: 1;
  width: 8rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 300ms ease-out;
}
.the-areas img:hover {
  transform: scale(125%);
  margin-inline: 1rem;
}

.the-officers {
  height: 13rem;
  overflow: hidden;
}
.the-officers .the-officers-caption {
  flex-basis: 100%;
}
.the-officers div {
  display: grid;
  grid-template-columns: repeat(26, 7rem);
  grid-template-rows: 7rem 1rem;
  overflow-x: scroll;
  height: 13rem;
  gap: 0.5rem 1rem;
}
.the-officers div::-webkit-scrollbar {
  display: none;
}
.the-officers div img {
  aspect-ratio: 1;
  width: 7rem;
  background-color: red;
  border-radius: 50%;
}
.the-officers div h4 {
  text-align: center;
  width: 7rem;
}

footer.footer {
  background-color: var(--footer-background-color);
  width: 100vw;
  padding-block: 0.75rem 1rem;
  padding-inline: 5rem;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: space-between;
}
footer.footer section {
  flex: 0 0 26%;
}
footer.footer .motto-container h2 {
  font-size: 2.5rem;
}
footer.footer .contacts-container p {
  font-size: 0.8rem;
  line-height: 1.5rem;
  font-style: normal;
}
footer.footer .recruitment-container h2 {
  max-width: 16rem;
}/*# sourceMappingURL=style.css.map */