@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-ExtraLight.ttf");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-ExtraLightItalic.ttf");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-Light.ttf");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-LightItalic.ttf");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-Regular.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-Italic.ttf");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-Regular.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-Italic.ttf");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-Medium.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-MediumItalic.ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-SemiBold.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-SemiBoldItalic.ttf");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-Bold.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-BoldItalic.ttf");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-ExtraBold.ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-ExtraBoldItalic.ttf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-Black.ttf");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../Outfit/Outfit-BlackItalic.ttf");
  font-weight: 800;
  font-style: italic;
}
:root {
  --font-family: "Outfit", sans-serif;
  --color-bg: #fff;
  --color-dark-bg: linear-gradient(to right, #200338, #8a19e7);
  --primary-text: #211026;
  --primary-bg: #fff;
  --secondary-text: #fff;
  --secondary-bg: linear-gradient(to right, #82007f, #8a19e7);
  --tertiary-text: #fff;
  --tertiary-bg: #b20081;
  --anchor-default: #e03b09;
  --grey-color: #d9d9d9;
  --grey-text: #222;
  --grey-bg: #f8f8f8;
  --white-text: #666;
  --white-bg: #fff;
  --off-white-bg: #ffecf6;
  --substitute-bg: #8a19e7;
  --substitute-text: #fff;
  --accent-bg: #f37d08;
  --accent-text: #fff;
  --trans-white-bg: rgba(255, 255, 255, 0.5);
  --trans-dark-bg: rgba(0, 0, 0, 0.5);
  --gradient-dark-trans: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0) 80%,
    rgba(0, 0, 0, 0.5) 100%
  );
  --gradient-dark-trans-text: #fff;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--primary-bg);
  font-family: var(--font-family);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  float: left;
  width: 100%;
  font-weight: 300;
  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;
}

.smooth,
div.smooth,
section.smooth,
span.smooth,
a.smooth {
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

a:hover {
  color: var(--primary-text);
}
h1 {
  font-size: 5.5rem;
}
h2 {
  font-size: 4.2rem;
}
h3 {
  font-size: 3rem;
}
h4 {
  font-size: 2rem;
}
h5 {
  font-size: 1.2rem;
}
h6 {
  font-size: 0.9rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  margin-bottom: 1rem;
  word-break: break-word;
  word-wrap: break-word;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--tertiary-bg);
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
h1.light,
h2.light,
h3.light,
h4.light,
h5.light,
h6.light {
  font-weight: 300;
}
h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  padding: 0px 10px;
  color: var(--secondary-bg);
}

