* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

/* Body */

body {
  transition: 0.5s;
  background: var(--bgClr);
  color: var(--txtClr);
}

/* Navbar */

nav {
  justify-content: space-evenly;
  display: flex;
  align-items: center;
  flex-direction: row;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  width: 100%;
  z-index: 10;
  top: 0;
  position: fixed;
  background: var(--bgClr);
}
.logo > img {
  width: 5rem;
  margin: 0.4rem;
}
.logo > img:hover {
  cursor: pointer;
}
.links {
  margin: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
li > a {
  text-decoration: none;
  color: var(--txtClr);
}
.links > li {
  margin: 0.4rem;
  list-style-type: none;
  padding: 0.5rem;
  border-radius: 10px;
  line-height: 0.9;
}
li:hover {
  transition: var(--transition);
  cursor: pointer;
  background: var(--background);
}
.active {
  background: var(--background);
}

/* Theme */

#theme {
  font-size: 2rem;
  transition: var(--transition);
  color: var(--txtClr);
}
#theme:hover {
  cursor: pointer;
}

/* Home Section */

#home {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.left > h1 {
  font-size: 4rem;
  font-weight: 500;
}
.right > img {
  width: 35rem;
  border-radius: 2rem;
  margin-top: 3rem;
}
.social {
  font-size: 3rem;
  text-align: center;
}

/* About Section */

#about {
  display: flex;
  justify-content: center;
  align-items: center;
}
#about > img {
  width: 20rem;
}
#about > p {
  text-align: justify;
  margin-right: 2rem;
}

/* Message */
.msg {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: justify;
}
.msg > div > h2 {
  text-align: center;
}
.msg > div {
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: var(--transition);
  background: var(--bgClr2);
  margin-top: 2rem;
}

.msg > div:hover {
  transform: scale(1.1);
  /* border-right: 2px solid var(--background);
  border-left: 2px solid var(--background); */
}
.msg > div:nth-child(even) {
  margin-right: 1rem;
  margin-left: 1rem;
}

/* School Head */
.schlHead {
  display: flex;
  justify-content: center;
}
.schlHead > div > img {
  height: 20rem;
  margin: 1rem;
  margin-top: 4rem;
  border: 0.3rem solid var(--background);
  border-top-left-radius: 0.2rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 0.2rem;
  border-bottom-left-radius: 1rem;
}
.schlHead > div {
  margin: 1rem;
}
.headTxt {
  text-align: center;
}

/* Why Beersheba */

/* .whyUs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
} */
table {
  z-index: 2;
  width: 90%;
  border-collapse: collapse;
  border-spacing: 0;
  box-shadow: var(--box-shadow);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  margin: 2rem;
  margin: auto;
}
td,
th {
  padding: 15px 20px;
  text-align: center;
  font-size: 1.1rem;
}
caption {
  background-color: var(--background);
  color: #fafafa;
  font-family: "Open Sans", Sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  padding: 1rem;
  font-size: 1.2rem;
}
tr {
  width: 100%;
  background-color: var(--bgClr);
  font-family: "Montserrat", sans-serif;
}
tr:nth-child(even) {
  background-color: var(--bgClr2);
}
.fa-check-circle {
  font-size: 1.5rem;
}
