* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "foco";
  font-style: normal;
  font-weight: normal;
  src: local("foco"), url("../foco/foco.woff") format("woff");
}

@font-face {
  font-family: "foco Bold";
  font-style: normal;
  font-weight: normal;
  src: local("foco Bold"), url("../foco/focobold.woff") format("woff");
}

:root {
  --font-family: "foco", sans-serif;
  --dark-text: #fff;
  --dark-bg: linear-gradient(to right, #000, #333);
  --primary-text: #222122;
  --primary-bg: #fff;
  --secondary-text: #fff;
  --secondary-bg: linear-gradient(to right, #d64d03, #d2162e);
  --tertiary-text: #fff;
  --tertiary-bg: #d2162e;
  --anchor-default: #fff;
  --grey-color: #f3f3f3;
  --grey-text: #222;
  --grey-bg: #f7f7f9;
  --white-text: #222;
  --white-bg: #fff;
  --off-white-bg: linear-gradient(to right, #efefee, #ebebeb);
  --substitute-bg: #222;
  --substitute-text: #fff;
  --accent-bg: #d2162e;
  --accent-text: #2e0725;
  --off-accent-bg: #dadada;
  --off-accent-text: #344;
  --sm-font: 0.75erm;
  --trans-white-bg: linear-gradient(to right,
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0.61));
  --trans-dark-bg: linear-gradient(to right,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.61));
  --trans-dark-text: #fff;
  --fade-out-top-bg: linear-gradient(rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.15) 36.97%,
      rgba(0, 0, 0, 0) 61.18%);
  --gradient-dark-trans-bg: linear-gradient(to top,
      rgb(0, 0, 0) 0.6%,
      rgb(0, 0, 0) 0.6%,
      rgba(0, 0, 0, 0));
  --gradient-dark-trans-text: #fff;
  --green-trans-gradient-bg: linear-gradient(75deg,
      #132103 12.61%,
      rgba(7, 12, 2, 0.28) 27.73%,
      rgba(0, 0, 0, 0) 42.86%);
  --green-trans-gradient-text: #fff;
  --green-trans-faded-top: linear-gradient(151deg,
      #0a3802 15.97%,
      rgba(7, 145, 9, 0) 63.45%);

  --green-trans-faded-top-text: #fff;
  --radius: 0.45rem;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--white-bg);
  font-family: var(--font-family);
  color: var(--white-text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  width: 100%;
  font-weight: 300;
  line-height: 1.2;
  overflow-x: hidden;
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.primary,
div.primary,
section.primary,
a.primary,
span.primary {
  background: var(--primary-bg);
  color: var(--primary-text);
}

.primary a:hover {
  color: var(--primary-text);
}

.sm-font {
  font-size: var(--sm-font) !important;
}

.secondary,
div.secondary,
section.secondary,
a.secondary,
span.secondary {
  background: var(--secondary-bg);
  color: var(--secondary-text);
}

.secondary a:hover {
  color: var(--secondary-text);
  font-weight: bold;
}

.secondary-color,
p.secondary-color,
div.secondary-color,
section.secondary-color,
a.secondary-color,
span.secondary-color {
  color: var(--secondary-bg);
}

.tertiary,
div.tertiary,
section.tertiary,
a.tertiary,
span.tertiary {
  background: var(--tertiary-bg);
  color: var(--tertiary-text);
}

.tertiary-color,
p.tertiary-color,
div.tertiary-color,
section.tertiary-color,
a.tertiary-color,
span.tertiary-color {
  color: var(--tertiary-bg);
}

.substitute,
div.substitute,
section.substitute,
a.substitute,
span.substitute {
  background: var(--substitute-bg);
  color: var(--substitute-text);
}

.substitute-color,
p.substitute-color,
div.substitute-color,
section.substitute-color,
a.substitute-color,
span.substitute-color {
  color: var(--substitute-bg);
}

.accent,
div.accent,
section.accent,
a.accent,
span.accent {
  background: var(--accent-bg);
  color: var(--accent-text);
}

.accent-color,
p.accent-color,
div.accent-color,
section.accent-color,
a.accent-color,
span.accent-color {
  color: var(--accent-bg);
}

.off-accent,
div.off-accent,
section.off-accent,
a.off-accent,
span.off-accent {
  background: var(--off-accent-bg);
  color: var(--off-accent-text);
}

.off-white,
div.off-white,
section.off-white,
a.off-white,
span.off-white {
  background: var(--off-white-bg);
  color: var(--off-white-text);
}

.off-accent-color,
p.off-accent-color,
div.off-accent-color,
section.off-accent-color,
a.off-accent-color,
span.off-accent-color {
  color: var(--off-accent-bg);
}

.grey,
div.grey,
section.grey,
a.grey,
span.grey {
  background: var(--grey-bg);
  color: var(--grey-text);
}

.grey-color,
p.grey-color,
div.grey-color,
section.grey-color,
a.grey-color,
span.grey-color {
  color: var(--grey-bg);
}

.accent-color,
p.accent-color,
div.accent-color,
section.accent-color,
a.accent-color,
span.accent-color {
  color: var(--accent-bg);
}

.dark,
div.dark,
section.dark,
a.dark,
span.dark {
  background: var(--dark-bg);
  color: var(--dark-text);
}

.dark-color,
p.dark-color,
div.dark-color,
section.dark-color,
a.dark-color,
span.dark-color {
  color: var(--dark-bg);
}

.trans-bg,
div.trans-bg,
section.trans-bg,
a.trans-bg,
span.trans-bg {
  background: var(--trans-dark-bg);
  color: var(--trans-dark-text);
}

.hoverDark {
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.hoverDark:hover,
div.hoverDark:hover,
a.hoverDark:hover,
div a.hoverDark:hover {
  background: var(--dark-bg);
  color: var(--dark-text);
}

.hoverDark:hover a,
div.hoverDark:hover a {
  color: var(--dark-text);
}

.trans-blur,
div.trans-blur,
section.trans-blur,
a.trans-blur,
span.trans-blur {
  background: var(--trans-dark-bg);
  color: var(--trans-dark-text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gradient-dark-trans,
div.gradient-dark-trans,
section.gradient-dark-trans,
a.gradient-dark-trans,
span.gradient-dark-trans {
  background: var(--gradient-dark-trans-bg);
  color: var(--gradient-dark-trans-text);
}

.radius {
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  transform: scale(0.95);
  color: inherit;
}

p a {
  text-decoration: underline;
}

.actionBtn {
  cursor: pointer;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

img.logoBrand {
  width: 150px;
  height: auto;
  display: flex;
  flex: 0 0 auto;
  margin: 0.5rem 0;
}

img.thumbnail {
  height: 230px;
  width: auto;
  display: flex;
  flex: 0 0 auto;
}

.link,
img.link {
  cursor: pointer;
}

p {
  font-weight: normal;
  line-height: 1.5;
}

.primary a.cta.btn,
section.primary a.cta.btn,
div.primary a.cta.btn {
  color: var(--primary-text);
}

.primary a.cta.btn i.bi,
section.primary a.cta.btn i.bi,
div.primary a.cta.btn i.bi {
  color: var(--primary-text);
  background: var(--accent-bg);
}

.off-accent a.cta.btn,
section.off-accent a.cta.btn,
div.off-accent a.cta.btn {
  color: var(--off-accent-text);
}

.off-accent a.cta.btn i.bi,
section.off-accent a.cta.btn i.bi,
div.off-accent a.cta.btn i.bi {
  color: var(--dark-text);
  background: var(--dark-bg);
}

a.cta.btn.border,
.primary a.cta.btn.border {
  padding: 7px 22px;
  border-radius: var(--radius);
  color: inherit;
}

a.cta.btn.secondary,
section a.cta.btn.secondary,
div a.cta.btn.secondary,
.primary a.cta.btn.secondary,
section.primary a.cta.btn.secondary,
div.primary a.cta.btn.secondary {
  background: var(--secondary-bg);
  color: var(--secondary-text);
  padding: 5px 20px;
  line-height: 3;
  font-weight: 600;
  border-radius: var(--radius);
}

a.cta.btn.grey,
section a.cta.btn.grey,
div a.cta.btn.grey,
.primary a.cta.btn.grey,
section.primary a.cta.btn.grey,
div.primary a.cta.btn.grey {
  background: var(--grey-bg);
  color: var(--grey-text);
  padding: 5px 20px;
  line-height: 3;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid #ccc;
}

.row,
div.row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--tertiary-bg);
}

.rounded,
div.rounded {
  border-radius: var(--radius);
}

.container,
div.container,
section .container,
footer .container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  max-width: none;
  flex-direction: column;
  padding: 0;
}

.fit-content,
div.fit-content,
section.fit-content {
  height: fit-content;
  height: -webkit-fit-content;
}

.accordion-button:not(.collapsed) {
  color: var(--tertiary-bg);
  background-color: transparent;
  box-shadow: none;
}

.accordion-body {
  padding: 1rem 1.25rem;
  padding-bottom: 30px;
  font-size: 1.45rem;
  line-height: 1.4;
}

.accordion-button::after {
  background-color: var(--accent-bg);
  padding: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  flex: 0 0 auto;
  background-position: center;
  border-radius: var(--radius);
}

.accordion-button:not(.collapsed)::after {
  background-color: #eee;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  background: var(--fade-out-top-bg);
  z-index: 1000;
  position: fixed;
}

header div.logo {
  width: 120px;
  height: 120px;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: var(--white-bg);
  margin: 0;
  position: relative;
  margin-left: 5%;
}

header img.logo,
header div.logo img.logo {
  width: 20px;
  height: auto;
  display: flex;
  flex: 0 0 auto;
  margin: 0.5rem 0;
}

header nav ul,
header nav ul li {
  display: flex;
  flex: 0 0 auto;
}

header nav ul li {
  padding: 10px 20px;
  color: var(--white-bg);
}

header nav ul li i.menu,
header nav ul li i.menuMbl {
  font-size: 45px;
  color: inherit;
  cursor: pointer;
}

header nav ul li:last-child {
  padding: 0;
  margin-left: 30px;
  margin-right: 50px;
}

header nav li a {
  color: var(--white-bg);
  line-height: 2.3;
  font-weight: 600;
  font-size: 18px;
}

header nav li a:hover {
  color: var(--accent-bg);
}

.carousel-indicators {
  margin-bottom: -50px;
}

span.guinea-ui__customControl {
  background: var(--accent-bg);
  color: var(--primary-text);
  line-height: 32px;
  border-radius: var(--radius);
  opacity: 1 !important;
}

button.guinea-ui__customControl {
  opacity: 1;
}

section.hero-banner {
  margin: 0;
  width: 100%;
  display: flex;
  flex: 0 0 auto;
  height: 680px;
  overflow: hidden;
  z-index: 0;
  position: relative;
}

section.hero-banner .carousel,
section.hero-banner .carousel .carousel-inner {
  width: 100%;
  height: 100%;
  display: flex;
}

section.hero-banner .carousel .carousel-item {
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
}

section.hero-banner .carousel .carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--green-trans-gradient-bg);
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: left;
  font-style: italic;
  font-size: 20px;
}

