* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
body {
  overflow-x: hidden;
}
.menu {
  position: sticky;
  top: 0px;
  width: 100%;
  height: 90px;
  padding: 18px 16px;
  background: rgb(7, 37, 82);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  border-bottom: 2px solid rgb(27, 57, 102);
}

.shield {
  width: 140px;
  height: 100%;
  border: 2px solid #a5a5a5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.shield__img {
  height: 80%;
  margin-left: 5%;
}
.shield__text {
  font-size: 15px;
  color: white;
  font-family: "Raleway", sans-serif;
  text-align: center;
  margin-right: 5%;
}
.shield__text span {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
.shield__name {
  display: block;
}
.shield__name-pc {
  display: none;
}
.menu__options {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.login {
  text-decoration: none;
  color: cyan;
  font-weight: bold;
  margin-right: 10px;
  font-size: 17px;
  text-align: center;
}
.icon {
  width: 40px;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 10px;
  border-left: 1px solid #979797;
}
.icon_i {
  color: white;
  font-size: 26px;
}
.icon_close {
  display: none;
}
.nav {
  position: fixed;
  overflow: scroll;
  top: 88px;
  left: 0px;
  width: 100%;
  height: 0;
  transition: 0.5s;
  background: rgb(27, 57, 102);
  box-shadow: none;
  z-index: 3;
}
.nav::-webkit-scrollbar {
  display: none;
}
.nav-pc {
  display: none;
}

.nav__content {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.nav__option {
  border: 1px solid rgb(7, 37, 82);
}
.nav__option span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.nav__option-link {
  width: 100%;
  padding: 8px;
  padding-right: 0;
  font-size: 20px;
  color: white;
  text-decoration: none;
}
.nav__torrent {
  color: white;
  font-size: 20px;
  padding: 10px;
  background: rgb(7, 37, 82);
  cursor: pointer;
}
.nav__suboptions {
  display: none;
  background: rgb(230, 230, 230);
}
.nav__suboption {
  width: 100%;
  /* padding: 5px; */
  border-bottom: 1px solid #c5c5c5;
}
.nav__suboption-link {
  display: block;
  font-size: 17px;
  width: 100%;
  padding: 5px;
  text-decoration: none;
  color: black;
}
.presentation {
  display: none;
}
.teachers {
  width: 100%;
  /* max-width: 1500px; */
  margin: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.teachers__title {
  font-size: 25px;
  text-align: center;
  margin-bottom: 0.5%;
}
.teachers__subtitle {
  font-size: 15px;
  margin-bottom: 5%;
  text-align: center;
}
.teachers__content {
  /* width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around; */
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.teacher {
  width: 100%;
  max-width: 300px;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  /* border-bottom: 1px solid #979797; */
}
.teacher__img {
  width: 30%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: #d4e7f1;
  margin-bottom: 10px;
  /* display: none; */
}
.teacher__info {
  width: 100%;
  text-align: center;
}
.teacher__info h2,
.teacher__info p {
  font-size: 15px;
}
footer {
  width: 100%;
  padding: 8px;
  background: rgb(7, 37, 82);
}
.footer__content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contacts {
  width: 100%;
  padding: 12px;
  border-bottom: 2px solid rgb(27, 57, 102);
  display: flex;
  flex-direction: column;
  color: white;
}
.contacts__title {
  font-size: 15px;
  margin-bottom: 3%;
}
.contact {
  font-size: 15px;
  margin-bottom: 3%;
}
.directions {
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  color: white;
}
.directions__title {
  font-size: 15px;
  margin-bottom: 3%;
}
.direction {
  font-size: 15px;
  margin-bottom: 3%;
}
.google_maps {
  position: relative;
  width: 100%;
  height: 45%;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.google_maps iframe {
  width: 100%;
  height: 90%;
}
