@font-face {
  font-family: "cal";
  src: url("fonts/Calgary.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("fonts/Outfit-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Glitten";
  src: url("fonts/Glitten-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kugile";
  src: url("fonts/Kugile.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}
*::before, *::after {
  transition: 0.1s linear;
}

body {
  font-family: "Outfit";
  background-color: #1d1d1d;
  margin: 0;
  padding: 0;
  color: #fff;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none;
}

.btn {
  transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear !important;
}

.sticky-top {
  position: sticky !important;
  top: 0;
}

.btn,
a {
  box-shadow: none;
  outline: none !important;
}
.btn:focus,
a:focus {
  box-shadow: none;
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  margin: 0;
}

a {
  text-decoration: none !important;
}

select:focus,
input:focus,
button:focus {
  box-shadow: none !important;
}

.wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.form-check-input:checked {
  background-color: #b3d300;
  border-color: #b3d300;
}

.title {
  color: #fff;
  font-size: calc(1.4vw + 1em);
  text-transform: capitalize;
  margin: 0 0 40px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 300;
  font-family: "Glitten";
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .title {
    font-size: 24px;
    gap: 5px;
    flex-wrap: wrap;
  }
}
.title span {
  position: relative;
  top: -1px;
  color: #b3d300;
  text-shadow: 3px 3px 1px rgba(0, 166, 149, 0.5);
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .title span {
    text-shadow: 2px 2px 1px rgba(0, 166, 149, 0.5);
  }
}

.nav-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px;
}
.nav-pills li {
  margin: 0;
  padding: 0;
}
.nav-pills li::before {
  display: none;
}
.nav-pills .nav-link {
  background-color: transparent;
  padding: 6px 14px 5px;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  color: #fff;
  display: flex;
  z-index: 5;
}
.nav-pills .nav-link span {
  position: relative;
  top: 0;
  left: 0;
  transition: 0.15s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.nav-pills .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #00a695;
  background-color: #009788;
  transition: 0.15s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: -1;
  border-radius: 0;
}
.nav-pills .nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 166, 149, 0.3);
  transition: 0.15s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: -2;
  opacity: 0;
}
.nav-pills .nav-link:hover {
  text-shadow: none;
}
.nav-pills .nav-link.active {
  color: #000;
  background-color: transparent;
  margin-left: -2px;
  margin-right: 2px;
}
.nav-pills .nav-link.active span {
  top: -2px;
  left: -2px;
}
.nav-pills .nav-link.active::before {
  background-color: #b3d300;
  top: -2px;
  left: -2px;
  border-radius: 5px;
}
.nav-pills .nav-link.active::after {
  top: 2px;
  left: 2px;
  opacity: 1;
}

.pagination {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}
.pagination li {
  margin: 0;
  padding: 0;
}
.pagination li::before {
  display: none;
}
.pagination a {
  padding: 5px 10px;
  display: inline-flex;
  transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3333333333);
}
.pagination a span {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  top: 0;
  left: 0;
  transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pagination a.active, .pagination a:hover {
  border-bottom: 1px solid #b3d300;
}
.pagination a.active span, .pagination a:hover span {
  color: #b3d300;
  text-shadow: 2px 2px 1px rgba(255, 230, 0, 0.2392156863);
  top: -2px;
  left: -2px;
}

.bulleted-list,
ul,
ol {
  margin: 0 0 30px;
  padding: 0;
}
.bulleted-list li,
ul li,
ol li {
  letter-spacing: 0.5px;
  font-size: 16px;
  color: #e1e0d0;
  font-weight: 200;
  font-size: 16px;
  position: relative;
  padding-left: 20px;
  margin: 0 0 10px;
}
.bulleted-list li strong,
.bulleted-list li b,
ul li strong,
ul li b,
ol li strong,
ol li b {
  font-weight: 600;
}
.bulleted-list li a,
ul li a,
ol li a {
  color: #fff;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3333333333);
  display: inline-block !important;
}
.bulleted-list li a span,
ul li a span,
ol li a span {
  position: relative;
  top: 0;
  left: 0;
}
.bulleted-list li a:hover,
ul li a:hover,
ol li a:hover {
  color: #b3d300;
  text-shadow: 1px 1px 1px #008a7e;
}
.bulleted-list li a:hover span,
ul li a:hover span,
ol li a:hover span {
  top: -1px;
  left: -1px;
}
.bulleted-list li::before,
ul li::before,
ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  height: 8px;
  width: 8px;
  background-color: #00a695;
  border-radius: 7px;
}