section.hero-banner .carousel .carousel-caption h1,
section.hero-banner .carousel .carousel-caption h3,
section.hero-banner .carousel .carousel-caption h3,
section.hero-banner .carousel .carousel-caption h4,
section.hero-banner .carousel .carousel-caption h5,
section.hero-banner .carousel .carousel-caption h6 {
  font-weight: 800;
  text-transform: capitalize;
  font-style: italic;
  line-height: 1;
}

section.hero-banner .carousel .carousel-caption h1 span,
section.hero-banner .carousel .carousel-caption h2 span,
section.hero-banner .carousel .carousel-caption h3 span,
section.hero-banner .carousel .carousel-caption h4 span,
section.hero-banner .carousel .carousel-caption h5 span,
section.hero-banner .carousel .carousel-caption h6 span {
  color: var(--accent-bg);
}

section.hero-banner .carousel .carousel-caption h1 {
  font-size: 6rem;
}

section.hero-banner .carousel .carousel-caption h2 {
  font-size: 5rem;
}

section.hero-banner .carousel .carousel-caption h3 {
  font-size: 4rem;
}

section.hero-banner .carousel .carousel-caption h4 {
  font-size: 3rem;
}

section.hero-banner .carousel .carousel-caption h5 {
  font-size: 2rem;
}

