/* nav stuff */

@font-face {
  font-family: 'Poppins Bold';
  src: url('https://www.lenos.com/fontfiles/poppins/poppins-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.hoverNavRow {
    max-width: 1200px;
    margin: auto;
}

.hoverNavRow *:not(i) {
    color: #494949;
    font-family: 'Poppins',sans-serif, monospace;
}

.navRowHeader {
    color: #027ADE !important;
    font-size: 24px;
    font-weight: bold;
}

.hoverNavRow .navCol, .linksubText-container {
    display: flex;
    flex-direction: column;
}

.hoverNavRow .navCol > .navCol-link-wrapper {
    padding-bottom: 20px;
}

.hoverNavRow .navCol i {
    padding-bottom: 15px;
    font-size: xx-large;
}

.hoverNavRow .navCol .navCol-link-wrapper a {
     font-family: 'Poppins Bold', 'Poppins', sans-serif;
}

.hoverNavRow .navCol .navCol-link-wrapper,
.linksubText-container .linksubText-link-wrapper {
    display: inline-block;
}

.hoverNavRow .navCol a {
    color: #027ADE;
    font-size: 16px;
    font-weight: normal;
    position: relative;
    text-decoration: none;
}

.hoverNavRow .navCol a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #027ADE;
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease;
}

.hoverNavRow .navCol a:hover::before {
    transform: scaleX(1);
}

.navRowFooter, .navRowFooterSubText {
    color: #027ADE !important;
    font-size: 14px;
}
.navRowHeaderSubText {
    padding-bottom: 30px !important;
    font-size: 16px;
    padding-right: 200px;
    padding-left: 200px;
}

.navRowFooter {
    padding-top: 20px !important;
}

.navLinkImg {
    width: 50px;
    height: 50px;
}

/* Mobile submenus - hidden on desktop */
@media (min-width: 768px) {
    .mobile-nav-submenu {
        display: none !important;
    }
}