/*************************** Side Nav ***************************/
.menu-button {
  width: 60px;
  height: 35px;
  position: fixed;
  left: 30px;
  margin-top: 20px;
  z-index: 1000;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  -webkit-transition: all .5s !important;
  transition: all .5s !important;
}
.scrolled-nav .menu-button {
  width: 30px;
  height: 10px;
  position: fixed;
  left: 15px;
  margin-top: 14px;
  z-index: 1000;
  padding: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.menu-button span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: dimgrey;
  border-radius: 9px;
  opacity: 1;
  left: 0;
}
.menu-button span:nth-child(1) {
  top: 0px;
  height: 3px;
}
.scrolled-nav .menu-button span:nth-child(1) {
  top: 0px;
  height: 2px;
}
.menu-button span:nth-child(2) {
  top: 12px;
  width: 40px;
  height: 3px;
}
.scrolled-nav .menu-button span:nth-child(2) {
  top: 9px;
  height: 2px;
}
.menu-button span:nth-child(3) {
  top: 24px;
  height: 3px;
}
.scrolled-nav .menu-button span:nth-child(3) {
  top: 18px;
  height: 2px;
}
.menu-button:hover {
  opacity: 0.6;
}
.close-button {
  width: 2em;
  height: 2em;
  position: absolute;
  right: 1em;
  top: 1em;
  overflow: hidden;
  text-indent: 1em;
  font-size: 0.75em;
  border: none;
  background: transparent;
  color: transparent;
}
.close-button::before, .close-button::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0px;
  left: 50%;
  background: dimgrey;
}
.close-button::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.close-button::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu-wrap {
  position: fixed;
  overflow-y: scroll;
  z-index: 1001;
  width: 250px;
  height: 100%;
  left: 0px;
  top: 0px;
  background: #ffffff;
  padding: 2.5em 1.5em 0;
  -webkit-transform: translate3d(-350px, 0, 0);
  transform: translate3d(-350, 0, 0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.menu, .menu-list {
  height: 100%;
}
.menu-list {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.menu-list a {
  display: block;
  padding: 15px 0;
  -webkit-transform: translate3d(0, 500px, 0);
  transform: translate3d(0, 500px, 0);
  color: dimgrey;
  border-bottom: 1px solid dimgrey;
  position: relative;
}
.menu-list a:hover, .menu-list a:active span {
  color: #ac202d;
}
.menu-list, .menu-list a {
  -webkit-transition: -webkit-transform 0s 0.4s;
  transition: transform 0s 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.menu-list a span {
  margin-left: 10px;
  font-weight: 400;
  font-size: 16px;
  z-index: 2;
  padding: 1px !important;
}
.menu-list a span:before {
  width: 0;
  height: 2px;
  background: #ffffff;
  -webkit-transition: width .3s ease;
  transition: width .3s ease;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: -1;
}
.show-menu .menu-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.show-menu .menu-list, .show-menu .menu-list a {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.show-menu .menu-list a {
  -webkit-transition-duration: 0.9s;
  transition-duration: 0.9s;
}
.show-menu .content::before {
  opacity: 1;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
div.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  background: black;
  z-index: 99;
  visibility: hidden;
  transition: opacity 0.5s;
}
.show-menu .content::before {
  opacity: 1;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.content::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  content: '';
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
  transition: opacity 0.4s, transform 0s 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.logo-3d {
  width: 140px;
  padding: 10px 0px 0px 10px;
}
.logo-pma {
  width: 200px;
  padding: 5px 0px 0px 10px;
}
.logo-fabtech {
  width: 230px;
  padding: 0px 0px 0px 0px;
}
.cover-mf {
  width: 110px;
  margin-top: 5px;
  padding: 10px 0px 5px 10px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.cover-mf:hover {
  -webkit-transform: scale(1.05) rotate(4deg);
  transform: scale(1.05) rotate(4deg);
}
.cover-3d {
  width: 110px;
  margin-top: -20px;
  padding: 10px 0px 0px 10px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.cover-3d:hover {
  -webkit-transform: scale(1.05) rotate(4deg);
  transform: scale(1.05) rotate(4deg);
}
.grey {
  color: dimgrey !important;
}
.noline {
  border-bottom: none !important;
}
.twitter {
  margin-left: 5px;
  width: 27px !important;
  padding: 5px;
}
.facebook {
  width: 27px !important;
  padding: 5px;
}
.linkedin {
  width: 27px !important;
  padding: 5px;
}
.youtube {
  height: 27px !important;
  padding: 5px;
}
.email {
  height: 27px !important;
  padding: 5px;
}
.appstore {
  width: 27px !important;
  padding: 5px;
}
.googleplay {
  height: 27px !important;
  padding: 5px;
}
.socialmedia {
  border-bottom: none !important;
  float: left !important;
  margin-top: -60px;
}
.dropdown-side {
  margin: 40px auto;
  width: 250px;
  display: block;
  text-align: center;
  transition: 0.15s ease;
}
.dropdown-side.active ul {
  opacity: 1;
  height: auto; /*was 350px */
  margin-left: -25px;
  padding-left: 35px;
  background: #eae9e9;
  width: 264px;
  border-top: 1px solid dimgrey;
  border-bottom: 1px solid dimgrey;
}
.main-nav-side {
  padding-left: 10px !important;
  margin-top: -40px !important;
  font-size: 16px;
  display: block;
  text-align: left;
  margin: 0;
  cursor: pointer;
  transition: 0.15s ease;
}
.dropdown-side a {
  border-bottom: 1px solid dimgrey;
}
.dropdown-side.active a {
  border-bottom: none !important;
}
.dropdown-side ul {
  margin: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.4s ease;
}
.dropdown-side li {
  list-style-type: none;
  font-size: 14px;
  margin: 0px auto -10px auto !important;
  text-align: left;
  cursor: pointer;
}
.technologies-dropdown-side {
  margin: 40px auto;
  width: 250px;
  display: block;
  text-align: center;
  transition: 0.15s ease;
}
.technologies-dropdown-side.active ul {
  opacity: 1 !important;
  height: 850px;
  margin-left: -25px;
  padding-left: 35px;
  background: #eae9e9;
  width: 264px;
  border-top: 1px solid dimgrey;
  border-bottom: 1px solid dimgrey;
}
.technologies-nav-side {
  padding-left: 10px !important;
  margin-top: -40px !important;
  font-size: 16px;
  display: block;
  text-align: left;
  margin: 0;
  cursor: pointer;
  transition: 0.15s ease;
}
.technologies-dropdown-side a {
  border-bottom: 1px solid dimgrey;
}
.technologies-dropdown-side.active a {
  border-bottom: none !important;
}
.technologies-dropdown-side ul {
  margin: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.4s ease;
}
.technologies-dropdown-side li {
  list-style-type: none;
  font-size: 14px !important;
  margin: 0px auto -10px auto !important;
  text-align: left;
  cursor: pointer;
}
#nav-arrow {
  position: absolute;
  right: 0px;
  font-weight: 400;
  font-size: 20px;
}
#navarrow {
  position: absolute;
  right: 0px;
  font-weight: 400;
  font-size: 20px;
}
/*************************** Dropdown Nav ***************************/
body {
  padding-top: 75px;
}
#fixed-nav {
  position: fixed;
  top: 0;
  z-index: 9999;
  height: 120px;
  width: 100%;
  background-color: #fff !important;
  border-top: 10px solid #ac1f2d;
  -webkit-transition: height .5s, line-height .5s; /* Safari */
  transition: height .5s, line-height .5s;
}
.scrolled-nav {
  height: 90px !important;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
}
.logo {
  width: 190px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
  -webkit-transition: all .5s !important;
  transition: all .5s !important;
}
.scrolled-nav .logo {
  width: 120px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.nav-left li {
  list-style: none;
  display: inline-block;
  padding-left: 20px;
}
.navbar {
  font-size: 16px;
  margin-top: 35px;
  position: absolute;
  top: 65px;
  right: 0px;
  left: 0px;
  margin: auto;
  display: inline;
  width: 100%;
  max-width: 1020px;
}
.scrolled-nav .navbar {
  font-size: 14px;
  top: 36px;
 //* max-width: 950px; - edited by Dan 6/11/24 */
  -webkit-transition: all .5s;
  transition: all .5s;
}
.dropdown {
  overflow: hidden;
  float: left;
  margin-top: 1px;
  -webkit-transition: height .5s, line-height .5s !important;
  transition: height .5s, line-height .5s !important;
}
.dropdown .nav-item {
  font-size: 16px;
  border: none;
  outline: none;
  color: dimgrey;
  padding: 10px 15px 10px 15px;
  background-color: inherit;
  font: inherit;
  margin: 0;
  text-decoration: none;
  letter-spacing: 0.55px;
}
.scrolled-nav .nav-item {
  padding: 15px 15px 5px 15px;
}
.dropdown {
  display: inline-block;
}
.navbar a:hover {
  color: #ac1f2d;
}
.dropdown:hover .nav-item {
  color: #ac1f2d;
  font-weight: bold;
  letter-spacing: 0px;
  border-bottom: solid 4px #ac1f2d;
}
.dropdown-content {
  display: none;
  position: fixed;
  left: 0px;
  right: 0px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.4);
  z-index: 1;
  width: 100%;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.row {
  background: rgba(240, 240, 240, 0.95);
  height: auto;
  padding: 15px 5px 15px 5px;
  text-align: center;
  margin: auto;
  height: auto;
}
.row a {
  float: none;
  color: dimgrey;
  padding: 10px;
  font-size: 14px;
  text-decoration: none;
  display: inline;
}
.row2 {
  background: rgba(240, 240, 240, 0.95);
  height: auto;
  padding: 0px 5px 15px 5px;
  text-align: center;
  margin: auto;
  height: auto;
}
.row2 a {
  float: none;
  color: dimgrey;
  padding: 10px;
  font-size: 14px;
  text-decoration: none;
  display: inline;
}
#search {
  width: 45px;
  position: fixed;
  top: 75px;
  right: 15px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.scrolled-nav #search {
  width: 35px;
  top: 55px;
  right: 15px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
#search a:hover {
  text-decoration: none;
}
/*************************** 3rd Level Nav *************************/
.subnavdrop {
  display: none;
  border: 1px solid;
  border-top: 0px;
  width: 140px;
  padding: 5px 10px;
  background: rgba(240, 240, 240, 0.95);
  position: absolute;
  z-index: 2;
  margin-top: 30px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.4);
  border-bottom-left-radius:  5px;
  border-bottom-right-radius:  5px;
}

.subnavdrop a {padding:5px 0 !important; display:block; clear:both;}

.subnav-on {font-weight:500;color:#ac1f2d !important;}

/*************************** Top Right Nav *************************/
#top-right-nav {
  float: right;
  font-size: 12px;
  color: dimgrey;
  padding: 0px 20px;
  -webkit-transition: height .5s, line-height .5s;
  transition: height .5s, line-height .5s;
}
.top-right-item {
  padding: 10px 0px 0px 10px;
}
.top-right-social {
  clear:both;
  float:right;
  padding: 0px 0px 0px 10px;
}
.scrolled-nav #top-right-nav {
  display: none;
  font-size: 10px;
}
/*************************** Search *************************/
#search-top {
  margin: 0px 10px;
  position: fixed;
  display: inline-block;
  height: 10px;
  width: 15px;
  padding: 0;
  right: 10px;
}
#search-top input[type="text"] {
  height: 55px;
  width:60px;
  font-size: 1px;
  margin-right: -5px;
  display: inline-block;
  font-weight: 100;
  border: none;
  outline: none;
  color: #555;
  padding-bottom: 0px;
  position: absolute;
  margin-top: -15px;
  right: 0;
  z-index: 3;
  background: none;
  transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
  cursor: pointer;
}
#search-top input[type="text"]:focus:hover {
  border-bottom: 1px solid #BBB;
}
#search-top input[type="text"]:focus {
  width: 750px;
  font-size: 30px;
  z-index: 1;
  border-bottom: 1px solid #BBB;
  cursor: text;
  background: white;
  margin-right: 40px;
}
#search-body {
  margin: 0px 10px;
  display: inline-block;
  position: relative;
  height: 10px;
  width: 15px;
  float: right;
  padding: 0;
}
#search-body input[type="text"] {
  height: 30px;
  font-size: 20px;
  margin-right: -5px;
  display: inline-block;
  font-weight: 100;
  border: none;
  outline: none;
  color: #555;
  padding-bottom: 0px;
  width: 0px;
  position: absolute;
  margin-top: -10px;
  right: 0;
  z-index: 3;
  background: none;
  transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
  cursor: pointer;
}
#search-body input[type="text"]:focus:hover {
  border-bottom: 1px solid #BBB;
}
#search-body input[type="text"]:focus {
  width: 750px;
  z-index: 1;
  border-bottom: 1px solid #BBB;
  cursor: text;
  background: white;
  margin-right: 20px;
}