section.hero-banner .carousel .carousel-caption h6 {
  font-size: 1rem;
}

a.cta.btn,
section.hero-banner .carousel .carousel-caption a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-bg);
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  width: fit-content;
  margin: 0;
  align-items: center;
  padding: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

a.cta.btn i.bi,
section.hero-banner .carousel .carousel-caption a i.bi {
  color: var(--primary-text);
  background: var(--white-bg);
  border-radius: var(--radius);
  width: 42px;
  line-height: 42px;
  margin-left: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

a.cta.btn:hover i.bi,
section.hero-banner .carousel .carousel-caption a:hover i.bi {
  background: var(--accent-bg);
}

section.hero-banner .carousel-indicators {
  justify-content: flex-start;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 120px;
}

section.hero-banner .carousel-indicators [data-bs-target] {
  width: 25px;
  height: 25px;
  border-radius: var(--radius);
  background-color: #ffffff;
}

section.hero-banner .carousel-indicators .active {
  background-color: #ff1;
}

section.hero-banner .carousel-indicators .active::after {
  width: 30px;
  height: 30px;
  content: "";
  background: transparent;
  border: 3px solid;
}

.carousel-control-next,
.carousel-control-prev {
  width: 5%;
  z-index: 100;
}

section.hero-banner .carousel-control-next-icon,
section.hero-banner .carousel-control-prev-icon {
  width: 5rem;
  height: 5rem;
}

section.hero-banner div.cta-hero-box {
  position: absolute;
  justify-self: flex-end;
  align-self: flex-end;
  left: auto;
  right: 0;
  z-index: 1;
}

.guinea-ui__rounded-container,
.guinea-ui__dark-trans-bg-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: flex-end;
  padding: 0%;
}

