* {
  padding: 0;
  margin: 0;
}

body {
  background-color: #ffffff;
  color: #012169;
  font-family: "Roboto", sans-serif;
  font-size: calc(15 * var(--cf));
  font-weight: 400;
  line-height: 1.2;
  overflow-x: hidden;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

button, button:focus {
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

.wrapper {
  height: 100%;
  min-height: calc(100vh - 600 * var(--cf));
}
.wrapper.noHeight {
  min-height: unset;
}

.baseWidth {
  max-width: 1200px;
  height: 100%;
}

.centered {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.centeredRow {
  width: 100%;
  display: flex;
  align-items: center;
}

.module {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  height: calc(100 * var(--cf));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header .logo {
  cursor: pointer;
  min-width: calc(200 * var(--cf));
}
.header .infoLine {
  background-color: #012169;
  height: calc(50 * var(--cf));
  color: white;
}
.header .infoLine > div {
  display: flex;
}
.header .infoLine .phone {
  width: calc(220 * var(--cf));
  font-size: calc(25 * var(--cf));
}
.header .infoLine .email {
  width: calc(190 * var(--cf));
  font-size: calc(16 * var(--cf));
  cursor: pointer;
}
.header .infoLine .email a {
  color: white;
}
.header .navLine {
  background-color: white;
  height: calc(100 * var(--cf));
  border-bottom: 4px solid #012169;
}
.header .navLine .logo {
  max-width: calc(200 * var(--cf));
}
.header a {
  color: #012169;
  text-decoration: none;
}
.header a:hover {
  color: #ffa516;
}
.header a:active {
  color: #C8102E;
}
.header .icon {
  width: calc(16 * var(--cf));
  margin-right: calc(4 * var(--cf));
  filter: invert(20%) sepia(71%) saturate(3686%) hue-rotate(338deg) brightness(77%) contrast(107%);
}
.header .icon.middle {
  margin-left: calc(8 * var(--cf));
}

.navItem {
  color: #012169;
  font-size: calc(21 * var(--cf));
  font-weight: bold;
  padding-left: calc(20 * var(--cf));
  cursor: pointer;
}
.navItem:hover {
  color: #ffa516;
}
.navItem.selected {
  color: #C8102E;
  pointer-events: none;
  cursor: none;
}

.adjustToHeader {
  margin-top: calc(100 * var(--cf));
}

.pageTitle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpageTitle {
  background-color: #012169;
  color: white;
  font-size: calc(48 * var(--cf));
  font-weight: bold;
  padding: calc(16 * var(--cf));
  margin: calc(36 * var(--cf)) auto;
  border-radius: calc(12 * var(--cf));
}

#certificationsPage, #contactUsPage {
  margin: 0 auto;
}

#contactUsPage {
  color: #012169;
}
#contactUsPage .col-md-6.left {
  padding-right: calc(8 * var(--cf));
  min-height: calc(461 * var(--cf));
}
#contactUsPage .col-md-6.right {
  padding-left: calc(8 * var(--cf));
}
#contactUsPage .shaded {
  padding: calc(8 * var(--cf));
  margin-left: calc(-8 * var(--cf));
  background-color: rgba(0, 0, 0, 0.1);
  font-size: calc(18 * var(--cf));
  font-weight: bold;
  color: #012169;
}
#contactUsPage .name {
  font-size: calc(24 * var(--cf));
  font-weight: bold;
  color: #C8102E;
  margin-bottom: calc(16 * var(--cf));
}
#contactUsPage .address {
  font-size: calc(16 * var(--cf));
}
#contactUsPage .contact {
  display: flex;
  align-items: center;
  margin-top: calc(8 * var(--cf));
  font-size: calc(16 * var(--cf));
}
#contactUsPage .contact .icon {
  width: calc(24 * var(--cf));
  filter: invert(20%) sepia(71%) saturate(3686%) hue-rotate(338deg) brightness(77%) contrast(107%);
  margin-right: calc(4 * var(--cf));
}
#contactUsPage form {
  width: 100%;
}
#contactUsPage form label {
  margin: 0;
  font-size: calc(16 * var(--cf));
  padding-left: calc(4 * var(--cf));
  margin-bottom: calc(8 * var(--cf));
}
#contactUsPage form input, #contactUsPage form textarea {
  width: 100%;
  padding: calc(4 * var(--cf)) calc(12 * var(--cf));
  border: 1px solid lightgray;
  border-radius: calc(8 * var(--cf));
  margin-bottom: calc(16 * var(--cf));
  font-size: calc(18 * var(--cf));
}
#contactUsPage form input {
  height: calc(50 * var(--cf));
}
#contactUsPage form input[type=submit] {
  color: white;
  background-color: #C8102E;
}
#contactUsPage form input[type=submit]:hover {
  background-color: #E02040;
}
#contactUsPage form input[type=submit]:active {
  background-color: #90071F;
}