.alert.fade.in {
  opacity: 1;
}

.btn-primary {
  color: #000;
  padding: 12px 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  border-radius: 50px;
  position: relative;
  z-index: 10;
  align-items: center;
  gap: 9px;
  display: inline-flex;
  top: 0;
  left: 0;
  transition: 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
}
.btn-primary::before, .btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  transition: 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-primary.light::before {
  background-color: #dce2b4;
}
.btn-primary::before {
  z-index: -1;
  background-color: #b3d300;
}
.btn-primary::after {
  z-index: -2;
  border: 2px solid #00a695;
}
.btn-primary:hover {
  color: #000;
  top: -3px;
  left: -2px;
}
.btn-primary:hover::after {
  left: 2px;
  top: 3px;
}
.btn-primary.light:hover::before {
  background-color: #b3d300;
}
.btn-primary:focus {
  color: #000;
}

.btn-link {
  padding: 5px 1px;
  display: inline-flex;
  transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3333333333);
}
.btn-link span {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  position: relative;
  top: 0;
  left: 0;
  transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-link:hover {
  border-bottom: 1px solid transparent;
}
.btn-link:hover span {
  color: #b3d300;
  text-shadow: 3px 3px 1px rgba(255, 230, 0, 0.2392156863);
  top: -2px;
  left: -2px;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5019607843);
}

.modal-backdrop {
  backdrop-filter: blur(4px) !important;
}
.modal-backdrop.show {
  z-index: 1068 !important;
}

.modal-backdrop.show {
  opacity: 1 !important;
}

.modal-open {
  padding-right: 0 !important;
  overflow: initial !important;
}

.modal {
  padding-right: 0 !important;
  z-index: 1270 !important;
}
.modal .modal-dialog {
  margin-top: 100px;
}
.modal .modal-content {
  background-color: transparent;
}
.modal .modal-header {
  background-color: #00a695;
  border: none;
  padding: 0;
  border-radius: 6px;
}
.modal .modal-header h5 {
  color: #000;
  height: 50px;
  width: 100%;
}
.modal .modal-header h5 span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #b3d300;
  height: 50px;
  padding-inline: 15px;
  position: relative;
  top: -4px;
  left: -4px;
  border-radius: 5px;
}
.modal .modal-header .btn-close {
  position: absolute;
  font-size: 18px;
  margin: 0;
  padding: 0;
  text-shadow: none;
  top: 13px;
  right: 20px;
  height: 16px;
  width: 16px;
}
.modal .modal-header .btn-close:hover {
  opacity: 1;
}
.modal .modal-body {
  padding: 0;
  background-color: #1f2123;
}
.modal .modal-body .model-form {
  padding: 20px;
}
.modal .modal-body .btn-primary {
  width: 100%;
  justify-content: center;
}

.form-group {
  margin-bottom: 15px;
}
.form-group label {
  font-size: 14px;
  margin-top: 0;
  color: #fff;
}
.form-group .form-control {
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 300;
  background-color: #2b3032;
  color: #fff;
  box-shadow: none;
  height: 40px;
  border-radius: 4px;
  border-bottom: 1px solid #22484b;
}
.form-group .form-control:focus, .form-group .form-control:active {
  border-bottom: 1px solid #00a695;
}
.form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form-group textarea {
  height: auto !important;
}
.form-group .form-select {
  background-blend-mode: color-burn;
}

