/*** 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: 100px;
  /* background: rgba(0, 0, 0, 0.6); */
  /* border-bottom: 2px solid #86764b; */
  display: flex;
  position: fixed;
  z-index: 9999;
  -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 20px -5px rgba(0, 0, 0, 0.5);
  height: 70px;
  transition: all ease 0.3s;
  background: var(--dark-color);
}

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

nav.navShadow #menu ul {
  display: table;
}

#brand {
  display: table;
  width: 25%;
  max-width: 170px;
  float: left;
  height: 100px;
  padding: 10px;
}

#menu {
  display: inline-block;
  width: 80%;
  flex-grow: 1;
  margin: 0 0 0 auto;
}

#menu ul {
  /* display: none; */
  width: 100%;
  /* padding-right: 30px; */
  text-align: right;
  /* opacity: 0; */
}

#brand {
  padding-left: 15px;
}

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

#logo img {
  width: 100%;
  max-width: 150px;
  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: 70px;
  padding: 5px 10px;
}

.navShadow #menu ul li a {
  padding: 22px 5px;
  color: var(--white-color);
}

.navShadow #menu ul li a:hover {
  background: NONE;
  color: var(--secondary-color);
}

.navShadow #brand #logo img {
  max-width: 150px;
}

/*** Menu Styles ***/
#menu li {
  list-style: none;
  display: inline-block;
  margin: 0 5px;
}

#menu li a {
  text-decoration: none;
  color: #ffffff;
  display: block;
  font-size: 16px;
  padding: 38px 3px;
  font-weight: 500;
  /* font-family: 'Balthazar', serif; */
  text-align: center;
  text-transform: uppercase;
}

#menu li a:hover {
  /* background: #fee3ab; */
  color: var(--primary-color);
}

#menu-toggle {
  width: 100%;
  height: 70px;
  background: var(--primary-color);
  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;
  position: relative;
  transition: all ease 0.3s;
}

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

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

#menu-toggle.closeMenu .bar:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(12px) 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(-12px) rotate(-45deg);
}

.bar {
  width: 35px;
  height: 2px;
  background: var(--white-color);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

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

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

/*** 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: 1199px) {
  #menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 999;
  }

  #menu {
    display: inline-block;
    width: 100px;
    max-width: 100px;
    float: right;
  }

  #brand {
    display: table;
    width: 100%;
    max-width: 270px;
    float: left;
    height: 70px;
    padding: 5px 10px;
    position: relative;
    z-index: 999;
  }

  .navShadow #menu-toggle {
    height: 70px;
    background: var(--primary-color);
  }

  header {
    height: 80px;
    top: 0;
  }

  #menu ul {
    display: flex !important;
    width: 100%;
    height: 0;
    opacity: 0;
    flex-direction: column;
    background: #fee5b5;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 78px;
    z-index: 9;
    -webkit-transform: translate();
    transform: translate();
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .navShadow #menu ul li a {
    padding: 7px;
    color: #ffffff;
    font-size: 19px;
  }

  #menu ul.showMenu {
    height: 100vh;
    left: 0px;
    top: 0px !important;
    overflow: hidden;
    opacity: 1;
    padding-right: 0px !important;
    background: radial-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
      url(../images/nav-bg.jpg) no-repeat center bottom / cover;
  }

  .navShadow #menu ul {
    top: 0px !important;
  }

  #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: 100%;
    float: left;
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    /* margin-bottom: 10px; */
    /* margin: 0.5%; */
    -webkit-transition: all 0.3s 0.1s;
    transition: all 0.3s 0.1s;
  }

  #menu li a {
    padding: 4px;
    /* background: #86764b; */
    font-size: 19px;
  }

  #head-line {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  nav {
    height: 70px;
    background: var(--dark-color);
    text-align: center;
  }
}

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