.certBox {
  padding: calc(8 * var(--cf));
  min-height: 100px;
  cursor: pointer;
}
.certBox img {
  border: 1px solid #012169;
  border-radius: calc(4 * var(--cf));
}
.certBox:hover img {
  border: 2px solid #ffa516;
  scale: 1.05;
}
.certBox:active img {
  border: 2px solid #C8102E;
  scale: 1.05;
}

#carouselContainer {
  position: relative;
}
#carouselContainer .overlay {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 60%, rgb(255, 255, 255) 100%);
}
#carouselContainer .slogan {
  z-index: 2;
  position: absolute;
  width: 100%;
  bottom: calc(30 * var(--cf));
  left: 0;
  font-size: calc(60 * var(--cf));
  color: #012169;
  text-align: center;
  padding: calc(12 * var(--cf)) 0;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

#carousel {
  max-height: calc(600 * var(--cf));
  background-color: #012169;
}

.carousel-item img {
  height: calc(600 * var(--cf));
  -o-object-fit: cover;
     object-fit: cover;
}

.frozenImage {
  position: relative;
}
.frozenImage img {
  width: 100vw;
  max-height: calc(600 * var(--cf));
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}
.frozenImage .overlay {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.5) 90%, rgb(255, 255, 255) 100%);
}
.frozenImage .slogan {
  z-index: 2;
  position: absolute;
  width: 100%;
  bottom: calc(30 * var(--cf));
  left: 0;
  font-size: calc(60 * var(--cf));
  color: #012169;
  text-align: center;
  padding: calc(12 * var(--cf)) 0;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.seperatorBand {
  background-color: #C8102E;
  color: white;
  min-height: calc(80 * var(--cf));
}
.seperatorBand h1 {
  font-size: calc(36 * var(--cf));
  text-align: center;
  padding: calc(24 * var(--cf)) 0;
}

.sectionTitle {
  font-size: calc(50 * var(--cf));
  color: white;
  width: 100%;
  text-align: center;
  font-weight: bold;
  padding-top: calc(24 * var(--cf));
}

.sectionSubtitle {
  font-size: calc(26 * var(--cf));
  color: #012169;
  width: 100%;
  text-align: center;
  font-weight: bold;
  padding-top: calc(24 * var(--cf));
}

#productCategories {
  margin-top: calc(24 * var(--cf));
}
#productCategories .productCategories > div {
  padding: calc(12 * var(--cf));
}
#productCategories .productCategories .productCategory {
  min-height: calc(100 * var(--cf));
  border: 1px solid #012169;
  background-color: white;
  border-top-left-radius: calc(16 * var(--cf));
  border-top-right-radius: calc(16 * var(--cf));
  cursor: pointer;
}
#productCategories .productCategories .productCategory .image img {
  border-top-left-radius: calc(16 * var(--cf));
  border-top-right-radius: calc(16 * var(--cf));
  min-width: 100%;
}
#productCategories .productCategories .productCategory .name {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #012169;
  padding: calc(12 * var(--cf)) 0;
  font-size: calc(24 * var(--cf));
}
#productCategories .productCategories .productCategory.selected {
  background-color: #C8102E;
}
#productCategories .productCategories .productCategory.selected .name {
  background-color: #C8102E;
  color: white;
}
#productCategories .productCategories .productCategory:hover {
  border: px solid #C8102E;
}
#productCategories .productCategories .productCategory:hover img {
  scale: 1.01;
}
#productCategories .productCategories .productCategory:hover:not(.selected) .name {
  color: #C8102E;
}
#productCategories .productCategories .productCategory .seeAll {
  min-height: calc(60 * var(--cf));
  background-color: #012169;
  display: flex;
  align-items: center;
}
#productCategories .productCategories .productCategory .seeAll button {
  height: calc(50 * var(--cf)) !important;
  font-size: calc(20 * var(--cf));
}

