.mainNav {
  position: fixed;
  width: 100%;
  top: 0px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  z-index: 10;
  background-color: #ffffff;
}

.navContent {
  width: 1600px;
  padding: 0px 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navLeft {
  height: 100%;
  display: flex;
  align-items: center;
  overflow: visible;
}

.navRight {
  display: flex;
  flex-direction: row;
}

.navLink, .navDropdownButton {
  margin: auto 12px;
  cursor: pointer;
  font-size: 15px;
  position: relative;
  text-decoration: none;
  color: #000000;
}

.navLinkDropdown {
  margin: 15px auto;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
}

.navDropdownButton:hover .downCaret {
  transform: translateY(5px);
}

.downCaret {
  height: 15px;
  width: auto;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.navSubMenu {
  position: absolute;
  right: -15px;
  padding: 0px;
  top: 15px;
  opacity: 0;
  height: 0px;
  display: flex;
  overflow: hidden;
  transition: padding 0s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.navSubMenuInner {
  background-color: #ffffff;
  height: auto;
  width: 250px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

.navDropdownButton:hover .navSubMenu {
  padding: 34px 8px 8px 8px;
  opacity: 1;
  height: auto;
  width: 250px;
}

.navLinkUnderline {
  width: 0%;
  margin: auto;
  height: 1px;
  background-color: #000000;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.navLink:hover .navLinkUnderline {
  width: 100%;
}

.navLinkDropdown:hover .navLinkUnderline {
  width: 50%;
}


.navBrand {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 34px;
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  height: 100%;
}

.navBrand > img {
  height: 60px;
  width: auto;
  display: block;
}

/**
 * NAV MOBILE
 **/

.navRightMobile {
  display: none;
}

.mobileNavButton {
  cursor: pointer;
  height: 46px;
  width: 60px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.line {
  width: 50px;
  height: 2px;
  background-color: #000000;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobileNavMenu {
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  flex-direction: column;
  padding: 50px 20px;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-color: #000000;
  transform: translateY(-200vh);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobileNavLink {
  cursor: pointer;
  color: #ffffff;
  margin-left: 20px;
  padding: 10px 0px;
}

.mobileNavUnset {
  opacity: 0;
  transform: translateX(20px);
}

#mobileNav1 {
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#mobileNav2 {
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.03s;
}

#mobileNav3 {
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.06s;
}

#mobileNav4 {
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.09s;
}

#mobileNav5 {
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.12s;
}

#mobileNav6 {
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.15s;
}

#mobileNav7 {
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.18s;
}

#mobileNav8 {
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.21s;
}

#mobileNav9 {
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.24s;
}

@media only screen and (max-width : 1650px) {
  .navContent {
    width: 1200px;
  }
}

@media only screen and (max-width : 1250px) {
  .navContent {
    width: 100%;
    max-width: 992px;
  }
  .navLink, .navDropdownButton {
    margin: auto 10px;
    cursor: pointer;
    font-size: 12px;
    position: relative;
  }
}

@media only screen and (max-width : 992px) {
  .navRight {
    display: none;
  }

  .navRightMobile {
    display: flex;
  }

  .mobileNavMenu {
    display: flex;
  }

  .navBrand > img {
    height: 48px;
    width: auto;
  }
}