*,
p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ff-primary: "Poppins", sans-serif;
  --text-white: #ffffff;
  --text-color: #ffffff;
  --text-secondary: #bcbcbc;
  --primary-color: #3e67b3;
  --primary-color-hover: #294477;
  --secondary-color: #7ead05;
  --secondary-color-hover: #668d05;
  --background-footer-color: rgb(34, 34, 34);
  --button-white-hover: rgb(179, 179, 179);
}

a {
  text-decoration: none;
}

body * {
  font-family: var(--ff-primary);
}

@media only screen and (max-width: 992px) {
  .removeElement {
    display: none !important;
  }
}

/* Header */
.header-section {
  padding: 18px 0;
}

.header-section img {
  height: 6.2rem;
}

.teste1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media only screen and (max-width: 991px) {
  .teste1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;

    margin-top: 1rem;
  }

  .teste1 div:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;

    margin-top: 1rem;
  }
}

.teste1 div {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}

.teste1 p > b {
  color: var(--primary-color);
}

.teste1 a {
  padding: 4px 1rem;
  border-radius: 4px;
  background-color: var(--primary-color);
  color: var(--text-white) !important;

  cursor: pointer;
}

.teste1 a:nth-child(1) {
  border: 1px solid var(--primary-color);
  color: var(--primary-color) !important;
  background-color: rgb(255, 255, 255);
}

.navbar ul li {
  border-right: 2px solid var(--secondary-color);
  line-height: 0;
  font-weight: 600;
  font-size: 1rem;
  padding: 0 10px;
}

.active a {
  color: var(--primary-color) !important;
}

.navbar li:last-child {
  border-right: none;
}

@media only screen and (max-width: 992px) {
  .navbar ul {
    background-color: #d4d4d4;
    margin-top: 8px;
    border-radius: 8px;
    padding: 1rem;
  }

  .navbar ul {
    gap: 10px;
  }

  .navbar ul li {
    border: none;
  }
}

/* Banner */
.banner {
  display: block;
  width: 100%;
  height: 100vh;
  max-height: 418px;

  background-position: center;
  background-size: cover;
}

.banner-content {
  color: var(--text-color);
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  flex-direction: column;
}

.banner-content > h4 {
  display: flex;
  gap: 10px;
}

.subtitle-content-text {
  width: 100%;
  padding: 1rem;
  background-color: #7dad0571;

  font-size: 1rem;
}

.banner-content h4,
.banner-content #separator {
  font-size: 1.75rem;
  text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
  font-weight: bold;
  margin: auto 0;
}

.banner-content #separator {
  color: var(--secondary-color);
}

.banner-content .container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.banner-content .container img {
  max-width: 222px;
}

.banner-content > div:nth-child(1) {
  margin-top: auto;
}

.banner-content > div:nth-child(2) {
  margin-top: auto;
  margin-bottom: 18px;
}

/* Home */
.banner-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(assets/banner/banner_02.jpeg);
}

/* Home section cards */
.line-section-cards {
  content: "";
  border-top: 8px solid var(--secondary-color);
  width: 200px;
  display: block;
  margin-bottom: 8px;
  text-align: center !important;
  border-radius: 50px;
  display: inline-block;
}

.line-section-cards-two {
  content: "";
  border-top: 8px solid var(--secondary-color);
  width: 25px;
  display: block;
  margin-bottom: 8px;
  text-align: center !important;
  border-radius: 50px;
  display: inline-block;
}

.container-cards .card {
  width: 100%;
  height: 360px;
}

/* .section-cards .col {
  border-radius: 10px !important;
  margin: 0px 10px;
  max-width: 350px;
  height: 370px;
  box-sizing: border-box;
  align-items: center;
}

.section-cards i {
  font-size: 60px;
  padding-bottom: 20px;
  padding-top: 20px;
  color: var(--secondary-color);
}

.section-cards .content {
  margin: 0px 15px;
}

.section-cards .content a {
  display: inline-block;
  width: 100%;
  margin-top: 24px;

  text-align: center;

  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 700;

  padding: 0.5rem 1rem;

  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.section-cards .content a:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
} */