.guinea-ui__dark-trans-bg-container img.trans__bg__img {
  display: flex;
  margin: 0 auto;
  min-height: 200px;
  height: 100%;
  width: auto;
  flex: 0 0 auto;
  justify-self: center;
  align-self: center;
}

.guinea-ui__img-containerBase {
  width: 100%;
  height: 230px;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.guinea-ui__img-containerBase img {
  display: flex;
  flex: 0 0 auto;
  margin: 0 auto;
  width: fill-available;
  width: -webkit-fill-available;
  position: relative;
}

.guinea-ui__fullBgOnText {
  z-index: 1;
  background: var(--green-trans-faded-top);
  color: var(--green-trans-faded-top-text);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.guinea-ui__fullBgOnTextBase {
  display: flex;
  flex: 0 0 auto;
  min-height: 500px;
  position: absolute;
  justify-content: center;
  align-items: center;
  align-content: center;
  top: 0;
  height: 500px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.guinea-ui__fullBgOnTextBase img {
  width: auto;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex: 0 0 auto;
  justify-self: center;
  align-self: center;
  position: relative;
}

.guinea-ui__dark-trans-bg-textHolder {
  display: flex;
  position: absolute;
  z-index: 100;
  bottom: 0%;
  width: 100%;
  left: 0;
  right: 0;
  top: auto;
  justify-content: center;
  padding: 3rem;
  color: var(--trans-dark-text);
}

.guinea-ui__dark-trans-bg-textHolder::after {
  display: flex;
  position: absolute;
  width: 200%;
  height: 120%;
  content: "";
  background: var(--gradient-dark-trans-bg);
  z-index: -1;
  bottom: -20%;
  left: -50%;
  right: 0;
  border-radius: 200%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.guinea-ui__kitBox {
  height: 400px;
  max-height: 400px;
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius);
  background: var(--secondary-bg);
  position: relative;
}

.guinea-ui__kitBox img {
  display: flex;
  margin: 0 auto;
  flex: 0 0 auto;
  justify-self: center;
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  z-index: 0;
}

.guinea-ui__kitBox div {
  z-index: 1;
  position: relative;
  height: auto;
}

.guinea-ui__overflowKit {
  overflow: visible;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  display: flex;
}

.guinea-ui__overflowKit img {
  border-radius: var(--radius);
  z-index: 0;
  position: absolute;
  display: flex;
  width: 100%;
  left: 0;
  top: auto;
  bottom: auto;
  justify-self: center;
  align-self: center;
}

.guinea-ui__overflowKit .guinea-ui__overflowKit-Elems {
  display: flex;
  height: 100%;
  position: relative;
  top: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: transparent;
  z-index: 100;
  right: 0;
  padding: 0;
}

.guinea-ui__KitElems {
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  margin: 0.5rem auto;
  width: 100%;
  margin-right: -25%;
}

.hoverScale:hover img.hoverScale,
div.hoverScale:hover img.hoverScale,
.guinea-ui__rounded-container:hover img,
.guinea-ui__rounded-container:hover img.hoverScale,
.guinea-ui__dark-trans-bg-container:hover img,
.guinea-ui__dark-trans-bg-container:hover img.hoverScale,
.guinea-ui__kitBox:hover img,
.guinea-ui__kitBox:hover img.hoverScale,
.guinea-ui__overflowKit:hover img,
.guinea-ui__overflowKit:hover img.hoverScale,
.guinea-ui__fullBgOnText:hover img,
.guinea-ui__fullBgOnText:hover img.hoverScale,
.guinea-ui__fullBgOnTextBase:hover img,
.guinea-ui__fullBgOnTextBase:hover img.hoverScale,
.guinea-ui__img-containerBase:hover img,
.guinea-ui__img-containerBase:hover img.hoverScale {
  transform: scale(1.12, 1.12);
  -webkit-transform: scale(1.12, 1.12);
  -o-transform: scale(1.12, 1.12);
  -ms-transform: scale(1.12, 1.12);
}

.guinea-ui__mega-menu,
.guinea-ui__mega-menu-mobile {
  display: none;
  flex: 0 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 1000;
}

.guinea-ui__mega-menu.active,
.guinea-ui__mega-menu-mobile.active {
  display: flex;
}

.guinea-ui__mega-menu .nav-pills .nav-link,
.guinea-ui__mega-menu-mobile .nav-pills .nav-link {
  border-radius: var(--radius);
  background: var(--dark-bg);
  display: flex;
  justify-content: flex-start;
  width: 100%;
  font-weight: 600;
  color: var(--dark-text);
  height: 100px;
  align-items: center;
  border-bottom: 1px solid rgba(204, 204, 204, 0.22);
  font-size: 1.25rem;
}

.guinea-ui__mega-menu .nav-pills .nav-link:hover,
.guinea-ui__mega-menu-mobile .nav-pills .nav-link:hover {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transform: scale(1.1, 1.1);
}

.guinea-ui__mega-menu i.clsMenu,
.guinea-ui__mega-menu-mobile i.clsMenu {
  right: 0;
  color: var(--primary-text);
  cursor: pointer;
}

.guinea-ui__mega-menu .nav-pills .nav-link.active,
.guinea-ui__mega-menu .nav-pills .show>.nav-link,
.guinea-ui__mega-menu-mobile .nav-pills .nav-link.active,
.guinea-ui__mega-menu-mobile .nav-pills .show>.nav-link {
  background-color: none;
  background: var(--secondary-bg);
  color: var(--secondary-text);
}

.guinea-ui__mega-menu a,
.guinea-ui__mega-menu-mobile a {
  color: inherit;
}

.guinea-ui__mega-menu img,
.guinea-ui__mega-menu-mobile img {
  height: 620px;
  margin: 0 auto !important;
  justify-self: center;
  position: relative;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.guinea-ui__mega-menu .menuList,
.guinea-ui__mega-menu-mobile .menuList {
  overflow: auto;
}

.guinea-ui__mega-menu-mobile ul li a {
  font-size: 15px;
  font-weight: 600;
}

.guinea-ui__mega-menu-mobile ul li a:hover {
  font-weight: 300;
}

.guinea-ui__mega-menu-mobile .accordion-flush .accordion-item .accordion-button {
  font-weight: 600;
  font-size: 16px;
}

footer,
footer p {
  font-size: 15px;
  line-height: 1.2;
  margin: 0;
}

.alt-content {
  position: absolute;
}

.alt-base {
  position: relative;
}

.alt-base img {
  width: 100%;
}

.form-login-icon,
i.bi.form-login-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  font-size: 100px;
  padding: 10px;
}

.form-control,
form .form-control {
  background: transparent;
  background-color: transparent;
  height: 45px;
  margin: 0.25rem 0;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid;
  border-radius: var(--radius);
  color: inherit;
}

form input.form-control::placeholder {
  color: inherit;
  opacity: 0.75;
  font-weight: 300;
}

form .tab-page input.form-control {
  color: inherit;
}

form .tab-page input.form-control::placeholder {
  color: inherit;
}

.form-control:focus,
form .form-control:focus {
  color: inherit;
  background-color: transparent;
  border-color: var(--dark-bg);
  outline: 0;
  box-shadow: none;
}

.form-control.prodQty {
  width: 60px;
  background: var(--primary-bg);
  margin-right: 10px;
}

/* height controls for containers */

.h-1,
div.h-1,
section.h-1,
span.h-1,
img.h-1 {
  height: 100px;
}

.h-15,
div.h-15,
section.h-15,
span.h-15,
img.h-15 {
  height: 150px;
}

.h-2,
div.h-2,
section.h-2,
span.h-2,
img.h-2 {
  height: 200px;
}

.h-25,
div.h-25,
section.h-25,
span.h-25,
img.h-25 {
  height: 250px;
}

.h-3,
div.h-3,
section.h-3,
span.h-3,
img.h-3 {
  height: 300px;
}

.h-35,
div.h-35,
section.h-35,
span.h-35,
img.h-35 {
  height: 350px;
}

.h-4,
div.h-4,
section.h-4,
span.h-4,
img.h-4 {
  height: 400px;
}

.h-45,
div.h-45,
section.h-45,
span.h-45,
img.h-45 {
  height: 450px;
}

.h-5,
div.h-5,
section.h-5,
span.h-5,
img.h-5 {
  height: 500px;
}

.h-55,
div.h-55,
section.h-55,
span.h-55,
img.h-55 {
  height: 550px;
}

.h-6,
div.h-6,
section.h-6,
span.h-6,
img.h-6 {
  height: 600px;
}

.h-65,
div.h-65,
section.h-65,
span.h-65,
img.h-65 {
  height: 650px;
}

.h-7,
div.h-7,
section.h-7,
span.h-7,
img.h-7 {
  height: 700px;
}

.showMobile {
  display: none;
}

.social_corner,
div.social_corner,
span.social_corner {
  position: fixed;
  padding: 2.3rem;
  z-index: 9999;
  background: transparent;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  right: 0;
  bottom: 0;
}

.social_corner a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-bg);
  color: var(--accent-text);
  border-radius: 120px;
  margin-bottom: 10px;
}

.social_corner a i.bi {
  color: inherit;
}

.menuMbl {
  display: none !important;
}

.menu {
  display: flex !important;
}

#mainframe,
section#mainframe {
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  flex: 0 0 auto;
  padding: 0;
  padding-top: 30px;
}

