html {
  scroll-behavior: smooth;
}

main {
  position: relative;
  z-index: 2;
}

/*
Colors
**************
*/
body {
  background: #171c51;
}

/*
Font Import & Family
***********
*/
@font-face {
  font-family: "industrybold";
  src: url("../fonts/industry-bold.woff") format("woff"), url("../fonts/industry-bold.woff2") format("woff2"), url("../fonts/industry-bold-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*
Line Heights
**************
*/
/*
Root Font Size
***********
*/
html {
  font-size: 16px;
}

body {
  color: #000000;
  font-family: "carosregular", sans-serif;
}

/*
Font Sizes
***********
*/
h1 {
  color: white;
  font-family: "industrybold";
  font-size: clamp(1.9rem, 4.2vw, 4.2rem);
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  color: white;
  text-wrap: balance;
  font-family: "industrybold";
  font-size: clamp(1.6rem, 3.2vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-wrap: balance;
}

h3 {
  color: white;
  font-family: "industrybold";
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  line-height: 1;
}

h4 {
  text-transform: uppercase;
  color: white;
  font-family: "industrybold";
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1;
}

h5 {
  text-transform: uppercase;
  color: white;
  font-family: "industrybold";
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  line-height: 1;
}

h6 {
  color: white;
  font-family: "carosregular", sans-serif;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1;
  font-family: "carosregular", sans-serif;
  font-weight: 300;
}

a {
  color: white;
  font-family: "carosregular", sans-serif;
  font-size: clamp(0.85rem, 1.1vw, 1.2rem);
}

p,
input {
  color: white;
  font-family: "carosregular", sans-serif;
  font-size: clamp(0.85rem, 1.1vw, 1.2rem);
  line-height: 1.2;
}

/*
Font Weights
**************
*/
/*
Breakpoints and Containers
***********
*/
.container {
  margin: 0 auto;
  padding: 0;
  width: calc(100% - 40px);
}
@media (min-width: 414px) {
  .container {
    width: calc(100% - 60px) !important;
  }
}
@media (min-width: 768px) {
  .container {
    width: calc(100% - 100px) !important;
  }
}
@media (min-width: 1024px) {
  .container {
    width: calc(100% - 50px) !important;
  }
}
@media (min-width: 1352px) {
  .container {
    width: calc(100% - 150px) !important;
  }
}
@media (min-width: 1900px) {
  .container {
    width: calc(100% - 300px) !important;
  }
}

.container-padding {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container-padding {
    padding: 0 50px;
  }
}
@media (min-width: 1024px) {
  .container-padding {
    padding: 0 50px;
  }
}
@media (min-width: 1352px) {
  .container-padding {
    padding: 0 150px;
  }
}
@media (min-width: 1900px) {
  .container-padding {
    padding: 0 300px;
  }
}

.left-padding {
  padding-left: 20px;
}
@media (min-width: 768px) {
  .left-padding {
    padding-left: 50px;
  }
}
@media (min-width: 1024px) {
  .left-padding {
    padding-left: 50px;
  }
}
@media (min-width: 1352px) {
  .left-padding {
    padding-left: 150px;
  }
}
@media (min-width: 1900px) {
  .left-padding {
    padding-left: 300px;
  }
}

/*
Border Radius
***********
*/
strong,
b {
  color: #ffe204;
}

/*
Border Radius
***********
*/
/*
Transitions
***********
*/
/*
Transitions
***********
*/
.wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .wrap {
    gap: 2.5rem;
  }
}
@media (min-width: 1352px) {
  .wrap {
    gap: 3rem;
  }
}

/*
Bold
***********
*/
.bold {
  font-family: "carosregular", sans-serif;
  font-weight: 900;
}

/*
Top Margin
***********
*/
.top-margin {
  margin-top: 100px;
}
@media (min-width: 1024px) {
  .top-margin {
    margin-top: 150px;
  }
}

/*
Padding Classes
***********
*/
.padding {
  padding: 3rem 0;
}
@media (min-width: 1024px) {
  .padding {
    padding: 4rem 0;
  }
}
@media (min-width: 1352px) {
  .padding {
    padding: 5rem 0;
  }
}
@media (min-width: 1900px) {
  .padding {
    padding: 6rem 0;
  }
}

.top-padding {
  padding: 3rem 0 0 0;
}
@media (min-width: 1024px) {
  .top-padding {
    padding: 4rem 0 0 0;
  }
}
@media (min-width: 1352px) {
  .top-padding {
    padding: 5rem 0 0 0;
  }
}
@media (min-width: 1900px) {
  .top-padding {
    padding: 6rem 0 0 0;
  }
}

.bottom-padding {
  padding: 0 0 3rem 0;
}
@media (min-width: 1024px) {
  .bottom-padding {
    padding: 0 0 4rem 0;
  }
}
@media (min-width: 1352px) {
  .bottom-padding {
    padding: 0 0 5rem 0;
  }
}
@media (min-width: 1900px) {
  .bottom-padding {
    padding: 0 0 6rem 0;
  }
}

/*
Image Wrapper Class
***********
*/
.imgWrap {
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #ffe204;
}
.imgWrap img,
.imgWrap iframe,
.imgWrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*
EMBLA DOTS
***********
*/
.embla__dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.embla__dot {
  width: 20px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.embla__dot.is-active,
.embla__dot.is-selected {
  background: #ffe204;
  transform: scale(1.2);
}

/*
Shadow
***********
*/
.shadow-lg {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

/*
Card
***********
*/
.article {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  background: #f3f3f3;
  border-radius: 10px;
}
@media (min-width: 1024px) {
  .article {
    padding: 0.75rem;
  }
}
.article .content,
.article .text {
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 1rem;
}
@media (min-width: 1352px) {
  .article .content,
  .article .text {
    padding: 1.5rem 1rem;
  }
}
.article .content h3,
.article .text h3 {
  font-family: "carosregular", sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
}
@media (min-width: 1024px) {
  .article .content h3,
  .article .text h3 {
    font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  }
}
.article .content h4,
.article .text h4 {
  font-family: "carosregular", sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
}

/*
background
***********
*/
.bg {
  background-color: white; /* base color */
  background-color: #fff;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.025) 1px, transparent 1px, transparent 26px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.025) 1px, transparent 1px, transparent 26px);
}
@media (min-width: 1024px) {
  .bg {
    background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.025) 1px, transparent 1px, transparent 52px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.025) 1px, transparent 1px, transparent 52px);
  }
}

.bg-red {
  background: #ffe204;
  background-image: url(../img/red-lines.svg);
  background-position: center;
  background-size: cover;
}

/*
Text Link
***********
*/
.text-link {
  color: #ffe204;
  font-family: "carosregular", sans-serif;
}

/*
Tags
***********
*/
.tag,
.red-tag {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1;
  gap: 0.5rem;
  width: fit-content;
  border-radius: 999999px;
  text-transform: uppercase;
  color: white;
}
.tag svg,
.red-tag svg {
  margin-top: 0.1rem;
}

.red-tag {
  background: #ffe204;
  color: white;
}

/*
top overlay
***********
*/
.head {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .head {
    width: 100%;
    max-width: 750px;
  }
}
@media (min-width: 1352px) {
  .head {
    gap: 2rem;
    max-width: 1000px;
  }
}
.head p {
  text-wrap: balance;
  z-index: 5;
  color: white;
}
@media (min-width: 1024px) {
  .head p {
    width: 100%;
  }
}
.head .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .head .buttons {
    gap: 1rem;
    flex-direction: row;
  }
}
.head .title {
  position: relative;
  display: inline-block;
}
.head .title .back-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 800;
  white-space: nowrap;
  font-size: 6rem;
  color: transparent;
  -webkit-text-stroke: 1px #ffe204;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 1024px) {
  .head .title .back-title {
    font-size: 8rem;
  }
}
@media (min-width: 1352px) {
  .head .title .back-title {
    font-size: 12rem;
  }
}
.head .title .front-title {
  position: relative;
  z-index: 2;
  color: #fff;
}

