*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
.header{
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(255,255,255,0.75),rgba(255,255,255,0)), linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.75)), url(images/BG1.jpg);
  background-position: center;
  background-size: contain;
  position: relative;
}

nav {
  display: flex;
  padding: 0.5% 0.5%;
  justify-content: space-between;
  align-items: right;
}
nav img {
  width: 300px;
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 50px 25px;
  position: relative;
}
.nav-links ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 25px;
}
.nav-links ul li::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #5966a8;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  width: 50%;
}
.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
.text-box h1 {
  font-size: 100px;
}
.text-box p {
  margin: 10px 0px 40px;
  font-size: 25px;
  color: #fff;
}
.About-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 34px;
  font-size: 25px;
  background: transparent;
  position: static;
  cursor: pointer;
}
.About-btn:hover {
  border: 1px solid #5966a8;
  background: #5966a8;
  transition: 0.25s;
}

nav .fa {
  display: none;
}

@media(max-width: 700px) {
  .text-box h1 {
    font-size: 50px;
  }
  .nav-links ul li {
    display: block;
  }
  .nav-links {
    position: fixed;
    background: #5966a8;
    height: 100vh;
    width: 225px;
    top: 0;
    right: -225px;
    text-align: left;
    z-index: 2;
    transition: 0.35s;
  }
  nav .fa {
    display: block;
    color: #fff;
    margin: 25px;
    font-size: 30px;
    cursor: pointer;
  }
}

/*--About Page--*/

.sub-header {
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0)), linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.5)), url(images/BG2.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff
}

.sub-header h1{
  font-size: 80px;
  margin-top: 50px;
}

.about {
  margin: auto;
  text-align: center;
}
.firstRow {
  width: 75%;
  margin: auto;
  display: flex;
  text-align: center;
}

.whatIsRealm {
  font-size: 25px;
  font-weight: lighter;
  line-height: 1.5;
  margin-top: 5%;
  margin-bottom: 5;
}
.whatIsRealm h1 {
  padding-bottom: 5%;
}
.secondRow {
  width: 75%;
  margin: auto;
  text-align: center;
  margin-top: 3%;
  display: flex;
  justify-content: space-evenly;
}
.History {
  font-size: 25px;
  font-weight: lighter;
  line-height: 1.5;
  margin-bottom: 5%;
}
.History h1 {
  padding-bottom: 5%;
}

@media(max-width: 700px) {
  .firstRow {
    flex-direction: column;
  }
  .imgFile {
    width: 200px;
    height: 200px;
  }
  .secondRow {
    flex-direction: column;
  }
}


/*--Contact Page--*/

.sub-header4 {
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(255,255,255,0.5),rgba(255,255,255,0)), linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.5)), url(images/BG3.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff
}

.sub-header4 h1{
  font-size: 80px;
  margin-top: 100px;
}

.location {
  width: 80%;
  margin: auto;
  padding: 80px 0;
}
.location iframe {
  width: 100%;
}

.contact {
  width: 80%;
  margin: auto;
}

.contactCol {
  flex-basis: 48%;
  margin-bottom: 30px;
}

.contactCol div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.contactCol div .fa {
  font-size: 28px;
  color: #000000;
  margin: 10px;
  margin-right: 30px;
}

.contactCol input, .contactCol textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.submit {
  color: #000000;
  padding: 5px 10px;
  border: 1px solid #5966a8;
  font-size: 35px;
  position: static;
  cursor: pointer;
}

/*--Footer--*/

.site-footer
{
  background-color:#26272b;
  padding:45px 0 20px;
  font-size:15px;
  line-height:24px;
  color:#737373;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#fff;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  color:#737373;
}
.site-footer a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block
}
.footer-links a
{
  color:#737373
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block
}
.site-footer .social-icons
{
  text-align:right
}
.site-footer .social-icons a
{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#33353d
}
.copyright-text
{
  margin:0
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}
.social-icons a.facebook:hover
{
  background-color:#3b5998
}
.social-icons a.twitter:hover
{
  background-color:#00aced
}
.social-icons a.linkedin:hover
{
  background-color:#007bb6
}
@media (max-width:767px)
{
  .social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600
  }
}