.leftBar,
#mainframe .leftBar,
section#mainframe .leftBar {
  width: 18%;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 0.5rem;
  font-size: 1rem;
  margin: 0;
  padding-top: 1rem;
  min-height: 600px;
}

.leftBar i.actionBtn {
  font-size: 18px;
  font-weight: 600;
}

.rigthBar,
#mainframe .rigthBar,
section#mainframe .rigthBar {
  width: 35%;
  border-radius: 3rem;
  height: 80vh;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 0.5rem;
}

.ui-basket,
#mainframe .ui-basket,
section#mainframe .ui-basket {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: wrap;
  flex: 0 0 auto !important;
  justify-content: start !important;
  margin: 0;
  min-height: 600px;
  overflow: auto;
  padding: 1.8rem;
  color: inherit;
}

.ui-basket,
.ui-basket.maxRange {
  width: 82%;
}

.ui-basket.minRange {
  width: 50%;
  margin-right: 2%;
}

.ui-basket div.tab-page {
  display: none;
  flex: 0 0 auto;
  flex-wrap: wrap;
  padding: 2.3rem 2rem;
  background: var(--primary-bg);
  border-radius: var(--radius);
  color: var(--primary-text);
  margin: 1rem 0;
}

.ui-basket div.tab-page.active {
  display: flex;
}

