/*** Mixins & Default Styles ***/

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

header {
  width: 100%;
  /* height: 100px; */
  display: table;
  position: fixed;
  z-index: 9999;
}

/*** Navigation Styles ***/

nav {
  width: 100%;
  /* height: 60px; */
  /* background: rgba(0, 0, 0, 0.6); */
  /* border-bottom: 2px solid #9b3c2e; */
  display: inline-block;
  position: fixed;
  padding-top: 10px;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

nav.navShadow {
  -webkit-box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  /* height: 60px; */
  transition: all ease-out 0.3s;
  background: #ffffff;
  /* border-bottom: 2px solid #ffffff; */
  padding-top: 0px;
}

nav.navShadow #word-mark {
  opacity: 0;
}

#brand {
  display: table;
  width: 25%;
  max-width: 500px;
  float: left;
  height: 60px;
  padding: 5px 10px;
}

#menu {
  display: inline-block;
  width: 75%;
  float: right;
}

#menu ul {
  display: table;
  width: 100%;
  padding-right: 0px;
  text-align: right;
}

#brand {
  /* padding-left: 15px; */
}

#logo {
  cursor: pointer;
  display: table-cell;
  vertical-align: middle;
  transition: all ease 0.3s;
}

#logo img {
  width: 100%;
  max-width: 195px;
  display: table;
  transition: all ease 0.3s;
}

#word-mark {
  width: 120px;
  height: 20px;
  background: #fff;
  border-radius: 90px;
  margin-left: 20px;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navShadow #brand {
  height: 60px;
  padding: 5px 10px;
}

.navShadow #menu ul li a {
  padding: 19px 8px;
  font-size: 18px;
  color: #004635;
}

.navShadow #menu ul li a:hover {
  background: #004636;
  color: #ffffff;
}

/*** Menu Styles ***/

#menu li {
  list-style: none;
  display: inline-block;
}

#menu li a {
  text-decoration: none;
  color: #ffffff;
  display: block;
  padding: 17px 8px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
}

#menu li a:hover {
  background: none;
  color: #f3ab03;
}

#menu-toggle {
  width: 100%;
  height: 80px;
  background: #b1021f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: none;
  margin: auto;
  transition: all ease 0.3s;
}

#menu-toggle:hover .bar {
  width: 25px;
}

#menu-toggle.closeMenu .bar {
  width: 25px;
}

#menu-toggle.closeMenu .bar:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

#menu-toggle.closeMenu .bar:nth-child(2) {
  -webkit-transform: scale(0);
  transform: scale(0);
}

#menu-toggle.closeMenu .bar:last-child {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

.bar {
  width: 25px;
  height: 2px;
  background: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.bar:nth-child(2) {
  width: 20px;
  margin: 5px 0;
}

.bar:last-child {
  width: 15px;
}

/*** Hero Section Styles ***/

#hero-section {
  width: 100vw;
  height: calc(100vh - 160px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 160px;
}

#head-line {
  width: 520px;
  height: 30px;
  background: #fff;
  border-radius: 90px;
  position: relative;
}

#head-line:before, #head-line:after {
  content: "";
  height: 30px;
  border-radius: 90px;
}

#head-line:before {
  width: 360px;
  background: #fff;
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

#head-line:after {
  width: 200px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: -60px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

/*** Section Styles ***/

#heading {
  width: 120px;
  height: 20px;
  background: #fff;
  border-radius: 90px;
  margin-top: 40px;
}

/*** Responsive Menu For Smaller Device ***/

@media screen and (min-width: 767px) {
  .mobile-link-nav {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  #menu li a{
    font-size: 17px;
    padding: 36px 7px;
  }
  .navShadow #menu ul li a{
    padding: 21px 8px;
    font-size: 18px;
  }
}
@media screen and (max-width: 850px) {
  #menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #menu {
    display: inline-block;
    width: 100px;
    max-width: 100px;
    float: right;
  }
  #brand {
    display: table;
    width: 60%;
    max-width: 245px;
    float: left;
    height: 80px;
    padding: 10px;
  }
  .navShadow #menu-toggle {
    height: 70px;
  }
  header {
    height: 80px;
    top: 0;
  }
  #menu ul {
    display: inline-block;
    width: 100vw;
    height: 0;
    opacity: 0;
    background: #9b3c2e;
    position: absolute;
    top: 78px;
    -webkit-transform: translate(, );
    transform: translate(, );
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navShadow #menu ul li a {
    padding: 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 22px;
  }
  #menu ul.showMenu {
    height: auto;
    width: 100%;
    left: 0px;
    top: 78px !important;
    opacity: 1;
    padding-right: 0px !important;
    background: #ffffff;
  }
  .navShadow #menu ul {
    top: 68px !important
  }
  .mobile-link-nav{
    padding-top: 60px;
  }
  #menu ul.showMenu li {
    /* height: 80px; */
    opacity: 1;
    visibility: visible;
  }
  .no-border-right {
    border-right: none !important;
  }
  .no-border-top {
    border-top: none !important;
  }
  #menu li {
    width: 49%;
    float: left;
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    margin: 0.5%;
    -webkit-transition: all 0.3s 0.1s;
    transition: all 0.3s 0.1s;
  }
  #menu li a {
    padding: 10px;
    background: #9b3c2e;
  }
  #head-line {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  nav {
    /* height: 80px; */
    background: #ffffff;
    padding-top: 0px;
  }
}

@media screen and (max-width: 600px) {
  #logo img {
    width: 250px;
  }
  nav {
    /* height: 60px; */
  }
  #brand{
    height: 60px;
  }
  #menu-toggle{
    height: 60px;
  }
  nav.navShadow {
    height: 60px;
    border-bottom: 0px;
  }
  .navShadow #brand {
    height: 60px;
  }
  .navShadow #menu-toggle {
    height: 60px;
  }
  #menu {
    width: 70px;
  }
  #menu ul.showMenu{
    top: 60px !important;
    height: 100vh;
    /* background: #ffffff; */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/nav-bg.jpg) no-repeat center center !important;
    background-size: cover !important;
  }
  #menu ul.showMenu li{
    width:  100%;
    margin: 0;
    /* margin-bottom: 10px; */
  }
  #menu li a{
    background: none;
    /* color: #ffffff; */
    font-size: 20px;
  }
  header{
    height: 60px;
  }
}

#youtube {
  position: fixed;
  right: 2vw;
  bottom: 2vh;
  font-size: 30px;
  color: #fff;
}