div,
section,
footer {
  display: flex;
  flex: 0 0 auto;
  margin: 0 auto;
  position: relative;
  width: 100%;
  z-index: 1;
}
img {
  width: -webkit-fit-content;
  height: auto;
  display: flex;
  flex: 0 0 auto;
  max-width: 100%;
  justify-self: center;
  align-self: center;
}
.row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.flex,
.flex-column {
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.no-overflow {
  overflow: hidden;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.no-wrap {
  flex-wrap: nowrap;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.mt-5 {
  margin-top: 5rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}

.w-auto,
div.w-auto,
span.w-auto,
a.w-auto,
h1.w-auto,
h2.w-auto,
h3.w-auto,
h4.w-auto,
h5.w-auto,
h6.w-auto {
  width: -webkit-fit-content;
  max-width: -webkit-fit-content;
}

.list-group-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.z-index-0 {
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

.z-index-100 {
  z-index: 100;
}

.z-index-200 {
  z-index: 200;
}

.z-index-300 {
  z-index: 300;
}

.pos-fixed {
  position: fixed;
}

.pos-absolute {
  position: absolute;
}
.pos-relative {
  position: relative;
}

.opacity-m-1 {
  opacity: 0.1;
}

.opacity-1 {
  opacity: 1;
}

.opacity-5 {
  opacity: 0.5;
}

.opacity-0 {
  opacity: 0;
}

.primary {
  background: var(--primary-bg);
  color: var(--primary-text);
}
.primary a.default:hover {
  color: var(--primary-text);
}
.secondary,
nav.nav.navbar ul li a.secondary {
  background: var(--secondary-bg);
  color: var(--secondary-text);
}
.pattern-bg {
  overflow: 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;
}
.pattern-bg::after {
  position: absolute;
  background: var(--trans-dark-bg);
  width: 20vw;
  height: 100vh;
  content: "";
  transform: skew(35deg);
  z-index: -1;
  bottom: 0;
  top: auto;
  left: -15vw;
  opacity: 0.125;
  border-radius: 400px;
}
.pattern-bg::before {
  position: absolute;
  background: var(--trans-dark-bg);
  width: 25vw;
  height: 100vh;
  content: "";
  transform: skew(32deg);
  z-index: -1;
  top: -6%;
  right: -20vw;
  opacity: 0.125;
  border-radius: 200px;
}
.secondary-color {
  background: none;
  color: var(--secondary-bg);
}
.secondary a.default:hover {
  color: var(--secondary-text);
}
.tertiary,
nav.nav.navbar ul li a.tertiary {
  background: var(--tertiary-bg);
  color: var(--tertiary-text);
}

.tertiary-color {
  background: none;
  color: var(--tertiary-bg);
}
.tertiary a.default:hover {
  color: var(--white-text);
}
.substitute,
nav.nav.navbar ul li a.substitute {
  background: var(--substitute-bg);
  color: var(--substitute-text);
}

.substitute-color {
  background: none;
  color: var(--substitute-bg);
}
.substitute a.default:hover {
  color: var(--substitute-text);
}
.grey {
  background: var(--grey-bg);
  color: var(--grey-text);
}

.grey-color {
  background: none;
  color: var(--grey-color);
}
.grey a.default,
nav.nav.navbar ul li a.grey {
  color: var(--grey-text);
}

.grey a.default:hover,
.grey a:hover {
  color: var(--secondary-bg);
}

nav.nav.navbar ul li a.grey:hover {
  color: var(--primary-text);
}

.accent {
  background: var(--accent-bg);
  color: var(--accent-text);
}

.no-bg {
  background: none;
  color: inherit;
}

.trans-bg {
  background: var(--trans-dark-bg);
  color: var(--tertiary-text);
}

.gradient-trans-bg {
  background: var(--gradient-dark-trans);
  color: var(--gradient-dark-trans-text);
}

.dark {
  background: var(--color-dark-bg);
  color: var(--accent-text);
}

.white {
  background: var(--white-bg);
  color: var(--white-text);
}

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

/* .secondary a:hover,
.tertiary a:hover,
.substitute a:hover,
.dark a:hover {
  border-bottom: 2px solid;
} */

h1,
h2,
h3 {
  font-weight: 700;
  color: inherit;
}

h4,
h5,
h6 {
  font-weight: 600;
  color: inherit;
}

p {
  font-weight: 300;
  color: inherit;
  text-align: justify;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  text-transform: capitalize;
}
a.default,
nav.navbar ul li a.default {
  font-weight: 500;
  border-bottom: 2px solid;
  width: fit-content;
  margin: 0;
  line-height: 2;
  margin-right: 12px;
}
a.default:hover,
nav.navbar ul li a.default {
  padding: 0px;
  background: none;
  color: #09f;
}

h1 a.default,
h2 a.default,
h3 a.default,
h4 a.default,
h5 a.default,
h6 a.default {
  border: none;
  margin: 0;
  line-height: 1;
}

header nav.navbar ul li a.default {
  line-height: 45px;
}

header nav.nav.navbar ul li.no-bg {
  background: none;
  border-left: 1px solid rgba(255, 255, 255, 0.27);
}

header nav.nav.navbar ul li.no-bg a {
  line-height: 75px;
  height: fit-content;
  border-radius: 0;
  padding: 0px 15px;
}

header nav.nav.navbar ul li.no-bg:hover,
header nav.nav.navbar ul li.no-bg:hover a {
  background: var(--white-bg);
  color: var(--secondary-bg);
}

header nav.nav.navbar ul li.no-bg a:hover {
  color: var(--secondary-bg);
}

header nav.nav.navbar ul li.no-bg a::after {
  display: none;
}

header a:hover,
header.substitute a:hover {
  border: none;
}
.curved-edge {
  border-radius: 20px;
}

.offset-top-1 {
  margin-top: -1em;
}
.offset-top-1-5 {
  margin-top: -1.5em;
}
.offset-top-2 {
  margin-top: -2em;
}
.offset-top-2-5 {
  margin-top: -2.5em;
}
.offset-top-3 {
  margin-top: -3em;
}
.offset-top-3-5 {
  margin-top: -3.5em;
}
.offset-top-4 {
  margin-top: -4em;
}
.offset-top-4-5 {
  margin-top: -4.5em;
}
.offset-top-5 {
  margin-top: -5em;
}

.offset-bottom-1 {
  margin-bottom: -1em;
}
.offset-bottom-1-5 {
  margin-bottom: -1.5em;
}
.offset-bottom-2 {
  margin-bottom: -2em;
}
.offset-bottom-2-5 {
  margin-bottom: -2.5em;
}
.offset-bottom-3 {
  margin-bottom: -3em;
}
.offset-bottom-3-5 {
  margin-bottom: -3.5em;
}
.offset-bottom-4 {
  margin-bottom: -4em;
}
.offset-bottom-4-5 {
  margin-bottom: -4.5em;
}
.offset-bottom-5 {
  margin-bottom: -5em;
}

.offset-right-1 {
  margin-right: -1em;
}
.offset-right-1-5 {
  margin-right: -1.5em;
}
.offset-right-2 {
  margin-right: -2em;
}
.offset-right-2-5 {
  margin-right: -2.5em;
}
.offset-right-3 {
  margin-right: -3em;
}
.offset-right-3-5 {
  margin-right: -3.5em;
}
.offset-right-4 {
  margin-right: -4em;
}
.offset-right-4-5 {
  margin-right: -4.5em;
}
.offset-right-5 {
  margin-right: -5em;
}

.offset-left-1 {
  margin-left: -1em;
}
.offset-left-1-5 {
  margin-left: -1.5em;
}
.offset-left-2 {
  margin-left: -2em;
}
.offset-left-2-5 {
  margin-left: -2.5em;
}
.offset-left-3 {
  margin-left: -3em;
}
.offset-left-3-5 {
  margin-left: -3.5em;
}
.offset-left-4 {
  margin-left: -4em;
}
.offset-left-4-5 {
  margin-left: -4.5em;
}
.offset-left-5 {
  margin-left: -5em;
}

.self-end,
div.self-end,
span.self-end,
img.self-end {
  align-self: end;
}

.container {
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 5%;
  max-width: -webkit-fill-available;
  max-width: -moz-available;
}
ul li {
  list-style: none;
}

header {
  width: 100%;
  top: 0;
  left: 0;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  /* border-bottom: 1px solid #f0e3ec; */
  position: fixed;
  box-shadow: 0 0 44px -6px rgba(0, 0, 0, 0.15);
}
header .nav-container {
  width: fit-content;
  justify-content: start;
  align-items: start;
  margin: 0;
  padding: 0;
}

.logo-cont {
  background: var(--primary-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: auto;
  flex: 0 0 auto;
  margin: 0;
  margin-top: 0;
  padding: 0px 6px;
}

.logo,
img.logo {
  height: auto;
  width: 100%;
  max-width: -webkit-fit-content;
}

.base-img-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
}
.base-img-cont img {
  width: auto;
  height: 100%;
  display: flex;
  flex: 0 0 auto;
  max-width: none;
}

.carousel:hover .base-img-cont img,
.base-img-cont:hover img,
.product-box:hover .base-img-cont img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.base-img-cont img.set-wide {
  width: -webkit-fill-available;
  width: -moz-available;
  height: auto;
}

.main-banner div.banner-content {
  margin: 0;
  margin-top: 15rem;
}

.carousel-ctrls {
  position: absolute;
  width: fit-content;
  justify-content: start;
  align-items: center;
  bottom: 0rem;
  z-index: 100;
  right: 9%;
}
.carousel-ctrls button {
  display: contents;
  width: auto;
}
.carousel-ctrls button:hover span i.bi {
  color: var(--substitute-text);
}
nav.navbar {
  margin: 0;
  padding: 0;
}
nav.navbar ul,
nav.navbar ul li,
footer ul li {
  background: none;
  margin: 0;
  padding: 0;
  height: auto;
  display: inline-flex;
  position: relative;
}
nav.navbar ul li {
  /* background: var(--primary-bg); */
  color: var(--primary-text);
}

nav.navbar ul li:hover {
  background: var(--trans-dark-bg);
}

nav.navbar ul li:hover,
nav.navbar ul li a:hover {
  color: var(--secondary-bg);
}

nav.navbar ul li.tertiary {
  background: var(--tertiary-bg);
  color: var(--tertiary-text);
}
nav.navbar ul li.substitute {
  background: var(--substitute-bg);
  color: var(--substitute-text);
}
nav.navbar ul li.dark {
  background: var(--dark-bg);
  color: var(--dark-text);
}
nav.navbar ul li.primary {
  background: var(--primary-bg);
  color: var(--primary-text);
}
nav.navbar ul li.secondary {
  background: var(--secondary-bg);
  color: var(--secondary-text);
}

nav.navbar ul li a,
footer ul li a {
  display: block;
  float: left;
  color: inherit;
  margin: 0;
  line-height: 75px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

nav.navbar ul li a::after {
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  background: var(--secondary-bg);
}
nav.navbar ul li a:hover::after {
  width: 70%;
}

nav.navbar ul li a.logo-link,
nav.navbar ul li a.logo-link:hover {
  background: transparent;
  padding: 5px 0px;
  padding-right: 25px;
}
nav.navbar ul li a.grouping {
  line-height: 45px;
  font-size: 15px;
  padding: 0px 32px !important;
}

nav.navbar ul li .dropdown {
  position: absolute;
  display: none;
  flex: 0 0 auto;
  width: 250px;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  top: 75px;
  margin-left: -1px;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}

nav.navbar ul li .dropdown ul {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}

nav.navbar ul li .dropdown ul li {
  width: 100%;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  height: 75px;
  background: var(--primary-bg);
}

nav.navbar ul li .dropdown ul li a {
  width: 100%;
}
nav.navbar ul li .dropdown ul li:hover,
nav.navbar ul li .dropdown ul li:hover a,
.nav.navbar ul li .dropdown ul li a:hover {
  background: var(--grey-bg);
}

nav.navbar ul li .dropdown ul li a span {
  width: 100%;
  display: flex;
}
nav.navbar ul li .dropdown ul li a span.hint {
  color: var(--grey-text);
  font-size: 12px;
  line-height: 1;
  margin-top: -25px;
  margin-bottom: 10px;
  font-weight: 300;
  display: flex;
}

nav.navbar ul li .dropdown li .options-menu {
  display: none;
  position: absolute;
  width: 250px;
  height: auto;
  left: 250px;
  margin: 0px;
  background: var(--color-dark-bg);
  overflow-y: visible;
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}

nav.navbar ul li .dropdown li:hover .options-menu {
  display: flex;
}

header nav.navbar ul li .dropdown li .options-menu ul li {
  overflow: hidden;
}

header nav.navbar ul li .dropdown li .options-menu ul li,
header nav.navbar ul li.no-bg .dropdown li .options-menu ul li,
header nav.navbar ul li.no-bg .dropdown li .options-menu ul li.no-bg,
header nav.navbar ul li.no-bg .dropdown li .options-menu ul li a,
header nav.navbar ul li.no-bg .dropdown li .options-menu ul li.no-bg a {
  background: transparent;
  color: var(--substitute-text);
}

header nav.navbar ul li.no-bg .dropdown li .options-menu ul li:hover,
header nav.navbar ul li.no-bg .dropdown li .options-menu ul li:hover a,
header nav.navbar ul li .dropdown li .options-menu ul li a:hover,
header nav.navbar ul li.no-bg .dropdown li .options-menu ul li a:hover,
header nav.navbar ul li.no-bg .dropdown li .options-menu ul li.no-bg a:hover {
  text-decoration: none;
  background: var(--secondary-bg);
  color: var(--secondary-text);
}
nav.navbar ul li:hover .dropdown,
nav.navbar ul li a:hover .dropdown {
  display: flex;
}

a.logo-link:hover,
.secondary a.logo-link:hover {
  background: none;
}

.white nav.navbar ul li a.grouping {
  color: var(--white-text);
}

.grey nav.navbar ul li a.grouping {
  color: var(--grey-text);
}

.grey nav.navbar ul li a.grouping:hover {
  color: var(--substitute-text);
}

.grey nav.navbar ul li a.grouping.active {
  color: var(--substitute-text);
  background: var(--substitute-bg);
}
.accordion-item {
  background-color: #fff;
  border: 1px solid var(--substitute-bg);
  flex: 0 0 auto;
  flex-direction: column;
}
.accordion-body {
  flex-direction: column;
}
.accordion-header {
  width: 100%;
  max-width: -webkit-fit-available;
  max-width: -moz-available;
}
.accordion-button {
  font-size: 1rem;
  padding: 2rem 1.25rem;
}
.accordion-button:not(.collapsed) {
  color: var(--primary-text);
  background-color: transparent;
  box-shadow: none;
}

footer ul li a {
  font-size: 12px;
  padding: 0;
  line-height: 2;
  border: none;
  margin-right: 15px;
}

nav.navbar ul li .dropdown-mega {
  border-radius: 7px;
  display: none;
  width: 100%;
  left: 0;
  margin-top: 65px;
}

nav.navbar ul li .dropdown-mega .mainCont {
  margin-top: 10px;
  border-radius: 20px;
  overflow: hidden;
}

nav.navbar ul li .dropdown-mega .mainCont .container {
  width: 100%;
  margin: 0%;
}

nav.navbar ul li:hover .dropdown-mega {
  display: flex;
}
nav.navbar ul li .dropdown-mega ul {
  height: auto;
}

nav.navbar ul li .dropdown-mega ul li {
  height: auto;
  background: transparent;
}
nav.navbar ul li .dropdown-mega ul li a {
  padding: 0px;
  text-align: left;
  line-height: 2.2;
  height: auto;
  font-size: 12px;
}

.dark-trans-bg {
  background: var(--trans-dark-bg);
  color: var(--color-bg);
}
.dark-trans-blur {
  background: var(--trans-dark-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-bg);
}

.carousel,
.carousel-inner {
  width: 100%;
  position: relative;
  display: flex;
  flex: 0 0 auto;
}

section.main-banner .carousel-inner {
  overflow: hidden;
  max-height: 100%;
  height: 600px;
}
section.main-banner .carousel-caption {
  width: 100%;
  height: 100%;
  z-index: 100;
  bottom: 0;
  right: 0;
  top: auto;
  left: auto;
  background: var(--gradient-dark-trans);
  color: var(--gradient-dark-trans-text);
  justify-content: center;
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  text-align: left;
}
section.main-banner .carousel-caption .container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(
    134deg,
    rgba(0, 0, 0, 0.46) 5.88%,
    rgba(255, 255, 255, 0.02)
  );
  width: 100%;
  margin: 0;
  padding: 0px 3%;
}

section.main-banner .carousel-caption h1,
section.main-banner .carousel-caption h2,
section.main-banner .carousel-caption h3,
section.main-banner .carousel-caption h4,
section.main-banner .carousel-caption h5,
section.main-banner .carousel-caption h6 {
  text-transform: capitalize;
}

section.main-banner .carousel-item {
  width: 100%;
  height: 100%;
  position: relative;
  display: none;
  flex: 0 0 auto;
  text-align: left;
}
.carousel-item.active,
section.main-banner .carousel-item.active {
  margin: 0;
  display: flex;
}

.carousel-item .slider-caption {
  margin-left: 15%;
}

.carousel-indicators {
  left: 0;
  margin: 0;
  justify-content: start;
  margin-top: -3rem;
}

section.main-banner .carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  background: var(--primary-bg);
  position: relative;
  flex: 0 0 auto;
  flex-direction: column;
  margin: 0px 15px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  color: var(--accent-text);
}

.carousel-indicators .active {
  background: var(--color-dark-bg);
}

.carousel-indicators [data-bs-target] img {
  border-radius: 10px;
  z-index: 0;
  display: none;
}

.carousel-indicators [data-bs-target] h5 {
  margin: 0;
  margin-top: 15px;
  margin-bottom: 4px;
}
.carousel-indicators [data-bs-target] h5,
.carousel-indicators [data-bs-target] p {
  position: relative;
  top: 0;
  left: 0;
  z-index: 100;
  text-indent: initial;
}

.carousel-indicators .container {
  justify-content: start;
}
.row.indicator-container-row {
  flex-direction: row;
  flex-wrap: nowrap;
  width: 70%;
  margin: 0;
  justify-self: start;
  align-self: start;
  /* border: 2px solid var(--secondary-bg); */
  padding: 0px;
  margin-bottom: 0px;
  justify-content: space-between;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  font-family: "Bootstrap-icons";
  text-align: center;
  color: var(--primary-text);
  text-indent: 0 !important;
}

.carousel-control-next,
.carousel-control-prev {
  z-index: 100;
  position: relative;
  display: flex;
  flex: 0 0 auto;
  width: -webkit-fit-content;
}

section.main-banner .carousel-indicators .carousel-control-next,
section.main-banner .carousel-indicators .carousel-control-prev {
  color: #fff;
  background: #fff;
  opacity: 1;
  border: none;
}

/* .carousel-control-prev-icon::before {
  content: "\F12A";
  width: 100%;
  height: 100%;
  color: #000;
  top: 0;
  left: 0;
  font-family: "Bootstrap-icons";
} */

.carousel .base-img-cont img {
  opacity: 0.85;
}

.btn {
  padding: 0px 40px;
  font-weight: 600;
  line-height: 3;
  border-radius: 20px;
  text-align: left;
  width: fit-content;
  font-size: 14px;
  height: fit-content;
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.btn i.bi {
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.secondary .btn.btn-primary {
  background: var(--primary-bg);
  color: var(--primary-text);
}

.tertiary .btn.btn-primary {
  background: var(--primary-bg);
  color: var(--primary-text);
}
.btn:hover,
.btn.btn-primary:hover {
  background: var(--trans-dark-bg);
  color: var(--color-bg);
  padding: 0px 40px;
}
.dark .btn.btn-primary:hover {
  background: var(--white-bg);
  color: var(--white-text);
}

.btn:hover i.bi,
.btn.btn-primary:hover i.bi {
  margin-left: 5px;
}
.justify-self-end {
  justify-self: flex-end;
  display: flex;
  flex: 1;
  position: relative;
  align-self: flex-start;
  width: fit-content;
  margin: 0;
  padding: 0;
  justify-content: end;
}

header .socials,
header ul.socials {
  padding: 0;
}

ul.socials li {
  height: 45px;
  /* background: var(--secondary-bg); */
}
ul.socials li a {
  line-height: 45px;
  padding: 0px 12px;
  font-size: 14px;
}

.bf-af-mid-line-vertical::before {
  width: 2px;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: var(--grey-color);
}
.bf-af-mid-line-vertical::after {
  width: 2px;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: var(--secondary-bg);
}

.bf-af-mid-line-horizontal::before {
  width: 50%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: var(--grey-color);
}
.bf-af-mid-line-horizontal::after {
  width: 50%;
  height: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  background: var(--secondary-bg);
}

.btn.btn-primary {
  background: var(--secondary-bg);
  color: var(--secondary-text);
  border: none;
}
ul.content-attr li {
  font-size: 14px;
}

ul.content-attr li span {
  font-weight: 400;
  font-style: italic;
}
ul.content-attr li i.bi {
  font-size: 20px;
  color: var(--anchor-default);
}

div.product-box {
  height: 400px;
}

div.banner-box {
  height: 100%;
}
div.news-box {
  height: 350px;
}

div.small-box {
  height: 250px;
}
div.banner-box.ex {
  width: 50%;
}
div.banner-box.norm {
  width: 25%;
}
div.headshot {
  height: 310px;
  overflow: hidden;
}

div.headshot img {
  filter: grayscale(1);
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

div.profile-container:hover div.headshot img {
  filter: none;
  transform: scale(1.1);
}
.box-half,
div.box-half,
span.box-half {
  height: 50px;
}

.box-1,
div.box-1,
span.box-1 {
  height: 100px;
}

.box-2,
div.box-2,
span.box-2 {
  height: 200px;
}

.box-3,
div.box-3,
span.box-3 {
  height: 300px;
}

.box-4,
div.box-4,
span.box-4 {
  height: 400px;
}

.box-5,
div.box-5,
span.box-5 {
  height: 500px;
}

.box-6,
div.box-6,
span.box-6 {
  height: 600px;
}

.box-7,
div.box-7,
span.box-7 {
  height: 700px;
}

i.max-icon {
  font-size: 10rem;
}

i.mid-icon {
  font-size: 5rem;
}

i.min-icon {
  font-size: 2rem;
}

.h-200-max {
  max-height: 200px;
}
.h-300-max {
  max-height: 300px;
}
.h-400-max {
  max-height: 400px;
}
.max-height,
img.max-height {
  width: auto;
  max-width: none;
  height: 100%;
}

footer p {
  font-size: 13px;
}
footer ul li {
  margin-bottom: 5px;
}

.thumbnail,
div.thumbnail {
  height: 150px;
  overflow: hidden;
}

.thumbnail img,
div.thumbnail img {
  width: 100%;
  height: intrinsic;
  flex: 0 0 auto;
  display: flex;
}

p.sm-p {
  font-size: 14px;
  line-height: 1.25;
}

.gutter-1 {
  padding-right: 15px;
}
.gutter-1:last-child {
  padding: 0;
}

.flex-no-wrap,
div.flex-no-wrap,
section.flex-no-wrap {
  flex-direction: row;
  flex-wrap: nowrap;
}

.border,
div.border,
section.border,
span.border {
  border: 1px solid #eee;
  border-radius: 4px;
}
.border-bottom-primary {
  border-bottom: 1px solid var(--primary-bg);
}
.border-bottom-secondary {
  border-bottom: 1px solid var(--secondary-bg);
}
.border-bottom-tertiary {
  border-bottom: 1px solid var(--tertiary-bg);
}
.border-bottom-substitute {
  border-bottom: 1px solid var(--substitute-bg);
}
.border-bottom-dark {
  border-bottom: 1px solid var(--dark-bg);
}
.border-bottom-grey {
  border-bottom: 1px solid var(--grey-bg);
}
.border-left {
  border-left: 1px solid rgba(0, 0, 0, 0.25);
}

.boxes-decor {
  width: 100px;
  height: 100px;
  background: transparent;
  border: 2px solid var(--secondary-bg);
  border-radius: 5px;
  position: absolute;
  overflow: visible;
  z-index: -1;
}

.boxes-decor::before {
  content: "";
  background: transparent;
  width: 60px;
  height: 60px;
  border: 3px solid var(--substitute-bg);
  border-radius: 5px;
  position: absolute;
  top: -30px;
  left: -30px;
}
.boxes-decor::after {
  content: "";
  background: transparent;
  width: 70px;
  height: 70px;
  border: 4px solid var(--grey-bg);
  border-radius: 7px;
  position: absolute;
  bottom: -25px;
  right: -25px;
}
.align-center,
.boxes-decor.align-center {
  justify-self: center;
  align-self: center;
  flex: 0 0 auto;
  display: flex;
}

.boxes-decor.justify-center {
  margin: 0% 45%;
}
.base-align,
.boxes-decor.base-align {
  bottom: 0;
}
.top-align,
.boxes-decor.top-align {
  top: 0;
}
.right-align,
.boxes-decor.right-align {
  right: 0;
}

.base-img-cont.left-align {
  justify-content: flex-start;
}

.base-img-cont.right-align {
  justify-content: flex-end;
}

.border-right-radius {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.border-left-radius {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.capitalize,
p.capitalize,
span.capitalize,
li.capitalize,
h1.capitalize,
h2.capitalize,
h3.capitalize,
h4.capitalize,
h5.capitalize,
h6.capitalize {
  text-transform: capitalize;
}
.show-mobile {
  display: none;
}

.breadcrumb li,
.breadcrumb li a {
  background: none;
  padding: 0px;
  margin: 0px;
}
.breadcrumb li {
  margin-right: 7px;
}

.breadcrumb li:hover,
.breadcrumb li a:hover {
  background: none;
  padding: 0;
  color: var(--accent-bg);
}

.menu-box,
div.menu-box {
  position: fixed;
  z-index: 99999;
  top: 0;
  background: var(--primary-bg);
  height: 100%;
  color: var(--primary-text);
  justify-content: flex-start;
  align-items: start;
  overflow: hidden;
  overflow-y: auto;
  right: -100%;
}
.menu-box img.dropdown-logo {
  height: 60px;
  width: auto;
  flex: 0 0 auto;
}

.menu-box .container {
  margin: 0%;
  width: 100%;
  padding: 0;
}

.menu-box .container .header {
  border-bottom: 1px solid var(--grey-bg);
}
.menu-box .container ul {
  margin: 0;
  padding: 0;
  width: 100%;
}

.menu-box .container,
.menu-box .container li a {
  justify-content: space-between;
  line-height: 2.3;
  width: 100%;
}

.menu-box a {
  font-weight: 600;
}

i.menuBar {
  font-size: 35px;
  margin: 20px auto;
  display: flex;
  flex: 0 0 auto;
  color: var(--gradient-dark-trans-text);
}
nav.navbar ul li.menuBar {
  display: none;
  padding: 0px 8px;
}

span.icon-custom {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url(../images/sliders/icon.png);
  background-size: contain;
  display: flex;
}
span.icon-custom.icon-bottom-left {
  bottom: 0;
  left: 0;
}
span.icon-custom.icon-bottom-right {
  bottom: 0;
  right: 0;
}
span.icon-custom.icon-mid-center {
  bottom: 45%;
  right: 46.5%;
}

.shw-menu,
.menu-box.shw-menu,
div.menu-box.shw-menu {
  right: 0%;
}

.cls-menu {
  color: var(--secondary-text);
  font-size: 22px;
  padding: 0px;
  cursor: pointer;
  position: relative;
  display: flex;
  flex: 0 0 auto;
  width: 50px;
  line-height: 4;
  margin: 7px;
  align-items: center;
  height: 50px;
  background: var(--secondary-bg);
  border-radius: 50px;
  justify-content: center;
}

.cls-menu:hover {
  transform: rotate(360deg);
}

@media (max-width: 1120px) {
  nav.navbar ul li a,
  footer ul li a {
    padding: 0px 10px;
  }
}

@media (max-width: 1080px) {
  .nav-container {
    display: none;
  }
  h1 {
    font-size: 4.3rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.2rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.8rem;
  }
  p {
    font-size: 0.75rem;
  }

  .dropdown-logo {
    height: 40px;
    width: auto;
    margin: 10px;
  }

  .banner-box,
  .banner-box.ex,
  .banner-box.norm,
  div.banner-box,
  div.banner-box.ex,
  div.banner-box.norm {
    width: 100%;
  }
  nav.navbar ul li a,
  footer ul li a,
  nav.navbar ul li a:hover,
  footer ul li a:hover {
    padding: 0px 8px;
    font-size: 12px;
  }
  header nav.navbar li.no-bg {
    display: none;
  }
  nav.navbar ul li.menuBar {
    display: flex;
  }
  .h-200-max,
  .h-300-max,
  .h-400-max {
    height: auto !important;
    max-height: none;
  }
  .h-200-max .h-100,
  .h-300-max .h-100,
  .h-400-max .h-100 {
    height: auto !important;
  }
  i.menuBar {
    font-size: 35px;
    margin: 8px auto;
  }

  nav.navbar ul li.menuBar {
    display: flex;
    background: var(--tertiary-bg);
  }
  .hide-mobile,
  div.hide-mobile,
  .boxes-decor.hide-mobile {
    display: none !important;
  }
  .show-mobile {
    display: flex;
  }
  section.main-banner .carousel-inner {
    height: 350px;
  }
  span.hint {
    display: none;
  }
}

@media (max-width: 840px) {
  .bg-picture-cont {
    min-height: 300px;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.95rem;
  }
  p,
  p.sm-p {
    font-size: 1rem;
    line-height: 1.25;
  }
  .p-5 {
    padding: 1.2rem !important;
  }
  .carousel-item .slider-caption {
    margin-left: 0%;
  }

  i.max-icon {
    font-size: 5rem;
  }
  i.mid-icon {
    font-size: 2.5rem;
  }
  i.min-icon {
    font-size: 0.8rem;
  }
  .boxes-decor {
    width: 40px;
    height: 40px;
  }
  .boxes-decor::after,
  .boxes-decor::before {
    width: 30px;
    height: 30px;
  }

  .boxes-decor::before {
    top: -15px;
    left: -15px;
  }
  .boxes-decor::after {
    bottom: -15px;
    right: -15px;
  }
  .logo-cont {
    width: auto;
    padding: 0px 0px;
    justify-content: start;
  }
  .logo,
  img.logo {
    height: 45px;
    width: auto;
  }
  footer .logo-cont {
    margin-bottom: 10px;
  }
  .main-banner {
    max-height: 420px;
  }
  .carousel-item {
    display: none;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
  }
  .carousel-item img {
    width: auto !important;
    height: 100%;
    max-width: none;
    max-width: none;
    flex: 0 0 auto;
    display: flex !important;
  }
  .carousel-item img.set-wide {
    width: 100% !important;
  }
  .carousel-control-next,
  .carousel-control-prev {
    height: 80px;
    width: 80px;
  }
  .carousel-control-prev {
    bottom: 80px;
  }
  div.small-box {
    height: 120px;
  }
  div.small-box p {
    display: none;
  }
  .mb-5 {
    margin-bottom: 1rem !important;
  }
  nav.navbar ul li a,
  footer ul li a {
    margin: 0 0px;
    padding: 0;
  }
  .border-left {
    border: none;
  }
  div.product-box {
    height: auto;
  }
  .pattern-bg::before {
    width: 50vw;
    right: -55vw;
  }
  .pattern-bg::after {
    width: 40vw;
    left: -50vw;
  }
  .row.indicator-container-row {
    height: 40px;
  }
}

@media (max-width: 640px) {
  section.main-banner .carousel-inner {
    height: 245px;
  }
  .btn {
    padding: 0px 20px;
  }

  section.main-banner .carousel-inner .carousel-caption p {
    display: none;
  }
  .max-height,
  img.max-height {
    width: 100%;
    height: auto;
  }

  footer h5 {
    margin-top: 15px;
  }
}