.ui-basket button {
  height: 45px;
  padding: 0 1rem;
  margin: 0.45rem 0.1rem;
  border-radius: var(--radius);
  background: var(--tertiary-bg);
  color: var(--tertiary-text);
  font-weight: 500;
  justify-content: center;
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  font-size: 1rem;
  border: none;
  font-family: "foco bold";
}

.btn-danger,
.ui-basket button.btn-danger {
  color: #fff;
  background-color: var(--accent-bg);
  border-color: var(--accent-bg);
}

.btn-primary:hover,
.ui-basket .btn-primary:hover,
.ui-basket button:hover {
  color: var(--dark-text);
  background-color: var(--dark-bg);
  background: var(--dark-bg);
  border-color: none;
}

.ui-basket button i.bi {
  display: flex;
  flex: 0 0 auto;
  line-height: 2rem;
  margin: 0 auto;
  position: relative;
}

.ui-basket div.form-group {
  padding: 0.5rem;
  position: relative;
}

.ui-basket table form div.form-group {
  padding: 0;
}

.ui-basket form label {
  color: inherit;
  font-weight: 500;
  font-size: 14px;
}

.ui-basket .tooltip {
  display: flex;
  z-index: 9999;
  color: red;
  position: absolute;
  right: 0;
  font-size: 13px;
  opacity: 1;
  margin: 0 0.5rem;
}

