/* 
    Document   : Mentor
    Created on : May 17, 2023, 5:26:05 PM
    Author     : Hawkeye
    Description:
        Purpose of the stylesheet follows.
*/


#Hero {
  position: relative;
  margin: 0;
  }

.Overlay {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  text-align: center;
  }
#Hero .Overlay p {
  font-size: 70px;
  line-height: 1.5em;
  color: #fff;
  letter-spacing: 0;
  margin: 0 0 20px 0;
  text-shadow: 0 0 10px #000;
  }

.MentorContent {
  float: left;
  width: 45%;
  margin: 0 0 20px 0;
  }

.MentorPhoto {
  float: right;
  width: 50%;
  margin: 0 0 20px 0;
  }
.MentorPhoto img {
  display: block;
  margin: 0 auto;
  border: 0;
  }


@media screen and (max-width: 1100px) {
#Hero .Overlay p {
  font-size: 50px;
  margin: 0;
  }
}
@media screen and (max-width: 850px) {
.MentorContent {
  float: none;
  width: 100%;
  }
.MentorPhoto {
  float: none;
  width: 100%;
  }
}
@media screen and (max-width: 690px) {
.Overlay {
  position: static;
  margin: 0 0 0 5%;
  }
#Hero .Overlay p {
  font-size: 40px;
  color: #000;
  text-shadow: none;
  }
}