#productSubCategories {
  margin-top: calc(24 * var(--cf));
}
#productSubCategories .productSubcategories > div {
  padding: calc(12 * var(--cf));
}
#productSubCategories .productSubcategories .productCategory {
  min-height: calc(100 * var(--cf));
  border: 1px solid #012169;
  background-color: #012169;
  border-top-left-radius: calc(16 * var(--cf));
  border-top-right-radius: calc(16 * var(--cf));
  cursor: pointer;
}
#productSubCategories .productSubcategories .productCategory .image img {
  border-top-left-radius: calc(16 * var(--cf));
  border-top-right-radius: calc(16 * var(--cf));
}
#productSubCategories .productSubcategories .productCategory .name {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: calc(12 * var(--cf)) 0;
  font-size: calc(24 * var(--cf));
}
#productSubCategories .productSubcategories .productCategory:hover {
  border: px solid #C8102E;
}
#productSubCategories .productSubcategories .productCategory:hover .name {
  color: #ffa516;
}

#footer {
  position: relative;
  margin-top: calc(80 * var(--cf));
  height: calc(376 * var(--cf));
  background-color: white;
}
#footer .module {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: calc(60 * var(--cf));
}
#footer .module > .row {
  z-index: 3;
}
#footer .module .logoRow {
  display: flex;
  align-items: flex-end;
  margin-bottom: calc(16 * var(--cf));
  padding-bottom: calc(24 * var(--cf));
  border-bottom: calc(4 * var(--cf)) solid white;
}
#footer .module .logoRow img {
  min-width: calc(240 * var(--cf));
}
#footer .module .contactRow {
  color: white;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: calc(14 * var(--cf));
}
#footer .module .contactRow .company {
  font-size: calc(20 * var(--cf));
  font-weight: bold;
}
#footer .module .contactRow .icon {
  width: calc(16 * var(--cf));
  margin-right: calc(4 * var(--cf));
  filter: invert(93%) sepia(100%) saturate(0%) hue-rotate(265deg) brightness(105%) contrast(108%);
}
#footer .module .contactRow .icon.middle {
  margin-left: calc(8 * var(--cf));
}
#footer .module .contactRow a {
  color: white;
  text-decoration: none;
}
#footer .module .contactRow a:hover {
  color: #ffa516;
}
#footer .module .contactRow a:active {
  color: #C8102E;
}
#footer .redOverlay {
  z-index: 1;
  content: url("/images/footer-red.png");
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
#footer .blueOverlay {
  z-index: 2;
  content: url("/images/footer-blue.png");
  position: absolute;
  left: 0;
  top: calc(60 * var(--cf));
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
#footer .navItem {
  color: white;
  margin-left: calc(8 * var(--cf));
  font-size: calc(21 * var(--cf));
  font-weight: bold;
}
#footer .navItem.selected {
  color: #C8102E;
}
#footer .navItem:hover {
  color: #ffa516;
}

.blueBackground {
  background-color: #012169 !important;
}

.redBackground {
  background-color: #C8102E !important;
}

button {
  height: calc(40 * var(--cf));
  background-color: transparent;
  color: blue;
  border: 1px solid #012169;
  border-radius: calc(8 * var(--cf));
  padding: 0 calc(16 * var(--cf));
}
button.white {
  background-color: white;
}
button.white:hover {
  color: #ffa516;
  border: 1px solid #ffa516;
}
button.white:active {
  color: #C8102E;
  border: 1px solid #C8102E;
}
button.blue {
  background-color: #012169;
  color: white;
  border: none;
  border: none;
}
button.blue:hover {
  background-color: #0236A1;
}
button.blue:active {
  background-color: #001A50;
}
button.red {
  background-color: #C8102E;
  color: white;
  border: none;
}
button.red:hover {
  background-color: #E02040;
}
button.red:active {
  background-color: #90071F;
}
button.orange {
  background-color: #ffa516;
  color: black;
  border: none;
}
button.orange:hover {
  background-color: #e69514;
}
button.orange:active {
  background-color: #cc8512;
}

#cookieModal .modal-dialog {
  height: 100vh;
  min-width: 100vw;
  position: relative;
}
#cookieModal .modal-content {
  width: calc(400 * var(--cf));
  position: absolute;
  left: calc(40 * var(--cf));
  bottom: calc(60 * var(--cf));
  background-color: white;
  padding: calc(24 * var(--cf)) calc(16 * var(--cf));
}
#cookieModal .modal-body {
  color: #012169;
}
#cookieModal .modal-body > div {
  margin-bottom: calc(16 * var(--cf));
}
#cookieModal .modal-body .title {
  font-weight: bold;
  font-size: calc(24 * var(--cf));
  color: #C8102E;
}
#cookieModal .modal-body .notice {
  font-size: calc(18 * var(--cf));
}
#cookieModal .modal-body .policy {
  font-size: calc(18 * var(--cf));
  cursor: pointer;
}
#cookieModal .modal-body .policy:hover {
  color: #ffa516;
}
#cookieModal .modal-body .policy:active {
  color: #C8102E;
}
#cookieModal button {
  width: 100%;
}