.ui-basket li a.tabin {
  margin-right: 1rem;
  font-weight: 600;
}

.dataTables_wrapper,
div.dataTables_wrapper {
  width: 100%;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  margin-top: 15px;
  display: flex;
  flex: 0 0 auto;
  position: relative;
  flex-wrap: wrap;
}

.dataTables_wrapper .dataTables_filter {
  margin-right: 1px;
}

.dataTables_wrapper .dataTables_filter label {
  font-weight: 500;
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  align-items: center;
}

.dataTables_wrapper .dataTables_filter label input[type="search"] {
  margin-left: 10px;
  border: none;
  background: var(--dark-bg);
  display: flex;
  flex: 0 0 auto;
  height: 40px;
  border-radius: 2rem;
  color: var(--dark-text);
  justify-content: center;
  padding: 0px 10px;
  font-weight: 600;
}

.dataTables_wrapper .dataTables_info {
  font-weight: 500;
}

.dataTables_wrapper .dataTables_info {
  font-weight: 500;
  align-self: flex-start;
  align-content: flex-start;
  width: 50%;
}

table.dataTable {
  font-weight: normal;
  color: inherit;
  font-size: 14px;
  width: 100% !important;
  margin: 1rem 0;
  background: var(--primary-bg);
}

table.dataTable tbody tr {
  border-bottom: 1px solid var(--off-accent-bg);
}

table.dataTable tbody tr:last-child {
  border: none;
}

.dataTables_wrapper .dataTables_paginate {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.dataTables_wrapper .dataTables_paginate a {
  padding: 0px 10px;
  font-weight: 500;
}

table.dataTable>tbody>tr.child ul.dtr-details {
  width: 100%;
}

table.dataTable>tbody>tr.child ul.dtr-details li {
  display: grid;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  line-height: 1;
  padding: 0 0.8rem;
  height: 3rem;
}

thead {
  border-bottom: 2px solid rgba(254, 224, 255, 0.08);
}

th,
thead {
  height: 3.5rem;
  background: var(--off-accent-bg);
  font-family: "foco bold";
}

table tr td div form {
  width: auto;
  margin: 0;
}

div.loading,
body#app div.loading {
  display: none;
  position: absolute;
  bottom: 15px;
  height: auto;
  min-width: 250px;
  background: #121212;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  line-height: 35px;
  font-size: 13px;
  text-transform: capitalize;
  box-shadow: 0 0 83px 33px rgba(0, 0, 0, 0.09);
  z-index: 999999999;
  flex: 0 0 auto;
  width: auto;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin: 0;
}

div.site-notify {
  position: fixed;
  bottom: 50px;
  background: #111;
  border-radius: 400px;
  display: none;
  flex: 0 0 auto;
  justify-self: center;
  align-self: center;
  margin: 0 auto;
  z-index: 99999999;
  justify-content: space-between;
  align-items: center;
  float: none;
  flex-direction: row;
  padding: 15px 30px;
  width: 30%;
  left: 35%;
  cursor: pointer;
}