/*
top overlay
***********
*/
.top-margin {
  margin-top: 70px;
}
@media (min-width: 1024px) {
  .top-margin {
    margin-top: 80px;
  }
}
@media (min-width: 1352px) {
  .top-margin {
    margin-top: 90px;
  }
}

.top-overlay {
  margin-top: -100px;
}
@media (min-width: 768px) {
  .top-overlay {
    margin-top: -100px;
  }
}
@media (min-width: 1024px) {
  .top-overlay {
    margin-top: -150px;
  }
}
@media (min-width: 1352px) {
  .top-overlay {
    margin-top: -175px;
  }
}
@media (min-width: 1900px) {
  .top-overlay {
    margin-top: -250px;
  }
}

.style-guide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.style-guide .flex {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.embla__prev,
.embla__next {
  border-radius: 999999px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #ffe204;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.embla__prev {
  left: 0px;
}

.embla__next {
  right: 0px;
}

.embla__prev:disabled,
.embla__next:disabled {
  opacity: 0;
  cursor: not-allowed;
}

.btn {
  width: fit-content;
  padding: 1rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #000626;
  color: #171c51;
  line-height: 0.8;
  font-family: "industrybold";
  border: 0;
  color: white;
  transition: 0.2s ease all;
  text-transform: uppercase;
  border: 2px solid #ffe204;
}
.btn:hover {
  background: #ffe204;
  color: #171c51;
  transform: translateY(-3px);
}
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12), 0 0 0 2px rgba(255, 226, 4, 0.2);
}