.form-check-input {
  height: 18px;
  width: 18px;
  background-color: #525960;
}
.form-check-input:checked {
  background-color: #009688;
  border-color: #009688;
}

/* Repeated logo text pattern with alternating row colors */
.pattern-text {
  --odd-color: #b3d30010; /* default matches $primary */
  --even-color: #00a69510; /* default matches $secondary */
  /* Fluid type controls (override per element if needed) */
  --min-font-size: 8px;
  --max-font-size: 32px;
  --fluid-scale: 8vw; /* 8% of viewport width */
  --row-height: 1lh;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  display: block;
  width: 140%;
  height: 120%;
  font-size: clamp(var(--min-font-size), var(--fluid-scale), var(--max-font-size));
  line-height: 1; /* edge-to-edge rows without overlap */
  white-space: normal;
  word-break: normal; /* do not break inside words */
  overflow-wrap: normal; /* avoid per-letter wrapping */
  hyphens: none;
  font-family: "Glitten";
  position: absolute;
  inset: 0;
  left: 50%;
  top: 50%;
  transform: translate(-20%, -40%) rotate(335deg) scale(1.5);
  text-transform: uppercase;
  background-image: repeating-linear-gradient(to bottom, var(--odd-color) 0, var(--odd-color) var(--row-height), var(--even-color) var(--row-height), var(--even-color) calc(var(--row-height) * 2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pattern-text.gray {
  --odd-color: #ffffff08;
  --even-color: #00000040;
}
@media (max-width: 991px) {
  .pattern-text {
    --fluid-scale: 3vw; /* 8% of viewport width */
  }
}

.success {
  background-color: rgba(30, 208, 0, 0.1098039216);
  padding: 20px 15px 1px;
  border-radius: 5px;
  border: 1px solid rgba(7, 255, 31, 0.568627451);
  max-width: 500px;
  margin: 0 auto 40px;
}
.success > * {
  color: #fff;
}

.warning {
  background-color: rgba(179, 160, 0, 0.1019607843);
  padding: 20px 15px 1px;
  border-radius: 5px;
  border: 1px solid rgba(255, 193, 7, 0.568627451);
  max-width: 500px;
  margin: 0 auto 40px;
}
.warning > * {
  color: #fff;
}

.sorry {
  background-color: rgba(192, 0, 52, 0.1098039216);
  padding: 20px 15px 1px;
  border-radius: 5px;
  max-width: 500px;
  margin: 0 auto 40px;
  border: 1px solid rgba(255, 7, 7, 0.568627451);
}
.sorry > * {
  color: #fff;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 100px 5vw;
  background-color: rgb(0, 0, 0);
  z-index: 1200;
  visibility: hidden;
  transform: scale(0.96);
  visibility: hidden;
  opacity: 0;
  transition: 0.15s cubic-bezier(0.28, 0.79, 1, 0.87);
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1199px) {
  .menu {
    padding: 100px 5vw 50px;
  }
}
.menu.vin {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.menu a {
  width: 100%;
  padding: 8px 0;
  font-size: 20px;
  display: block;
  color: #fff;
  transition: 0.13s cubic-bezier(0.47, 0, 0.745, 0.715);
  font-family: "Kugile";
}
.menu a:hover {
  color: #b3d300;
  text-shadow: 2px 2px 1px rgba(0, 166, 149, 0.75);
}
.menu span {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  font-size: 13px;
  display: block;
  text-transform: uppercase;
  color: #fff;
  transition: 0.13s cubic-bezier(0.47, 0, 0.745, 0.715);
}
@media (max-width: 1199px) {
  .menu span {
    width: 100%;
  }
}
.menu .dropLinks {
  position: relative;
  background-color: #b3d300;
  padding: 15px 10px;
  top: 100%;
  left: 0;
  min-width: 100%;
  min-width: auto;
  display: flex;
  flex-direction: column;
  transform-origin: top;
  transform: rotateX(90deg);
  visibility: hidden;
  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu .dropLinks a {
  padding: 5px 15px;
  width: 100%;
  white-space: nowrap;
}

.searchPallet {
  max-height: 100%;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 100px 5vw 30px;
  background-color: #161616;
  z-index: 1200;
  transform: scale(0.96);
  visibility: hidden;
  opacity: 0;
  transition: 0.15s cubic-bezier(0.28, 0.79, 1, 0.87);
}
.searchPallet::-webkit-scrollbar {
  width: 3px;
  background-color: transparent;
  position: absolute;
}
.searchPallet::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background: #b3d300;
  border: none;
}
.searchPallet::-webkit-scrollbar-track {
  background-color: transparent;
}
.searchPallet.sin {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.searchPallet h4 {
  margin: 10px 0;
  color: #b3d300;
  font-family: "Glitten";
}
.searchPallet .form-group {
  margin-bottom: 15px;
}
.searchPallet .form-group label {
  font-size: 14px;
  margin-top: 0;
  color: #fff;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.searchPallet .form-group > label {
  font-size: 16px;
  margin: 5px 0;
}
.searchPallet .checksGrid {
  margin-top: 10px;
  display: grid;
  grid-template: auto/repeat(auto-fit, minmax(160px, 1fr));
  grid-column-gap: 10px;
  grid-row-gap: 5px;
}
.searchPallet .checksGrid > label {
  grid-column: 1/-1;
  font-size: 16px;
  margin: 5px 0 3px !important;
}
.searchPallet .checksGrid input[type=checkbox] {
  cursor: pointer;
}
.searchPallet .checksGrid .span2 {
  grid-column: auto/span 2;
}
.searchPallet .rangesGrid {
  margin-top: 10px;
  display: grid;
  grid-template: auto/repeat(auto-fit, minmax(320px, 1fr));
  grid-column-gap: 10px;
  grid-row-gap: 5px;
  margin-bottom: 20px;
}
.searchPallet .rangesGrid label {
  font-size: 16px;
  margin: 5px 0 3px !important;
}
.searchPallet .rangesGrid label .text-warning {
  color: #b3d300;
  border: none !important;
  outline: none !important;
  padding: 0 5px;
  background-color: transparent;
}
.searchPallet .rangesGrid .rangeField {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  min-width: 320px;
}
.searchPallet .ui-widget.ui-widget-content {
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3333333333);
  height: 5px;
  width: calc(100% - 18px);
  margin: 7px auto 0;
}
.searchPallet .ui-state-default,
.searchPallet .ui-widget-content .ui-state-default {
  background: #b3d300;
  border: 1px solid #b3d300;
  border-radius: 10px;
  height: 12px;
  width: 12px;
  top: -4px;
}
.searchPallet .btn-default.solid {
  background-color: #b3d300;
  color: #fff;
  height: 50px;
  min-width: 200px;
  margin-top: 20px;
}
.searchPallet .ui-slider .ui-slider-range {
  background-color: #95af00;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1280;
  padding: 15px 0;
  background-color: transparent;
  transition: 0.15s cubic-bezier(0.28, 0.79, 1, 0.87);
}
.header.inner-h {
  background-color: rgb(0, 0, 0);
  backdrop-filter: blur(0px);
  padding: 0;
}
.header.inner-h .brand img {
  max-height: 69px;
}
@media (max-width: 1500px) {
  .header.inner-h .brand img {
    max-height: 64px;
  }
}
@media (max-width: 1199px) {
  .header.inner-h .brand img {
    max-height: 59px;
  }
}
@media (max-width: 767px) {
  .header.inner-h .brand img {
    max-height: 48px;
  }
}
.header.scrolled {
  background-color: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
  padding: 0;
}
.header.scrolled .brand img {
  max-height: 58px;
}
@media (max-width: 1500px) {
  .header.scrolled .brand img {
    max-height: 52px;
  }
}
@media (max-width: 1199px) {
  .header.scrolled .brand img {
    max-height: 47px;
  }
}
@media (max-width: 767px) {
  .header.scrolled .brand img {
    max-height: 42px;
  }
}
.header.dark {
  background-color: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
  padding: 0;
}
.header.dark .brand img {
  max-height: 58px;
}
@media (max-width: 1500px) {
  .header.dark .brand img {
    max-height: 52px;
  }
}
@media (max-width: 1199px) {
  .header.dark .brand img {
    max-height: 47px;
  }
}
@media (max-width: 767px) {
  .header.dark .brand img {
    max-height: 42px;
  }
}
.header .btn-toggle {
  border: none;
  box-shadow: none;
  padding: 35px 0;
}
@media (max-width: 767px) {
  .header .btn-toggle {
    padding: 28px 0;
  }
}
@media (min-width: 1661px) {
  .header .btn-toggle {
    display: none;
  }
}
.header .btn-toggle .line {
  height: 2px;
  width: 30px;
  background-color: #fff;
  position: relative;
  transition: 0.15s cubic-bezier(0.28, 0.79, 1, 0.87);
}
.header .btn-toggle .line::before {
  content: "";
  position: absolute;
  right: 0;
  top: -8px;
  height: 2px;
  width: 25px;
  background-color: #fff;
}
.header .btn-toggle .line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  height: 2px;
  width: 20px;
  background-color: #fff;
}
.header .btn-toggle:hover .line::before {
  width: 15px;
}
.header .btn-toggle:hover .line::after {
  width: 26px;
}
.header .btn-toggle.active .line {
  transform: rotate(45deg);
}
.header .btn-toggle.active .line::before {
  transform: rotate(-90deg);
  width: 30px;
  top: 0;
}
.header .btn-toggle.active .line::after {
  width: 26px;
  display: none;
}
.header .btn-search .fal {
  min-width: 22px;
  text-align: center;
}
.header .btn-search.d-none {
  margin-left: auto;
  margin-right: 10px;
}
@media (max-width: 1660px) {
  .header .btn-search.d-none {
    display: inline-flex !important;
  }
}
.header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
}
@media (max-width: 767px) {
  .header .wrapper {
    padding: 0 15px;
  }
}
.header .brand img {
  transition: 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 69px;
  width: auto;
}
@media (max-width: 1500px) {
  .header .brand img {
    max-height: 64px;
  }
}
@media (max-width: 1199px) {
  .header .brand img {
    max-height: 59px;
  }
}
@media (max-width: 767px) {
  .header .brand img {
    max-height: 54px;
  }
}
@media (max-width: 1660px) {
  .header .navs {
    display: none;
  }
}
.header .navs a {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  padding: 30px 15px;
  position: relative;
  display: inline-flex;
  top: 0;
  left: 0;
  transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
}
.header .navs a.active, .header .navs a:hover {
  color: #b3d300;
  text-shadow: 3px 3px 1px rgba(255, 230, 0, 0.2392156863);
  top: -2px;
  left: -2px;
}
.header .btn-search {
  color: #fff;
  font-size: 20px;
  padding: 30px 15px;
  position: relative;
  display: inline-flex;
  transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 1500px) {
  .header .btn-search {
    font-size: 17px !important;
  }
}
.header .drop {
  position: relative;
  display: inline-flex;
}
.header .drop:hover > a::before {
  left: 3px;
  opacity: 1;
}
.header .drop:hover > a::after {
  right: 3px;
  opacity: 1;
}
.header .drop:hover .dropLinks {
  transform: rotateX(0deg);
  visibility: visible;
}
.header .dropLinks {
  position: absolute;
  background-color: #b3d300;
  padding: 15px 10px;
  top: 100%;
  left: 0;
  min-width: 100%;
  min-width: auto;
  display: flex;
  flex-direction: column;
  transform-origin: top;
  transform: rotateX(90deg);
  visibility: hidden;
  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header .dropLinks a {
  padding: 7px 15px;
  width: 100%;
  white-space: nowrap;
}
.header .btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header .btns .btn {
  width: 100%;
}

.inner-h + div {
  padding-top: 80px;
}
@media (max-width: 1199px) {
  .inner-h + div {
    padding-top: 71px;
  }
}
@media (max-width: 576px) {
  .inner-h + div {
    padding-top: 57px;
  }
}

.footer {
  background-color: #000;
  padding: 65px 0 0;
}
.footer .wrapper {
  padding: 0px 5vw;
}
.footer h4 {
  color: #fff;
  font-size: 20px;
  text-transform: capitalize;
  line-height: 1.5;
  font-weight: 300;
  font-family: "Glitten";
  margin: 0px 0px 15px;
  position: relative;
  color: #b3d300;
  text-shadow: 2px 2px 1px rgba(0, 166, 149, 0.5);
  text-transform: capitalize;
}
.footer .finfo .f-logo {
  text-decoration: none;
}
.footer .finfo .f-logo img {
  height: 70px;
  width: auto;
  margin-bottom: 20px;
}
.footer .finfo .f-logo h3 {
  color: #fff;
  font-size: 28px;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.footer .finfo p {
  font-size: 12px !important;
  color: #ccc;
  margin: 0 0 15px;
  letter-spacing: 1px;
}
.footer .finfo .social {
  margin: 30px 0;
}
@media (max-width: 1199px) {
  .footer .finfo .social {
    margin: 15px 0;
  }
}
.footer .finfo .social a {
  text-decoration: none;
  color: #e4e4e4;
  font-size: 18px;
}
.footer .finfo .social a:hover {
  color: #b3d300;
}
.footer .finfo .social a ~ a {
  margin-left: 15px;
}
.footer .copy {
  border-top: 1px solid #111;
  padding: 15px 0;
  margin-top: 50px;
  font-size: 12px;
  color: #cccccc !important;
  text-align: center;
  letter-spacing: 1px;
}
.footer .copy p {
  margin: 0;
}
@media (max-width: 1199px) {
  .footer .quick-links {
    margin-bottom: 20px;
  }
}
.footer .quick-links a {
  display: inline-block;
  width: 100%;
  color: #a4a4a4;
  font-size: 15px;
  text-decoration: none;
  transition: 0.15s ease;
  position: relative;
  padding-left: 15px;
}
.footer .quick-links a::before {
  content: "";
  position: absolute;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  transition: 0.15s ease;
  width: 1px;
  background-color: #00a695;
}
.footer .quick-links a ~ a {
  margin-top: 10px;
}
.footer .quick-links a:hover {
  color: #fff;
}
.footer .quick-links a:hover::before {
  background-color: #b3d300;
}

.tapes {
  margin-bottom: 20px;
}
.tapes p {
  font-size: 14px !important;
  color: #909090;
  margin: 0 0 15px;
  padding-right: 50px;
}
.tapes .d-flex {
  gap: 15px;
  flex-wrap: wrap;
}
.tapes img {
  max-height: 76px;
  width: auto;
}

.instaGrid {
  padding: 0 0 50px;
}
.instaGrid .wrapper {
  padding: 15px 5vw;
}
.instaGrid .title {
  font-size: 28px;
  margin: 0;
}
.instaGrid .gridBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}
.instaGrid .gridBox .gridImg {
  position: relative;
  max-width: 10%;
  margin: 0;
}
@media (max-width: 767px) {
  .instaGrid .gridBox .gridImg {
    max-width: 20%;
  }
}
.instaGrid .gridBox .gridImg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  object-position: center -20px;
}