/*** Mixins & Default Styles ***/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/*** Navigation Styles ***/
nav {
  width: 100%;
  height: 100px;
  display: flex;
  position: fixed;
  z-index: 9999;
  justify-content: space-between;
  -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(--secondary-color);
}

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

#brand {
  display: table;
  width: 100%;
  max-width: fit-content;
  float: none;
  height: 100px;
  padding: 10px;
}

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

#menu ul {
  display: flex;
  width: 100%;
  height: 100%;
  padding-right: 10px;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

#brand {
  padding-left: 15px;
}

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

#logo a {
  display: flex;
  width: 100%;
}

#logo img {
  width: 100%;
  max-width: 180px;
  align-items: center;
  align-self: center;
  display: table;
  transition: all ease 0.3s;
}

#logo img.sign-logo {}

#logo img.text-logo {
  transform: translate(-178px, 85px);
  align-self: center;
}

nav.navShadow #brand #logo a img.text-logo {
  transform: translate(0px, 0px);
  margin-left: 10px;
  /* max-width: 100px; */
  align-self: center;
}

#word-mark {
  width: 120px;
  height: 20px;
  background: var(--white-color);
  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: 10px;
  color: var(--white-color);
}

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

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

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

#menu li a {
  text-decoration: none;
  color: var(--white-color);
  display: block;
  font-size: 20px;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.56);
}

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

#menu-toggle {
  width: 100%;
  height: 80px;
  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;
  transition: all ease 0.3s;
}

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

#menu-toggle.closeMenu .bar {
  width: 35px;
  background: var(--light-color);
}

#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: 3px;
  background: var(--white-color);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

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

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

/*** 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: var(--white-color);
  border-radius: 90px;
  position: relative;
}

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

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

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

/*** Section Styles ***/
#heading {
  width: 120px;
  height: 20px;
  background: var(--white-color);
  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: 850px) {
  #menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    /* z-index: 999; */
    background: none;
  }

  #logo img {
    max-width: 130px;
  }

  #logo img.text-logo {
    transform: translate(-130px, 60px);
  }

  #menu {
    display: inline-block;
    width: 90px;
    max-width: 90px;
  }

  #brand {
    display: table;
    width: 100%;
    /* max-width: none; */
    float: left;
    height: 80px;
    padding: 10px;
    position: relative;
    z-index: 999;
  }

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

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

  #menu ul {
    display: flex;
    width: 100%;
    height: 0;
    opacity: 0;
    flex-direction: column;
    background: var(--light-color);
    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: 5px;
    color: var(--white-color);
    font-size: 26px;
  }

  #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.45), rgba(0, 0, 0, 0.8588235294117647)), 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: 5px;
    font-size: 26px;
  }

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

  nav {
    height: 80px;
    background: #var(--secondary-color);
    text-align: center;
    top: 0;
  }

  .navShadow #menu-toggle #menu-icon .bar {
    background: var(--secondary-color);
  }
}

#youtube {
  position: fixed;
  right: 2vw;
  bottom: 2vh;
  font-size: 30px;
  color: var(--white-color);
}