#productsPage {
  margin: 0 auto;
}
#productsPage .navigation {
  position: fixed;
  top: calc(100 * var(--cf));
  font-size: calc(20 * var(--cf));
  z-index: 10;
  background-color: white;
  padding: calc(24 * var(--cf)) 0;
}
#productsPage .navigation .navCell {
  position: relative;
  padding-right: calc(8 * var(--cf));
}
#productsPage .navigation .navCell:not(.first) {
  padding-left: calc(8 * var(--cf));
  cursor: pointer;
}
#productsPage .navigation .navCell.last {
  color: #ffa516;
  cursor: auto;
}
#productsPage .navigation .navCell:not(.first, .last):hover {
  color: #ffa516;
}
#productsPage .navigation .navCell:not(.first, .last):active {
  color: #C8102E;
}
#productsPage .navigation .navSeperator {
  display: flex;
  align-items: flex-start;
  width: calc(20 * var(--cf));
}
#productsPage .navigation .navSeperator img {
  filter: invert(11%) sepia(85%) saturate(2396%) hue-rotate(214deg) brightness(89%) contrast(109%);
}

#productsDisplay {
  margin-top: calc(36 * var(--cf));
}
#productsDisplay > div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(12 * var(--cf));
}
#productsDisplay .productCategory {
  min-height: calc(100 * var(--cf));
  border: 1px solid #012169;
  background-color: #012169;
  border-top-left-radius: calc(16 * var(--cf));
  border-top-right-radius: calc(16 * var(--cf));
  cursor: pointer;
}
#productsDisplay .productCategory .image img {
  border-top-left-radius: calc(16 * var(--cf));
  border-top-right-radius: calc(16 * var(--cf));
}
#productsDisplay .productCategory .name {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #012169;
  color: white;
  padding: calc(12 * var(--cf)) 0;
  font-size: calc(24 * var(--cf));
}
#productsDisplay .productCategory:hover {
  border: px solid #C8102E;
}
#productsDisplay .productCategory:hover img {
  scale: 1.01;
}
#productsDisplay .productCategory:hover:not(.selected) .name {
  background-color: #0236A1;
}
#productsDisplay .productInfoCard {
  border: 1px solid #012169;
  border-radius: calc(12 * var(--cf));
  margin-bottom: calc(16 * var(--cf));
  border: calc(0.33 * var(--cf)) solid rgba(0, 0, 0, 0.1);
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.1);
}
#productsDisplay .productInfoCard .info {
  padding: calc(16 * var(--cf));
}
#productsDisplay .productInfoCard .info .name {
  font-size: calc(24 * var(--cf));
  font-weight: bold;
  margin-bottom: calc(12 * var(--cf));
  color: #C8102E;
}
#productsDisplay .productInfoCard .info .property {
  font-size: calc(18 * var(--cf));
  margin-bottom: calc(8 * var(--cf));
}
#productsDisplay .productInfoCard .info .property .key {
  font-weight: bold;
}
#productsDisplay .productInfoCard .info .property.title {
  padding: calc(8 * var(--cf));
  margin-left: calc(-8 * var(--cf));
  background-color: rgba(0, 0, 0, 0.1);
}

#productDisplayBannerContainer {
  margin-top: calc(172 * var(--cf));
}

#productDisplayBanner {
  position: relative;
}
#productDisplayBanner img {
  width: 100%;
  max-height: calc(300 * var(--cf));
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: calc(8 * var(--cf));
}
#productDisplayBanner img.categorized {
  border-radius: calc(8 * var(--cf)) calc(8 * var(--cf)) 0 0;
}
#productDisplayBanner .overlay {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.9) 100%);
}
#productDisplayBanner .text {
  z-index: 2;
  position: absolute;
  width: 100%;
  right: 5%;
  top: 50%;
  font-size: calc(60 * var(--cf));
  font-weight: bold;
  color: #012169;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  text-align: end;
}

#subcategoryTitleContainer {
  margin: 0 0 calc(24 * var(--cf));
  background-color: #012169;
  border-bottom-left-radius: calc(12 * var(--cf));
  border-bottom-right-radius: calc(12 * var(--cf));
  padding: calc(16 * var(--cf));
  color: white;
  max-height: calc(100 * var(--cf));
  display: flex;
  align-items: center;
}
#subcategoryTitleContainer img {
  max-height: calc(72 * var(--cf));
  border-radius: calc(4 * var(--cf));
}
#subcategoryTitleContainer .titleText {
  padding-left: calc(24 * var(--cf));
  font-size: calc(48 * var(--cf));
  font-weight: bold;
}