/*
Reset CSS
***********
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

:root {
  font-size: 16px;
}

body {
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

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

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

button,
a {
  cursor: pointer;
}

#root,
#__next {
  isolation: isolate;
}

header {
  background: #171c51;
  position: fixed;
  top: 0;
  z-index: 9;
  width: 100%;
  border-bottom: 2px solid #ffe204;
}
header .navWrap {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 1024px) {
  header .navWrap {
    height: 80px;
    gap: 1.5rem;
    border-radius: 15px;
    background: #171c51;
    padding: 25px 0px;
  }
}
@media (min-width: 1352px) {
  header .navWrap {
    height: 90px;
    gap: 2rem;
    padding: 35px 0px;
  }
}
header .navWrap .custom-logo {
  display: block;
  position: relative;
  z-index: 5;
  width: 150px;
  height: auto;
}
@media (min-width: 768px) {
  header .navWrap .custom-logo {
    width: 175px;
  }
}
@media (min-width: 1024px) {
  header .navWrap .custom-logo {
    width: 200px;
  }
}
@media (min-width: 1352px) {
  header .navWrap .custom-logo {
    width: 225px;
  }
}
@media (min-width: 1900px) {
  header .navWrap .custom-logo {
    width: 250px;
  }
}
header .navWrap .navMenu {
  background: #171c51;
  padding: 25px;
  padding-top: 85px;
  height: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  transition: 0.2s ease all;
  width: 100%;
  left: -100%;
  z-index: 1;
}
@media (min-width: 414px) {
  header .navWrap .navMenu {
    gap: 3rem;
    padding-top: 100px;
  }
}
@media (min-width: 768px) {
  header .navWrap .navMenu {
    padding: 115px 50px 50px;
  }
}
@media (min-width: 1024px) {
  header .navWrap .navMenu {
    position: static;
    width: auto;
    height: auto;
    flex-direction: row;
    background: none;
    padding: 0;
    margin-left: auto;
  }
}
header .navWrap .navMenu nav {
  width: 100%;
}
header .navWrap .navMenu nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  header .navWrap .navMenu nav ul {
    flex-direction: row;
    gap: 2.5rem;
  }
}
@media (min-width: 1352px) {
  header .navWrap .navMenu nav ul {
    gap: 4rem;
  }
}
header .navWrap .navMenu nav ul li {
  position: relative;
  display: inline-flex;
  align-items: center;
}
header .navWrap .navMenu nav ul li a {
  text-transform: uppercase;
  color: white;
  font-family: "industrybold";
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
}
@media (min-width: 1024px) {
  header .navWrap .navMenu nav ul li a {
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  }
}
header .navWrap .navMenu nav ul li:hover > a {
  color: #ffe204;
}
header .navWrap .navMenu nav ul li .sub-menu {
  display: none;
}
@media (min-width: 1024px) {
  header .navWrap .navMenu nav ul li .sub-menu {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    background: #171c51;
    gap: 0;
    min-width: 200px;
    border-top: 2px solid #ffe204;
    display: none;
    z-index: 20;
  }
}
header .navWrap .navMenu nav ul li .sub-menu li {
  width: 100%;
}
header .navWrap .navMenu nav ul li .sub-menu li a {
  padding: 1rem 1.5rem;
  color: white;
  background: none;
  text-transform: none;
  white-space: nowrap;
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
}
@media (min-width: 1024px) {
  header .navWrap .navMenu nav ul li .sub-menu li a {
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  }
}
header .navWrap .navMenu nav ul li .sub-menu li a:hover {
  color: #ffe204;
}
header .navWrap .navMenu nav ul li.is-open > .sub-menu {
  display: flex;
}
@media (min-width: 1024px) {
  header .navWrap .navMenu nav ul li:last-of-type a {
    background: #ffe204;
    color: #171c51;
    padding: 1rem 1.5rem;
    line-height: 0.8;
  }
}
header .navWrap .navMenu.is-active {
  left: 0;
}
@media (min-width: 1024px) {
  header .navWrap .menuToggle {
    display: none;
  }
}
header .navWrap .menuToggle .hamburger {
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 6;
}
header .navWrap .menuToggle .hamburger:before,
header .navWrap .menuToggle .hamburger:after {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  background: white;
  margin: 8px auto;
  transition: 0.2s ease all;
}
header .navWrap .menuToggle .hamburger.is-active:before {
  transform: rotate(-45deg) translate(-4px, 5px);
}
header .navWrap .menuToggle .hamburger.is-active:after {
  transform: rotate(45deg) translate(-4px, -5px);
}

footer {
  border-top: 2px solid #ffe204;
  padding: 2.5rem 0;
  background: #000626;
  top: 0;
  z-index: 9;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
footer .navWrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  footer .navWrap {
    flex-direction: row;
    justify-content: space-between;
    border-radius: 15px;
  }
}
@media (min-width: 1352px) {
  footer .navWrap {
    gap: 2rem;
  }
}
footer .navWrap .custom-logo {
  display: block;
  position: relative;
  z-index: 5;
  width: 150px;
  height: auto;
}
@media (min-width: 768px) {
  footer .navWrap .custom-logo {
    width: 175px;
  }
}
@media (min-width: 1024px) {
  footer .navWrap .custom-logo {
    width: 200px;
  }
}
@media (min-width: 1352px) {
  footer .navWrap .custom-logo {
    width: 225px;
  }
}
@media (min-width: 1900px) {
  footer .navWrap .custom-logo {
    width: 250px;
  }
}
footer .navWrap nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  footer .navWrap nav {
    width: auto;
  }
}
footer .navWrap nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  footer .navWrap nav ul {
    height: 50px;
    gap: 2.5rem;
    flex-direction: row;
  }
}
@media (min-width: 1352px) {
  footer .navWrap nav ul {
    gap: 4rem;
  }
}
footer .navWrap nav ul li {
  transition: 0.2s ease all;
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
footer .navWrap nav ul li:hover a {
  color: #ffe204;
}
footer .navWrap nav ul li:hover .contact {
  color: #171c51;
}
footer .navWrap nav ul li a {
  text-transform: uppercase;
  color: white;
  font-family: "industrybold";
  font-size: clamp(0.85rem, 1.1vw, 1.2rem);
}
@media (min-width: 1024px) {
  footer .navWrap nav ul li a {
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  }
}
@media (min-width: 1024px) {
  footer .navWrap nav ul li:last-of-type a {
    background: #ffe204;
    color: #171c51;
    padding: 1rem 1.5rem;
    line-height: 0.8;
  }
}
footer .navWrap nav .sub-menu {
  display: none;
}
footer .bottom-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  footer .bottom-wrap {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
footer .bottom-wrap p {
  opacity: 0.5;
  text-align: center;
}
@media (min-width: 1024px) {
  footer .bottom-wrap p {
    text-align: left;
    width: 75%;
  }
}
@media (min-width: 1024px) {
  footer .bottom-wrap p:last-of-type {
    text-align: right;
    width: 25%;
  }
}

.top-section-alt,
.top-section-news {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #ffe204;
  background-image: url(../img/red-lines.svg);
  background-position: center;
  background-size: cover;
}
.top-section-alt .top-wrap,
.top-section-news .top-wrap {
  color: white;
}
.top-section-alt .top-wrap p,
.top-section-news .top-wrap p {
  color: white;
}

.top-section-news {
  padding: 7rem 0 5rem 0;
}
@media (min-width: 1024px) {
  .top-section-news {
    padding: 9rem 0 7rem 0;
  }
}
@media (min-width: 1352px) {
  .top-section-news {
    padding: 10rem 0 8rem 0;
  }
}

.top-section-alt {
  padding: 6rem 0 10rem 0;
}
@media (min-width: 768px) {
  .top-section-alt {
    padding: 7rem 0 10rem 0;
  }
}
@media (min-width: 1024px) {
  .top-section-alt {
    padding: 9rem 0 14rem 0;
  }
}
@media (min-width: 1352px) {
  .top-section-alt {
    padding: 10rem 0 16rem 0;
  }
}
@media (min-width: 1900px) {
  .top-section-alt {
    padding: 10rem 0 20rem 0;
  }
}

.top-section-platform {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background: #dd1120;
  background: linear-gradient(180deg, rgb(221, 17, 32) 0%, rgb(127, 4, 13) 100%);
  padding: 6rem 0 0rem 0;
}
@media (min-width: 768px) {
  .top-section-platform {
    gap: 6rem;
    height: auto;
    padding: 7rem 0 0rem 0;
  }
}
@media (min-width: 1024px) {
  .top-section-platform {
    gap: 4rem;
    padding: 9rem 0 0rem 0;
  }
}
@media (min-width: 1352px) {
  .top-section-platform {
    gap: 6rem;
    padding: 10rem 0 0rem 0;
  }
}
@media (min-width: 1900px) {
  .top-section-platform {
    gap: 8rem;
    padding: 12rem 0 0rem 0;
  }
}
.top-section-platform .head {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .top-section-platform .head {
    width: 100%;
    max-width: 750px;
  }
}
@media (min-width: 1352px) {
  .top-section-platform .head {
    gap: 2rem;
    max-width: 1200px;
  }
}
@media (min-width: 1900px) {
  .top-section-platform .head {
    gap: 2.5rem;
  }
}
.top-section-platform .head p {
  z-index: 5;
  color: white;
}
@media (min-width: 1024px) {
  .top-section-platform .head p {
    width: 100%;
    max-width: 550px;
  }
}
@media (min-width: 1352px) {
  .top-section-platform .head p {
    max-width: 700px;
  }
}
.top-section-platform .head h5 {
  z-index: 5;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.1vw, 1.2rem);
}
@media (min-width: 1024px) {
  .top-section-platform .head h5 {
    width: 100%;
    max-width: 750px;
    font-size: clamp(1.2rem, 2vw, 2rem);
  }
}
@media (min-width: 1352px) {
  .top-section-platform .head h5 {
    max-width: 900px;
  }
}
@media (min-width: 1900px) {
  .top-section-platform .head h5 {
    max-width: 1100px;
  }
}
.top-section-platform .head .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .top-section-platform .head .buttons {
    gap: 1rem;
    flex-direction: row;
  }
}
.top-section-platform .head .title {
  width: 100%;
  position: relative;
}
.top-section-platform .head .title .back-title {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  white-space: nowrap;
  font-weight: 800;
  font-size: 6rem;
  color: transparent;
  -webkit-text-stroke: 2px #ffe204;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 1024px) {
  .top-section-platform .head .title .back-title {
    font-size: 8rem;
    -webkit-text-stroke: 2.5px #ffe204;
  }
}
@media (min-width: 1352px) {
  .top-section-platform .head .title .back-title {
    font-size: 12rem;
    -webkit-text-stroke: 3px #ffe204;
  }
}
.top-section-platform .head .title .front-title {
  position: relative;
  z-index: 2;
  color: #fff;
}
.top-section-platform .orbit-container {
  margin-top: 525px;
  width: 1100px;
  height: 1100px;
  position: relative;
  z-index: 8;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .top-section-platform .orbit-container {
    margin-top: 0;
    margin-bottom: -1250px;
    width: 1500px;
    height: 1500px;
  }
}
@media (min-width: 1352px) {
  .top-section-platform .orbit-container {
    margin-top: 0;
    width: 2500px;
    height: 2500px;
    margin-bottom: -2200px;
  }
}
@media (min-width: 1900px) {
  .top-section-platform .orbit-container {
    margin-top: 0;
    width: 3000px;
    height: 3000px;
    margin-top: 0px;
    margin-bottom: -2500px;
  }
}
.top-section-platform .orbit-container .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  border-radius: 50%;
  border: 2px dashed #ffe204;
  transform: translate(-50%, -50%);
  animation: rotateRing linear infinite;
}
.top-section-platform .orbit-container .ring.ring-inner {
  z-index: 9;
  width: 750px;
  height: 750px;
  background: linear-gradient(90deg, rgb(221, 17, 32) 20%, rgb(127, 4, 13) 80%);
  animation-duration: 250s;
  --orbit-radius: calc(750px / 2);
}
@media (min-width: 768px) {
  .top-section-platform .orbit-container .ring.ring-inner {
    width: 1200px;
    height: 1200px;
    --orbit-radius: calc(1200px / 2);
  }
}
@media (min-width: 1352px) {
  .top-section-platform .orbit-container .ring.ring-inner {
    width: 2100px;
    height: 2100px;
    --orbit-radius: calc(2100px / 2);
  }
}
@media (min-width: 1900px) {
  .top-section-platform .orbit-container .ring.ring-inner {
    width: 2400px;
    height: 2400px;
    --orbit-radius: calc(2400px / 2);
  }
}
.top-section-platform .orbit-container .ring.ring-middle {
  background: linear-gradient(90deg, rgb(221, 17, 32) 20%, rgb(127, 4, 13) 80%);
  width: 900px;
  height: 900px;
  z-index: 7;
  animation-direction: reverse;
  animation-duration: 250s;
  --orbit-radius: calc(900px / 2);
}
@media (min-width: 768px) {
  .top-section-platform .orbit-container .ring.ring-middle {
    width: 1350px;
    height: 1350px;
    --orbit-radius: calc(1350px / 2);
  }
}
@media (min-width: 1352px) {
  .top-section-platform .orbit-container .ring.ring-middle {
    width: 2300px;
    height: 2300px;
    --orbit-radius: calc(2300px / 2);
  }
}
@media (min-width: 1900px) {
  .top-section-platform .orbit-container .ring.ring-middle {
    width: 2700px;
    height: 2700px;
    --orbit-radius: calc(2700px / 2);
  }
}
.top-section-platform .orbit-container .ring.ring-outer {
  background: linear-gradient(90deg, rgb(221, 17, 32) 20%, rgb(127, 4, 13) 80%);
  width: 1050px;
  height: 1050px;
  z-index: 5;
  animation-duration: 250s;
  --orbit-radius: calc(1050px / 2);
}
@media (min-width: 768px) {
  .top-section-platform .orbit-container .ring.ring-outer {
    width: 1500px;
    height: 1500px;
    --orbit-radius: calc(1500px / 2);
  }
}
@media (min-width: 1352px) {
  .top-section-platform .orbit-container .ring.ring-outer {
    width: 2500px;
    height: 2500px;
    --orbit-radius: calc(2500px / 2);
  }
}
@media (min-width: 1900px) {
  .top-section-platform .orbit-container .ring.ring-outer {
    width: 3000px;
    height: 3000px;
    --orbit-radius: calc(3000px / 2);
  }
}
.top-section-platform .orbit-container .ring .planet {
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  border: 1px solid white;
  overflow: hidden;
  border-radius: 999999px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999;
  pointer-events: auto;
  transform: translate(-50%, -50%) rotate(calc(var(--i) * 360deg / var(--total-planets))) translateX(var(--orbit-radius));
  transform-origin: center center;
}
@media (min-width: 1024px) {
  .top-section-platform .orbit-container .ring .planet {
    border: 2px solid white;
    width: 60px;
  }
}
@media (min-width: 1352px) {
  .top-section-platform .orbit-container .ring .planet {
    width: 70px;
  }
}
@media (min-width: 1900px) {
  .top-section-platform .orbit-container .ring .planet {
    width: 100px;
  }
}
.top-section-platform .orbit-container .ring .planet a {
  display: block;
  width: 100%;
  height: 100%;
}
.top-section-platform .orbit-container .ring .planet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  transform: rotate(90deg);
}
.top-section-platform .top-right,
.top-section-platform .top-left {
  pointer-events: none;
}
@keyframes rotateRing {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotateRing {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.fourOfour {
  height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  color: white;
  background: #ffe204;
}
@media (min-width: 768px) {
  .fourOfour {
    height: calc(100vh - 140px);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .fourOfour {
    height: calc(100vh - 185px);
    gap: 2rem;
  }
}
.fourOfour h1 {
  font-family: "carosregular", sans-serif;
  font-size: 8rem;
  line-height: 8rem;
}
@media (min-width: 768px) {
  .fourOfour h1 {
    font-size: 12rem;
    line-height: 12rem;
  }
}
@media (min-width: 1900px) {
  .fourOfour h1 {
    font-size: 20rem;
    line-height: 20rem;
  }
}
.fourOfour h3 {
  font-family: "carosregular", sans-serif;
  font-size: 1rem;
  line-height: 1.4rem;
  width: 80%;
  text-align: center;
}
@media (min-width: 768px) {
  .fourOfour h3 {
    width: 60%;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}

.intro {
  position: relative;
  margin-top: 70px;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .intro {
    margin-top: 80px;
    height: calc(100vh - 80px);
  }
}
@media (min-width: 1352px) {
  .intro {
    margin-top: 90px;
    height: calc(100vh - 90px);
  }
}
.intro .intro_wrap {
  height: 100%;
}
.intro .intro_wrap .embla {
  height: 100%;
  overflow: hidden;
}
.intro .intro_wrap .embla__viewport {
  height: 100%;
}
.intro .intro_wrap .embla__container {
  display: flex;
  height: 100%;
}
.intro .intro_wrap .embla__slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  opacity: 0.3;
  transition: opacity 0.4s ease;
  will-change: opacity;
}
.intro .intro_wrap .embla__slide.is-selected {
  opacity: 1;
}
.intro .intro_wrap .intro_slide {
  display: flex;
  flex-direction: column;
  height: auto;
}
@media (min-width: 1024px) {
  .intro .intro_wrap .intro_slide {
    flex-direction: row;
  }
}
.intro .intro_wrap .intro_content {
  order: 2;
  background: #000626;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 1rem;
  width: 100%;
  height: auto;
  text-align: center;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .intro .intro_wrap .intro_content {
    padding: 5rem;
  }
}
@media (min-width: 1024px) {
  .intro .intro_wrap .intro_content {
    order: 1;
    gap: 1.5rem;
    width: 50%;
    padding: 0 25px;
    text-align: left;
    align-items: flex-start;
  }
}
@media (min-width: 1352px) {
  .intro .intro_wrap .intro_content {
    padding: 0 50px 0 75px;
  }
}
@media (min-width: 1900px) {
  .intro .intro_wrap .intro_content {
    padding-left: 150px;
  }
}
.intro .intro_wrap .intro_content .btn {
  margin-top: 0.5rem;
}
.intro .intro_wrap .intro_image {
  order: 1;
  width: 100%;
}
@media (min-width: 1024px) {
  .intro .intro_wrap .intro_image {
    order: 2;
    width: 50%;
    height: 100%;
  }
}
.intro .intro_wrap .intro_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about {
  width: 100%;
}
.about .about_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .about .about_wrap {
    flex-direction: row;
    gap: 3rem;
  }
}
@media (min-width: 1352px) {
  .about .about_wrap {
    gap: 4rem;
  }
}
@media (min-width: 1024px) {
  .about .about_wrap .head {
    text-align: left;
    align-items: flex-start;
    width: 50%;
  }
}
@media (min-width: 1352px) {
  .about .about_wrap .head p {
    width: 80%;
  }
}
.about .about_wrap .stats {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .about .about_wrap .stats {
    width: 50%;
    gap: 1rem;
  }
}
.about .about_wrap .stats .stat {
  border-bottom: 2px solid #ffe204;
  padding: 1.5rem;
  background: #000626;
  width: calc(50% - 0.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .about .about_wrap .stats .stat {
    width: calc(50% - 0.5rem);
    gap: 1rem;
    padding: 2rem;
  }
}
@media (min-width: 1352px) {
  .about .about_wrap .stats .stat {
    padding: 4rem 2rem;
  }
}
.about .about_wrap .stats .stat h2 {
  color: #ffe204;
}

.services {
  width: 100%;
  overflow: hidden;
}
.services .services_wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .services .services_wrap {
    gap: 3rem;
  }
}
.services .services_wrap .head {
  align-items: flex-start;
  text-align: left;
}
.services .services_wrap .service_list {
  position: relative;
}
.services .services_wrap .embla__viewport {
  width: 100%;
}
.services .services_wrap .embla__container {
  display: flex;
  gap: 1.5rem;
}
.services .services_wrap .embla__slide {
  flex: 0 0 80%;
}
@media (min-width: 1024px) {
  .services .services_wrap .embla__slide {
    flex: 0 0 35%;
  }
}
@media (min-width: 1352px) {
  .services .services_wrap .embla__slide {
    flex: 0 0 30%;
  }
}
.services .services_wrap .service {
  aspect-ratio: 1/1;
  background: #000626;
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid #ffe204;
  padding: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  color: #fff;
}
@media (min-width: 1024px) {
  .services .services_wrap .service {
    padding: 2rem;
  }
}
.services .services_wrap .service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000626;
  background: linear-gradient(0deg, rgb(0, 6, 38) 0%, rgba(0, 6, 38, 0) 100%);
  transition: background 0.3s ease;
  z-index: 1;
}
.services .services_wrap .service .service_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  gap: 1rem;
}
.services .services_wrap .service h3 {
  margin: 0;
}
.services .services_wrap .service .service_slide {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 60px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
}
.services .services_wrap .service .service_slide p {
  display: none;
}
@media (min-width: 1024px) {
  .services .services_wrap .service .service_slide .btn {
    margin-top: 0.5rem;
    align-self: flex-start;
  }
}
@media (min-width: 1024px) {
  .services .services_wrap .service .service_slide {
    max-height: 0;
    opacity: 0;
    transform: translateY(20px);
  }
  .services .services_wrap .service .service_slide p {
    display: block;
  }
}
@media (min-width: 1024px) {
  .services .services_wrap .service:hover .service_slide {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
  }
  .services .services_wrap .service:hover::before {
    background: rgba(0, 6, 38, 0.75);
  }
}

.products {
  background: #000626;
  width: 100%;
  overflow: hidden;
}
.products .products_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .products .products_wrap {
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .products .products_wrap .head {
    width: 100%;
    max-width: none;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.products .products_wrap .head .text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .products .products_wrap .head .text {
    text-align: left;
    align-items: flex-start;
    width: 100%;
    max-width: 750px;
  }
}
@media (min-width: 1352px) {
  .products .products_wrap .head .text {
    gap: 2rem;
    max-width: 1000px;
  }
}
.products .products_wrap .selectors {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.products .products_wrap .selectors .product-filter {
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}
.products .products_wrap .selectors .product-filter.active {
  color: #ffe204;
}
.products .products_wrap .product-showcase {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.25s ease;
}
@media (min-width: 1024px) {
  .products .products_wrap .product-showcase {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.products .products_wrap .product-showcase.is-loading {
  opacity: 0;
}
.products .products_wrap .product-showcase .product {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
  height: 100%;
  opacity: 0;
  transform: translateY(12px);
}
@media (min-width: 1024px) {
  .products .products_wrap .product-showcase .product {
    width: calc(25% - 1.25rem);
  }
}
.products .products_wrap .product-showcase .product.is-visible {
  animation: productFadeIn 0.35s ease forwards;
}
.products .products_wrap .product-showcase .product .imgWrap {
  aspect-ratio: 16/12;
}
.products .products_wrap .product-showcase .product .imgWrap img {
  object-position: bottom;
}
.products .products_wrap .product-showcase p {
  font-family: "industrybold";
  color: #ffe204;
}
.products .products_wrap .product-showcase h4 {
  margin: 0;
}
@keyframes productFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact {
  position: relative;
  background: url(../img/gun-bg.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 6, 38, 0.6); /* adjust opacity as needed */
  z-index: 1;
}
.contact .contact_wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact .contact_wrap {
    gap: 3rem;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .contact .contact_wrap .head {
    align-items: flex-start;
    text-align: left;
    width: 50%;
  }
}
.contact .contact_wrap .contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 2px solid #ffe204;
  background: #000626;
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  .contact .contact_wrap .contact-block {
    width: 50%;
    gap: 1.5rem;
    padding: 2rem;
  }
}
@media (min-width: 1352px) {
  .contact .contact_wrap .contact-block {
    gap: 2rem;
    padding: 2.5rem;
  }
}
.contact .contact_wrap .contact-block a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact .contact_wrap .contact-block a .text-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact .contact_wrap .contact-block a img {
  width: 20px;
}
.contact .contact_wrap .contact-block a .yellow {
  color: #ffe204;
}