/* Home section who */
.section-who {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.section-who .content {
  min-width: 320px;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-who .content a {
  display: inline-block;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;

  font-weight: 700;

  border-radius: 8px;

  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.section-who .content a:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

@media (max-width: 768px) {
  .section-who {
    flex-direction: column;
  }

  .section-who div {
    max-width: 100%;
  }

  .img-content {
    margin: 0 auto;
  }
}

.img-content {
  max-width: 520px;
  overflow: hidden;

  border-radius: 8px;
}
.img-content img {
  width: 100%;
  height: 100%;
}

/* Home section search */
.section-search {
  background-color: var(--primary-color);
  color: white;
}

.btn-section-search a {
  margin-top: 1rem;
  text-decoration: none !important;
  color: var(--primary-color);
  font-weight: bold;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
}

/* Home section imc */
.imc button {
  color: var(--text-white);
  background-color: var(--secondary-color);
  padding: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.imc button:hover {
  background-color: var(--secondary-color-hover);
  padding: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.imc input {
  border-color: var(--secondary-color);
}

.background-quiz {
  background-color: var(--titleFeaturedColor);
  margin-bottom: 10px !important;
}

.quiz {
  margin: 0px 20px 0px 20px;
}

#img-imc {
  max-width: 290px;
}

/* Unity section cards */
.card-unity-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-unity-img img {
  width: 100%;
  max-width: fit-content;
  max-height: 260px;
  border-radius: 8px;
}

.card-unity-content h4 {
  font-weight: 700;
  text-transform: uppercase;
}

.card-unity-content p {
  font-size: 1rem;
}

.card-unity-content a {
  color: var(--primary-color);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.card-unity-content a:hover {
  color: var(--primary-color-hover);
  cursor: pointer;
}

.section-unity-who {
  padding-top: 2.5rem;
}

.section-unity-who h1 {
  text-align: center;
}

.section-unity-who p {
  padding: 1rem 0;
}

.mission {
  background-color: #e3e3e3;
  padding: 1rem;

  margin: 2rem 0;

  border-radius: 8px;
}

.mission h3 {
  color: var(--primary-color);
}

.mission p,
ul {
  color: #868688;
}

/* Staff section cards */
.section-staff > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
  gap: 14px;
}

.staff-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 220px;
  min-height: 276px;

  text-align: center;

  padding: 1rem;
  background-color: #f1f1f1;
  border-radius: 8px;

  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.staff-card img {
  max-width: 128px;
  margin: 0 auto;

  border-radius: 50%;
}

.staff-card span {
  padding-top: 1rem;

  font-weight: 700;
}

/* Exams */
.section-exams {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  text-align: center;
}

.card {
  width: 320px;
  height: 380px;
}

.card img {
  max-height: 178px;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body a {
  background-color: var(--secondary-color);
  border: none;
}

.card-body a:hover {
  background-color: var(--secondary-color-hover);
}

.modal-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.gallery-container a img {
  width: 100%;
  max-height: 172px;
  border-radius: 8px;
}

@media (max-width: 1388px) {
  .gallery-container a img {
    width: 218px;
  }
}

@media (max-width: 980px) {
  .gallery-container a img {
    width: 158px;
  }
}

/* scheduling */
.scheduling-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;

  border-top: 5px solid var(--secondary-color);

  padding: 32px 0;
}

.scheduling-container i {
  color: var(--primary-color);
  font-size: 60px;
}

.scheduling-container h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}

.scheduling-container span {
  font-size: 1rem;
  color: var(--primary-color);
}

.scheduling-footer {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 28px;
}

.scheduling-footer a {
  font-weight: 700;
  color: var(--secondary-color);

  text-decoration: underline;
}

.scheduling-footer-button {
  color: var(--text-white) !important;
  text-decoration: none !important;
  font-weight: bold;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background-color: var(--secondary-color);
  transition: background-color 0.3s, color 0.3s;
}

.scheduling-footer-button:hover {
  color: var(--text-white) !important;
  background-color: var(--secondary-color-hover);
}

/* Footer */
.bg-footer {
  background-color: var(--background-footer-color);
}

.bg-footer p {
  color: var(--text-secondary) !important;
}

.bg-footer a {
  color: var(--textFooter) !important;
}

.bg-title {
  color: var(--text-white);
}

.bg-footer a:hover {
  text-decoration: underline !important;
}