#scrollToTop {
  position: fixed;
  right: calc(12 * var(--cf));
  bottom: calc(12 * var(--cf));
  width: calc(44 * var(--cf));
  height: calc(44 * var(--cf));
  border-radius: calc(22 * var(--cf));
  z-index: 100;
  cursor: pointer;
  background-color: rgba(0, 128, 86, 0.5);
}
#scrollToTop:hover {
  background-color: rgba(0, 128, 86, 0.6);
}
#scrollToTop:active {
  background-color: rgba(0, 128, 86, 0.8);
}
#scrollToTop img {
  width: 80%;
  filter: invert(93%) sepia(100%) saturate(0%) hue-rotate(265deg) brightness(105%) contrast(108%);
}

#certficateModal .modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Ensures modal centers */
  max-width: none; /* Prevent Bootstrap's default width constraints */
}
#certficateModal .modal-content {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#certficateModal .modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
#certficateModal .modal-body img {
  height: 90vh; /* Ensures full height */
  width: auto; /* Maintains aspect ratio */
  max-width: 100vw; /* Prevents overflow */
}

#distributorship {
  margin-top: calc(36 * var(--cf));
  padding: calc(24 * var(--cf));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
#distributorship .text {
  font-size: calc(40 * var(--cf));
  margin-top: calc(24 * var(--cf));
}
#distributorship .logosContainer {
  margin: calc(26 * var(--cf)) 0;
}
#distributorship img {
  height: calc(200 * var(--cf));
}
#distributorship img.left {
  margin-right: calc(48 * var(--cf));
}
#distributorship img.right {
  margin-left: calc(48 * var(--cf));
}

@media screen and (max-width: 576px) {
  .hideIfSM {
    display: none;
  }
}
@media screen and (min-width: 577px) {
  .showIfSM {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hideIfMD {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .showIfMD {
    display: none;
  }
}
@media screen and (max-width: 1240px) {
  .hideIfLG {
    display: none;
  }
}
@media screen and (min-width: 1241px) {
  .showIfLG {
    display: none;
  }
}
@media screen and (max-width: 1240px) {
  .baseWidth, .header > div, #footer {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  /* Hide scrollbar for Webkit browsers (Chrome, Safari, Edge) */
  ::-webkit-scrollbar {
    display: none;
  }
  /* Hide scrollbar for Firefox */
  html {
    scrollbar-width: none;
  }
  /* Hide scrollbar for IE & Edge */
  body {
    -ms-overflow-style: none;
    max-width: 100vw;
  }
  #footer .blueOverlay {
    top: 46px !important;
  }
  #distributorship img.left, #distributorship img.right {
    margin-left: unset;
    margin-right: unset;
  }
  #distributorship img.left {
    margin-bottom: calc(24 * var(--cf));
  }
}
@media screen and (max-width: 575px) {
  .wrapper:not(.homeWrapper) {
    margin-top: 260px;
  }
  #footer .blueOverlay {
    top: 24px !important;
  }
  #subcategoryTitleContainer {
    margin: 0 0 24px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 16px;
    max-height: 100px;
  }
  #subcategoryTitleContainer .titleText {
    padding-left: 24px;
    font-size: 24px;
  }
  #productDisplayBanner .text {
    font-size: 32px;
  }
  #productsPage .navigation {
    display: flex;
    align-items: center;
    top: calc(100 * var(--cf));
    font-size: 14px;
    font-weight: bold;
    margin-left: -20px;
    padding: calc(24 * var(--cf)) 0;
  }
  #navExtension {
    display: flex;
    align-items: center;
  }
  #distributorship img.left, #distributorship img.right {
    margin-left: unset;
    margin-right: unset;
  }
  #distributorship img.left {
    margin-bottom: 24px;
  }
}
#mobileMenuHandle {
  width: calc(44 * var(--cf));
  cursor: pointer;
}

.header .mobile.navItems {
  position: relative;
  height: 100%;
}
.header .mobile .mobileMenuDropdown {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  position: absolute;
  top: 80%;
  right: -20px;
  width: 50vw;
  background-color: lightgray;
  z-index: 200;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}
.header .mobile .mobileMenuDropdown .navItem {
  font-size: 24px;
  padding: 8px 20px 8px 0;
}/*# sourceMappingURL=gng.css.map */