#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#age-gate.active {
  opacity: 1;
  visibility: visible;
}
#age-gate.active .age-gate__box {
  transform: scale(1);
}
#age-gate.fade-out {
  opacity: 0;
  visibility: hidden;
}
#age-gate.fade-out .age-gate__box {
  transform: scale(0.95);
}
#age-gate .age-gate__box {
  display: flex;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 0 8px 4px rgba(255, 226, 4, 0.5);
  gap: 1rem;
  background: #171c51;
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  font-family: sans-serif;
  transform: scale(0.95);
  transition: transform 0.4s ease;
}
@media (min-width: 1024px) {
  #age-gate .age-gate__box {
    padding: 50px;
  }
}
#age-gate .age-gate__buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}
#age-gate #age-yes {
  background: #28a745;
  color: #fff;
}
#age-gate #age-no {
  background: #dc3545;
  color: #fff;
}

.products-page {
  background: #000626;
  width: 100%;
  overflow: hidden;
}
.products-page .products_wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .products-page .products_wrap {
    gap: 3rem;
  }
}
.products-page .products_wrap .selectors {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.products-page .products_wrap .selectors .product-filter {
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  font-family: "industrybold";
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}
.products-page .products_wrap .selectors .product-filter.active {
  color: #ffe204;
}
.products-page .products_wrap .product-showcase {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.25s ease;
}
@media (min-width: 1024px) {
  .products-page .products_wrap .product-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem 1.5rem;
  }
}
.products-page .products_wrap .product-showcase.is-loading {
  opacity: 0;
}
.products-page .products_wrap .product-showcase .product {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  gap: 1rem;
  height: 100%;
  opacity: 0;
  transform: translateY(12px);
}
.products-page .products_wrap .product-showcase .product.is-visible {
  animation: productFadeIn 0.35s ease forwards;
}
.products-page .products_wrap .product-showcase .product .imgWrap {
  aspect-ratio: 16/12;
  width: 100%;
  overflow: hidden;
}
.products-page .products_wrap .product-showcase .product .imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}
.products-page .products_wrap .product-showcase p {
  font-family: "industrybold";
  color: #ffe204;
  margin: 0;
}
.products-page .products_wrap .product-showcase h4 {
  margin: 0;
  word-break: break-word;
}
@keyframes productFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product {
  width: 100%;
}
.product .product_wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .product .product_wrap {
    gap: 2.5rem;
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (min-width: 1352px) {
  .product .product_wrap {
    gap: 3.5rem;
  }
}
@media (min-width: 1900px) {
  .product .product_wrap {
    gap: 4rem;
  }
}
.product .product_wrap .product_slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/12;
}
@media (min-width: 1024px) {
  .product .product_wrap .product_slider {
    position: sticky;
    top: 9rem;
    width: 50%;
  }
}
.product .product_wrap .product_slider .embla__viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.product .product_wrap .product_slider .embla__container {
  display: flex;
  height: 100%;
}
.product .product_wrap .product_slider .embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
  border-bottom: 2px solid #ffe204;
}
.product .product_wrap .product_slider .embla__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}
.product .product_wrap .product_content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  color: white;
}
@media (min-width: 1024px) {
  .product .product_wrap .product_content {
    width: 50%;
  }
}
.product .product_wrap .product_content .price {
  color: #ffe204;
}
.product .product_wrap .product_content ul {
  margin: 0;
  list-style: none;
}
.product .product_wrap .product_content ul li {
  font-size: clamp(0.85rem, 1.1vw, 1.2rem);
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .product .product_wrap .product_content ul li {
    padding-left: 1.5rem;
  }
}
.product .product_wrap .product_content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffe204;
}
.product .product_wrap .product_content ul li:last-child {
  margin-bottom: 0;
}
.product .product_wrap .product_content hr {
  margin: 1.5rem 0;
  width: 100%;
  border: 1px solid #ffe204;
}
@media (min-width: 1024px) {
  .product .product_wrap .product_content hr {
    margin: 2.5rem 0;
  }
}
.product .product_wrap .product_content .contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 2px solid #ffe204;
  background: #000626;
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  .product .product_wrap .product_content .contact-block {
    gap: 1.5rem;
    padding: 2rem;
  }
}
@media (min-width: 1352px) {
  .product .product_wrap .product_content .contact-block {
    gap: 2rem;
    padding: 2.5rem;
  }
}
.product .product_wrap .product_content .contact-block a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product .product_wrap .product_content .contact-block a .text-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product .product_wrap .product_content .contact-block a img {
  width: 20px;
}
.product .product_wrap .product_content .contact-block a .yellow {
  color: #ffe204;
}