div.site-notify .alertIcon {
  display: flex;
  flex: 0 0 auto;
  background: #333;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

div.site-notify .alertIcon i {
  color: #fff;
  font-size: 12px;
}

div.site-notify .alertUser {
  font-size: 12px;
  color: #fff;
  justify-content: center;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  font-weight: 600;
  align-items: center;
  text-align: left;
  padding: 0px 10px;
  width: 80%;
}

div.site-notify .alertUser p {
  margin: 0 auto;
  font-weight: 400;
}

div.site-notify .alertUser .btn,
div.site-notify .alertUser a.btn {
  background: var(--accent-bg);
  color: var(--anchor-default);
  margin: 0;
  display: flex;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.85rem;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-top: 0.7rem;
}

div.site-inprogress {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
  display: flex;
}

.dt-buttons,
div.dt-buttons {
  width: fit-content;
  display: flex;
}

.tox .tox-statusbar a {
  display: none;
}

.revealPassCont,
span.revealPassCont {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  width: 15%;
  padding-top: 3vh;
}

.revealPassCont i,
span.revealPassCont i {
  cursor: pointer;
}

/* responsive style */

@media (max-width: 1160px) {
  section.hero-banner .carousel .carousel-caption h3 {
    font-size: 3.2rem;
  }
}

@media (max-width: 1080px) {
  section.hero-banner div.cta-hero-box {
    display: none !important;
  }

  section.hero-banner {
    height: auto;
  }

  section.hero-banner .carousel .carousel-item img {
    position: relative;
    z-index: 0;
  }

  section.hero-banner .carousel .carousel-caption {
    background: var(--secondary-bg);
    position: relative;
    height: -webkit-fit-content;
    padding: 3rem;
    z-index: 999;
  }

  section.hero-banner .carousel .carousel-caption h3 {
    font-size: 2rem;
  }

  .guinea-ui__overflowKit {
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .guinea-ui__overflowKit img {
    position: relative;
  }

  .guinea-ui__KitElems {
    margin-right: 0%;
  }

  header div.logo {
    margin-left: 5%;
  }

  .hideMobile {
    display: none;
  }

  .showMobile {
    display: flex;
  }

  div.site-notify {
    width: 60%;
    left: 20%;
  }
}

@media (max-width: 680px) {
  section.hero-banner .carousel-indicators {
    justify-content: center;
    margin: 0 auto;
  }

  .social_corner,
  div.social_corner,
  span.social_corner {
    padding: 0.3rem;
  }

  section.hero-banner .carousel .carousel-item {
    justify-content: flex-start;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-content: center;
  }

  section.hero-banner .carousel .carousel-item img {
    display: flex !important;
    width: auto !important;
    height: 360px;
    position: relative;
    justify-self: flex-start;
    align-self: center;
    flex: 0 0 auto;
  }

  .p-5 {
    padding: 1.125rem !important;
  }

  header div.logo {
    width: 80px;
    height: 80px;
  }

  header div.logo img.logo {
    width: 70px;
  }

  header nav ul li:last-child {
    margin-right: 25px;
  }

  .guinea-ui__overflowKit {
    overflow: visible;
    position: relative;
  }

  .guinea-ui__overflowKit .guinea-ui__overflowKit-Elems {
    height: auto;
  }

  .carousel .carousel-caption h3 {
    font-size: 1.5rem;
  }

  .h4,
  h4 {
    font-size: calc(1rem + 0.3vw);
  }

  .h5,
  h5 {
    font-size: 1.12rem;
  }

  section.hero-banner .carousel .carousel-caption {
    font-size: 16px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    display: none;
  }

  .h-xs-auto {
    height: auto !important;
  }

  .alt-base {
    position: absolute !important;
    height: 100%;
    justify-content: center;
  }

  .alt-base img {
    width: auto !important;
    height: 100%;
    display: flex;
    flex: 1 1;
    align-self: center;
    margin: 0 auto;
  }

  .alt-content {
    position: relative !important;
  }

  .menuMbl {
    display: flex !important;
  }

  .menu {
    display: none !important;
  }

  .leftBar a.actionBtn {
    display: none !important;
  }

  .leftBar a.actionBtn {
    margin: auto;
  }

  .leftBar div.rounded.actionBtn {
    padding: 8px !important;
  }
}

@media print {
  iframe {
    display: block !important;
  }

  header {
    display: none !important;
  }

  .leftBar,
  .no-print {
    display: none !important;
  }
}