/*** Mixins & Default Styles ***/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
}

/*** Color Variables ***/
/*** Centering Hack ***/
/*** Header Styles ***/
header {
  width: 100vw;
  height: 17vh;
  display: flex;
  padding-bottom: 25vh;
}

/*** Navigation Styles ***/
nav {
  width: 100vw;
  height: 120px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  position: fixed;
  z-index: 10;
  transition: all 0.3s;
}
nav.navShadow {
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  height: 130px;
	background: #fff;
}
nav.navShadow #word-mark {
  opacity: 0;
}

#brand,
#menu,
ul {
  display: flex;
  align-items: center;
}

#brand {
  padding-left: 25px;
}

#logo {
  width: 55px;
  height: 55px;
  cursor: pointer;
}

#word-mark {
font-size: 40px;
    line-height: 40px;
    font-weight: 600;	
  margin-left: 80px;
  opacity: 1;
  transition: all 0.3s;
}

/*** Menu Styles ***/
/*Menu */
	.menu-link-top {
	transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
	transition-duration: .6s;
}
	
	.menu-link-top:hover {
	transform: translate3d(18px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
		transition-duration: .6s;
}
	.menu-link-top-button {
    overflow: hidden;
    padding-right: 20px;
}
	.w-inline-block {
    width: 100%;
    display: inline-block;
}
	.menu-link-top {
    margin-left: -15px;
}

#menu {
  justify-content: end;
	padding-right: 30px;
}

li {
  margin-left: 20px;
	list-style-type: none;
}
li a {
  width: 80px;
  height: 30px;
  display: block;
  border-radius: 90px;
}

#menu-toggle {
  width: 55px;
  height: 55px;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
#menu-toggle:hover .bar {
  width: 25px;
}
#menu-toggle.closeMenu .bar {
  width: 25px;
}
#menu-toggle.closeMenu .bar:first-child {
  transform: translateY(7px) rotate(45deg);
}
#menu-toggle.closeMenu .bar:nth-child(2) {
  transform: scale(0);
}
#menu-toggle.closeMenu .bar:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.bar {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
.bar:nth-child(2) {
  width: 20px;
  margin: 5px 0;
}
.bar:last-child {
  width: 15px;
}
.menu-phone {
  display: none;
}
.menu-contact-txt {
	margin-top: -4px;
	font-size: 16px;
	font-weight: 400;
}

/*** Hero Section Styles ***/
#hero-section {
  width: 100vw;
  height: calc(100vh - 160px);
  display: flex;
  justify-content: 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%;
  transform: translate(-50%, 0);
}
#head-line:after {
  width: 200px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translate(-50%, 0);
}
#heading {
  width: 120px;
  height: 20px;
  background: #fff;
  border-radius: 90px;
  margin-top: 40px;
}

/*** Responsive Menu For Smaller Device ***/
@media screen and (max-width: 991px) {
  #menu {
    padding-right: 0px;
}
	.menu-link-top {
    margin-left: -35px;
}
	.menu-link-top:hover {
	transform: translate3d(35px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
		transition-duration: .6s;
}
	.menu-phone {
	border-top: solid 2px #ddd;
	display: grid;
    grid-column-gap: 15px;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
	padding-top: 30px;
	margin-top: 10px;
}
	#menu-toggle {
    display: flex;
	  margin-right: 35px;
  }

  ul {
    display: inline-block;
    width: 100vw;
    height: 0;
    background: #fff;
    position: absolute;
    top: 120px;
    transform: translate(, );
    transition: all 0.3s;
  }
  ul.showMenu {
    height: 100vh;
  }
  ul.showMenu li {
    height: 80px;
    opacity: 1;
    visibility: visible;
  }

  li {
    width: 100%;
    height: 80px;
    float: left;
    padding-left: 30px;
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    transition: all 0.3s 0.1s;
  }
  li:first-child {
    margin-top: 30px;
  }
  li a {
  color: #111;
  font-size: 48px;
  font-weight: 600;
  height: 70px;
}

  #head-line {
    transform: scale(0.8);
  }
}

@media screen and (max-width: 767px) {
	header {
    padding-bottom: 22vh;
}
	#word-mark{
		display: none;
	}