.services-about {
  width: 100%;
  overflow: hidden;
}
.services-about .services_wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .services-about .services_wrap {
    gap: 3rem;
  }
}
.services-about .services_wrap .service {
  background: #000626;
  width: 100%;
  overflow: hidden;
  color: #fff;
}
@media (min-width: 768px) {
  .services-about .services_wrap .service {
    border-bottom: 2px solid #ffe204;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.services-about .services_wrap .service .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .services-about .services_wrap .service .content {
    padding: 2rem;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .services-about .services_wrap .service .content {
    gap: 1.5rem;
    padding: 2.5rem;
  }
}
@media (min-width: 1352px) {
  .services-about .services_wrap .service .content {
    padding: 3rem;
  }
}
@media (min-width: 1900px) {
  .services-about .services_wrap .service .content {
    padding: 4rem;
  }
}
.services-about .services_wrap .service .content h3 {
  margin: 0;
}
@media (min-width: 768px) {
  .services-about .services_wrap .service .imgWrap {
    border-bottom: 0;
    width: 50%;
    order: 2;
  }
}

.contact-about {
  position: relative;
  background: url(../img/gun-bg.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}
.contact-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 6, 38, 0.6); /* adjust opacity as needed */
  z-index: 1;
}
.contact-about .contact_wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-about .contact_wrap .head {
    display: flex;
    align-items: center;
    width: 50%;
    gap: 1rem;
  }
}
.contact-about .contact_wrap .contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 2px solid #ffe204;
  background: #000626;
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  .contact-about .contact_wrap .contact-block {
    flex-direction: row;
    width: auto;
    gap: 1.5rem;
    padding: 2rem;
  }
}
@media (min-width: 1352px) {
  .contact-about .contact_wrap .contact-block {
    width: 50%;
    gap: 2rem;
    padding: 2.5rem;
  }
}
.contact-about .contact_wrap .contact-block a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1352px) {
  .contact-about .contact_wrap .contact-block a {
    width: 50%;
  }
}
.contact-about .contact_wrap .contact-block a .text-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-about .contact_wrap .contact-block a img {
  width: 20px;
}
.contact-about .contact_wrap .contact-block a .yellow {
  color: #ffe204;
}

/*# sourceMappingURL=main.css.map */
