*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0px;
  /*adds 0 space on all sides*/
  font-family: "Noto Sans", sans-serif;
  overflow-x: hidden;
  background-color: #000000;
}

html {
  scroll-behavior: smooth;
  /*adds smooth scrolling when using navigation instead if instant teleport :)*/
  /* u can assign this ti personal element if choose ?? w3cschool :)*/
}

:root {
  --text-white: #fff;
  --text-gray: #7c7d81;
  --text-red: #bf272e;
  --text-red-light: #ff3f3f;
  --text-black: #000;
  --text-gold: #ea9f3a;
  --text-brown: #7a3b14;
  --text-header: #38290d;
}

/***********
    ASSETS FONTS
************/
@font-face {
  font-family: "norse"; /*a name to be used later*/
  src: url("/assets/fonts/Norse.otf"); /*URL to font*/
}
@font-face {
  font-family: "norsebold"; /*a name to be used later*/
  src: url("/assets/fonts/Norsebold.otf"); /*URL to font*/
}
@font-face {
  font-family: "opensans"; /*a name to be used later*/
  src: url("/assets/fonts/OpenSans_VF.ttf"); /*URL to font*/
}

h1 {
  color: var(--text-gold);
  /* font-size: 72px; */
  font-size: 5.625rem;
  line-height: 1em;
  font-weight: 600;
  /* letter-spacing: -2px; */
  font-family: "norse", sans-serif;
  margin: 0;
}
h2 {
  color: var(--text-gold);
  font-size: 2.75rem;
  line-height: 1.1em;
  font-weight: 600;
  /* letter-spacing: -2px; */
  font-family: "norse", sans-serif;
  margin: 0;
}

h3 {
  color: var(--text-white);
  font-size: 30px;
  line-height: 1.1em;
  font-weight: 600;
  /* letter-spacing: -2px; */
  font-family: "gothicb", sans-serif;
  margin: 0;
}
h4 {
  color: var(--text-white);
  font-size: 22px;
  line-height: 1.1em;
  font-weight: 600;
  /* letter-spacing: -2px; */
  font-family: "gothicb", sans-serif;
  margin: 0;
}
h5 {
  color: var(--text-gold);
  /* font-size: 72px; */
  font-size: 7.5rem;
  line-height: 1em;
  font-weight: 600;
  /* letter-spacing: -2px; */
  font-family: "norse", sans-serif;
  margin: 0;
}
.text-ordinary-over {
  color: var(--text-white);
  font-size: 22px;
  line-height: 1.2em;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-family: "opensans", sans-serif;
  margin: 0;
}
.text-ordinary-big {
  color: var(--text-white);
  font-size: 1.5625rem;
  line-height: 1.2em;
  font-weight: bold;
  letter-spacing: 0.1px;
  font-family: "norse", sans-serif;
  margin: 0;
}
.text-ordinary {
  color: var(--text-white);
  font-size: 18px;
  line-height: 1.2em;
  font-weight: bold;
  letter-spacing: 0.1px;
  font-family: "opensans", sans-serif;
  margin: 0;
}
.text-ordinary-small {
  color: var(--text-white);
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 300;
  letter-spacing: 0.1px;
  font-family: "opensans", sans-serif;
  margin: 0;
}
.text-ordinary-small-norse {
  color: var(--text-white);
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: 3px;
  font-family: "norse", sans-serif;
  margin: 0;
}
.text-ordinary-brown {
  color: var(--text-brown);
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: 0.1px;
  font-family: "norse", sans-serif;
  margin: 0;
}
.text-shadow-white {
  text-shadow: 1px 1px 1px white;
}
.text-ordinary-white {
  color: var(--text-white);
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 300;
  letter-spacing: 0.1px;
  font-family: "opensans", sans-serif;
  margin: 0;
}
.text-ordinary-grey {
  color: #d4d4d4;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 300;
  letter-spacing: 0.1px;
  font-family: "opensans", sans-serif;
  margin: 0;
}
.font-size-12 {
  font-size: 12px !important;
}
.text-absolute-bold {
  position: absolute;
  top: 45%;
  left: 50%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-white);
  transform: translate(-50%, -50%);
}
.text-center     {
  margin: auto;
}
.text-white {
  color: var(--text-white);
}

/***********
    BODY and 1CONTAINER
************/
.bodycolor {
  /* -webkit-backface-visibility: hidden;
  backface-visibility: hidden; */
  background-color: #FFF;
}

.container {
  position: relative;
}

.w-1920 {
  max-width: 1920px;
}
.w-1320 {
  max-width: 1320px;
  margin: auto;
}
.w-1180 {
  max-width: 1180px;
  margin: auto;
}
.bg-size {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 3;
  position: relative;
  justify-content: center;
  margin: auto;
}
.background {
  position: relative;
  max-height: 100vh;
  height: 100vh;
  max-width: 1920px;
}
.backgroundImg {
  position: absolute;
  background-image: url("/images/bg1.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  max-height: 100vh;
  height: 100vh;
  max-width: 1920px;
  top: 0;
  left: 0;
  right: 0;
}
.backgroundImg-1 {
  position: absolute;
  background-image: url("/images/bg2.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  max-height: 100%;
  height: 100%;
  max-width: 1920px;
  top: 0;
  left: 0;
  right: 0;
}
.bg-middle {
  background-image: url(/images/cover-frame.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  max-width: 1045px;
  max-height: 605px;
  width: 100%;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.text-container {
  max-width: 800px;
  padding: 20px;
}
.button-top-holder {
  display: flex;
  flex-direction: row;
  position: unset;
}
.bg-circle {
  background-image: url('/images/frame2_fixed2.png'); /* Replace with actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /*height: 200px;  Full screen height */
  /* width: fit-content; */
  position: relative;
  display: flex;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  height: 300px;
  width: 300px;
}
.bg-middle-left {
  background-image: url(/images/cover-1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 150px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: -13%;
  transform: translate(0%, -50%);
}
.bg-middle-right {
  background-image: url(/images/cover-3.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 220px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: -16%;
  transform: translate(0%, -50%);
}
.bg-middle-spear {
  background-image: url(/images/cover-2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  width: 200px;
  position: absolute;
  top: -15%;
  right: -8%;
}


.backgroundImg1 {
  background-image: url("/images/bg3.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  max-width: 1920px;
}
.backgroundBoxImg3 {
  position: relative;
  background-image: url(/images/feature-frame.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  height: 500px;
  width: 100%;
  z-index: 3;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.backgroundBoxImg3:hover {
  background-image: url(/images/feature-frame-hover.png);
}
.text-container-features {
  max-width: 300px;
}
.backgroundImg4 {
  background-image: url(/images/bg4.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1920px;
}
.container {
  overflow: hidden;
}

.hide-row {
  display: flex;
}

.mw-30 {
  max-width: 30%;
}
.w-600 {
  max-width: 600px;
}
.w-800 {
  max-width: 800px;
}
.w-900 {
  position: relative;
  max-width: 900px;
}
.w-auto {
  width: auto;
}
.w-fit-content {
  width: fit-content;
}
.h-fit-content {
  height: fit-content;
}

.transform-scale-6 {
  transform: scale(0.6);
}
.transform-scale-7 {
  transform: scale(0.7);
}
.transform-scale-8 {
  transform: scale(0.8);
}
.padding-top-100 {
  padding-top: 100px;
}
.padding-bottom-100 {
  padding-bottom: 100px;
}
.padding-top-150 {
  padding-top: 150px;
}
.padding-bottom-150 {
  padding-bottom: 150px;
}
.padding-top-200 {
  padding-top: 200px;
}
.padding-bottom-200 {
  padding-bottom: 200px;
}
.pad-top-10 {
  padding-top: 10px;
}
.remove-a {
  text-decoration: none;
}
.cursor-pointer {
  cursor: pointer;
}

.padding-25 {
  padding: 0 25px;
}

/*****
LOGO
*****/
.logo-container {
  display: flex;
  position: absolute;
  justify-content: center;
  padding: 20px 0;
  height: 350px;
  align-self: center;
  top: -4%;
  left: 50%;
  transform: translate(-50%, -41%);
}
.logo-header {
  /* max-height: 180px;
    height: auto; */
  /* width: 100%; */
  /* max-width: 100%;
    height: auto; */
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.img-row img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}
.header-pad {
  padding: 20px 20px;
}
.header-line {
  background-image: url(/images/line.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 4px;
  width: 100%;
  position: absolute;
  display: flex;
  bottom: -1px;
  left: 0;
  right: 0;
}
.header-line-top {
  background-image: url(/images/line.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 4px;
  width: 100%;
  position: absolute;
  display: flex;
  top: -1px;
  left: 0;
  right: 0;
}

.footer {
  background-color: var(--text-header);
  background: var(--text-header);
  padding: 50px;
}

.img-height {
  max-height: fit-content !important;
}

.logo-container-small {
  display: inline-block;
  position: relative;
  width: fit-content;
}

.logo-container-small img {
  max-width: 400px;
  height: auto;
}
/* Updated style for the gradient line with centered image */
.gradient-line-container {
  position: relative;
  height: 2px;
  margin: 20px 0;
  display: flex;
  justify-content: center;
}
.gradient-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 70%;
  background: linear-gradient(
    to right,
    rgba(128, 128, 128, 0),
    rgba(128, 128, 128, 1) 50%,
    rgba(128, 128, 128, 0) 100%
  );
}
.gradient-line-black {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 70%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.1),
    rgb(0 0 0) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.gradient-line-container-full {
  position: relative;
  height: 1px;
  margin: 10px 0;
  display: flex;
  justify-content: center;
}
.gradient-line-full {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(128, 128, 128, 0),
    rgba(128, 128, 128, 1) 10%,
    rgba(128, 128, 128, 1) 90%,
    rgba(128, 128, 128, 0) 100%
  );
}
.gradient-line-full-full {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 0.5px;
  width: 100%;
  background: #3d3d3d;
}
.line-center-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: black; */
  padding: 0 10px;
  z-index: 1;
}
.line-center-img img {
  /* max-width: 100px;
    max-height: 100px; */
  border-radius: 50%;
}

/*****
    BUTTON
*****/
.button-play {
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--text-white);
}
.button-play:hover {
  cursor: pointer;
  color: var(--text-gold);
  border: 2px solid var(--text-gold);
}

.bg-button {
  background-image: url(/images/btn.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 80px;
  width: 350px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -5%;
  left: 30%;
  transform: translate(-50%, 7%);
  cursor: pointer;
}
.bg-button:hover {
  background-image: url(/images/btn-hover.png);
}
/* PRELOAD IMG SO IT DOESNT FLICKER */
.bg-button::before {
  content: url(/images/btn-hover.png);
  visibility: hidden;
  position: absolute;
  height: 0;
  width: 0;
  overflow: hidden;
}
.bg-button-right {
  background-image: url(/images/btn.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 80px;
  width: 350px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -5%;
  right: 30%;
  transform: translate(50%, 7%);
  cursor: pointer;
}
.bg-button-right:hover {
  background-image: url(/images/btn-hover.png);
}
.bg-button-holder {
  background-image: url(/images/btn.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 80px;
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.bg-button-holder:hover {
  background-image: url(/images/btn-hover.png);
}

/* *************
 1 container
************ */
.bg-img-container {
  display: flex;
  height: 100%;
  /* width: fit-content; */
  z-index: 4;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/**** LINE SPLITER *****/

/* *************
 2 container
************ */

.container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  /* padding-top: 10px; */
  padding: 0;
}
.backgroundBoxImg1 {
  position: relative;
  background-image: url(/images/frame1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  height: 450px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* max-height: 300px; */
  /* max-height: 322px; */
}
.backgroundBoxImg1:hover {
  background-image: url(/images/frame1-hover.png);
}
.backgroundBoxImg2 {
  position: relative;
  background-image: url(/images/feature-frame.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  height: 300px;
  width: 63%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* max-height: 300px; */
  /* max-height: 322px; */
}
.backgroundBoxImg2:hover {
  background-image: url(/images/feature-frame-hover.png);
}
.backgroundBoxImg5 {
  position: relative;
  background-image: url(/images/frame4.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  height: 300px;
  width: 300px;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.backgroundBoxImg5:hover {
  background-image: url(/images/frame4-hover.png);
}
.backgroundBoxImg6 {
  position: relative;
  height: 300px;
  width: 100%;
  background-color: #000;
  background: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px;
  display: flex;
}
.imagebox {
  position: absolute;
  width: 100%;
  max-height: 90%!important;
}
.image-frame {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: #000;
  background: #000;
}
.image-center {
  margin-top: 20px;
  position: relative;
  width: 90px;
  height: 90px;
}

.image-center-big {
  position: relative;
  width: 150px;
  z-index: 6;
}
.z-index-6 {
  position: relative;
  z-index: 6;
}
.image-three-box {
  position: absolute;
  max-width: 400px;
  max-height: 525px;
  height: 100%;
  width: 100%;
  /* left: 9px; */
  /* right: 0; */
  /* height: 50%; */
  /* justify-self: center; */
  /* display: flex; */
  top: 1%;
  /* bottom: 0; */
  /* transform: translate(0%, 0%); */
  z-index: 1;
}
.bottom-box {
  position: absolute;
  text-align: center;
  width: 70%;
  bottom: -35%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
}
.image-bg-center {
  position: relative;
  width: 150px;
}
.image {
  width: 100%;
}
.left-middle {
  position: absolute;
  top: 50%;
  left: -20%;
  transform: translate(-40%, -20%);
}
.left-top {
  position: absolute;
  top: -40%;
  left: -25%;
  transform: translate(0%, -10%);
}
.left-down {
  position: absolute;
  bottom: 0%;
  transform: translate(-40%, -20%);
}
.left-middle .image-bg-center {
  width: 75px;
}
.right-middle .image-bg-center {
  width: 65px;
}
.left-down .image-bg-center{
  width: 140px;
}
.right-middle {
  position: absolute;
  top: 50%;
  right: -20%;
  transform: translate(40%, -20%);
}
.right-top {
  position: absolute;
  top: -40%;
  right: -25%;
  transform: translate(0%, -10%);
}
.bottom-left {
  position: absolute;
  bottom: -60%;
  left: -10%;
  transform: translate(0%, 20%);
}
.bottom-top {
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translate(-50%, -10%);
}
.bottom-right {
  position: absolute;
  bottom: -60%;
  right: -10%;
  transform: translate(0%, 20%);
}

.b-black {
  background-color: #000;
}
.box-black {
  padding: 20px;
  background-color: #000;
  border: 1px solid gray;
  text-align: center;
  margin: 1rem;
}


/***************
    3 container
****************/
.gold-coins {
  position: relative;
  width: 100%;
  flex-direction: column;
  display: flex;
  justify-content: start;
  padding-top: 150px;
  padding-bottom: 20px;
  border-bottom: 2px solid #FFF;
}

.width-50 {
  width: 50%;
}
.button-position-right {
  width: 100%;
  justify-content: end;
  text-align: end;
  display: flex;
  height: 100px;
  position: relative;
}
.margin-top-200 {
  margin-top: 200px!important;
}
.margin-top-100 {
  margin-top: 100px;
}
.margin-bottom-300 {
  margin-bottom: 300px!important;
}
.margin-bottom-200 {
  margin-bottom: 200px!important;
}
.margin-bottom-100 {
  margin-bottom: 100px;
}
.margin-box-200 {
  margin-top: 200px;
}
.margin-box-100 {
  margin-top: 100px;
}

.behind-box {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translate(-50%, -35%);
  font-size: 180px;
}

/* ********************* */
.bt-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.bt-holder-footer {
  display: flex;
  flex-direction: row;
  margin: auto;
  justify-content: center;
  align-items: center;
}

.img-cn {
  position: relative;
}
.img-cn-circle {
  position: relative;
  width: 350px;
}
.img-cn-small {
  position: relative;
  width: 300px;
}
.text-absolute {
  position: absolute;
  top: 75%;
  left: 35%;
  font-size: 16px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.text-absolute1 {
  position: absolute;
  top: 65%;
  left: 25%;
  font-size: 12px;
  width: 130px;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
}
.text-absolute2 {
  position: absolute;
  top: 70%;
  font-size: 12px;
  width: 130px;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
}
.overlay-left-right {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.3) 90%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 0;
}
.overlay-left-right-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.1) 10%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.1) 90%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 2;
}

.yt-img {
  height: 20px !important;
  width: 30px !important;
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
}
.image-center-box {
  position: absolute;
  left: 0;
  right: 0;
  top: 200px;
  bottom: 0;
  height: fit-content;
  z-index: 1;
}
.z-index-2 {
  position: relative;
  z-index: 2;
}

/***************
    footer container
****************/
.image-left-footer {
  position: absolute;
  left: 0%;
  top: 0;
  height: fit-content;
  z-index: 1;
}
.image-right-footer {
  position: absolute;
  right: 0%;
  top: 0;
  height: fit-content;
  z-index: 1;
}

.add-margin-top-5 {
  margin-top: 80px;
}

.jce {
  justify-content: end;
}
.jcs {
  justify-content: start;
}

.ml-14 {
  margin-left: -14px;
}

.separator {
  color: gray;
}

.footerboxmiddle {
  display: flex;
  flex-direction: row;
  align-content: center;
  flex-wrap: wrap;
  justify-content: space-around;
  /* max-width: 80%; */
  text-align: center;
  align-self: center;
  justify-self: center;
}

@media screen and (max-width: 1430px) {
  .container.backgroundImg1.padding-top-200.padding-bottom-100 {
    padding-top: 100px;
  }
  .left-top {
    display: none;
  }
  .left-middle {
    display: none;
  }
  .right-top {
    display: none;
  }
  .right-middle {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  h1 {
    font-size: calc(3rem + 1.5vw)!important;
  }
  .bg-middle {
    width: 750px;
  }
  .bg-button {
    height: 60px;
    bottom: 10%;
  }
  .bg-button-right {
    height: 60px;
    bottom: 10%;
  }
  .image-left-footer {
    display: none;
  }
  .image-right-footer {
    display: none;
  }
  .image-left-box {
    left: -10%;
  }
  .image-right-box {
    right: -10%;
  }
  .backgroundBoxImg6 {
    height: 400px;
    width: 400px;
  }
  .backgroundBoxImg1 {
    height: 400px;
  }
  .margin-box-200 {
    margin-top: 0px;
  }
  .margin-box-100 {
    margin-top: 50px;
  }
  .logo-container {
    height: 300px;
    align-self: center;
    top: 11%;
    left: 50%;
    transform: translate(-50%, -41%);
  }
  .behind-box h1 {
    font-size: 5.625rem!important;
  }
}
@media screen and (max-width: 992px) {
  
  .hide-row {
    display: none;
  }
  .image-left-box {
    left: -25%;
  }
  .image-right-box {
    right: -25%;
  }

  .add-margin-top-5 {
    margin-top: 0;
  }
  .backgroundBoxImg6 {
    height: 400px;
    width: 400px;
  }
  .bg-middle {
    height: 400px;
  }
  .text-container {
    max-width: 600px;
  }
  .bg-middle-spear {
    display: none;
  }
  .bg-middle-right {
    display: none;
  }
  .bg-middle-left {
    display: none;
  }
  .logo-container {
    height: 250px;
    align-self: center;
    top: -4%;
    left: 50%;
    transform: translate(-50%, -41%);
  }
  .bg-button-right {
    height: 50px;
    bottom: -5%;
  }
  .bg-button {
    height: 50px;
    bottom: -5%;
  }
  .width-50 {
    width: 100%;
  }
  .gold-coins {
    border-bottom: none;
    padding-top: 50px;
    padding-bottom: 150px
  }
  .gold-coins .justify-content-start {
    width: unset!important;
    display: flex;
    justify-content: center!important;
    flex-direction: column;
    text-align: center;
  }
  .gold-coins .justify-content-start p { text-align: center!important;width: unset!important; }
  .gold-coins .justify-content-start h1 { text-align: center!important; }
  .button-position-right  {
    justify-content: center!important;
  }
  .backgroundImg4 {
    top: 60%;
    z-index: 0;
  }
  .backgroundBoxImg6 {
    height: 300px;
    width: 300px;
  }
}

@media screen and (max-width: 768px) {
  /* .bg-size {
        height: 75vh;
} */
  .width-50 {
    width: 100%;
    margin-bottom: 50px;
  }
  .gold-coins .justify-content-start {
    width: unset;
  }
  .bg-middle {
    width: unset;
    background-image: none;
  }
  .backgroundImg {
    background-size: cover;
  }
  span .seperator {
    display: none;
  }
  .jce {
    display: none !important;
  }
  .jcs {
    display: none !important;
  }
  .small-line {
    display: none;
  }
  .image-left-box {
    left: -60%;
  }
  .image-right-box {
    right: -60%;
  }
  .logo-container {
    height: 250px;
    align-self: center;
    top: -10%;
    left: 50%;
    transform: translate(-50%, -41%);
  }
  .bt-holder {
    flex-direction: column;
    align-items: center;
  }
  .backgroundBoxImg6 {
    height: 250px;
    width: 250px;
  }
  .bg-circle {
    height: 150px;
    width: 150px;
  }
  .bottom-top {
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translate(-50%, -10%);
  }
  .bottom-right{
    position: absolute;
    bottom: -30%;
    right: 0%;
    transform: translate(0%, 20%);
  }
  .bottom-right .image-bg-center {
    width: 80px;
  }
  .bottom-left .image-bg-center {
    width: 90px;
  }
  .bottom-top .image-bg-center {
    width: 120px;
  }
  .bottom-left{
    position: absolute;
    bottom: -30%;
    left: 0%;
    transform: translate(0%, 20%);
  }
  .backgroundImg1 .margin-bottom-300 {
    margin-bottom: 0px !important;
    overflow: visible;
  }
  .container{
    overflow: visible;
  }
}
@media screen and (max-width: 620px) {
  
  
  
  .bg-middle {
    height: 400px;
    background-image: none !important;
  }
  .button-top-holder {
    position: relative;
    flex-direction: column;
  }
  .bg-button {
    position: relative;
    left: unset;
    transform: unset;
    height: 60px;
  }
  .bg-button-right {
    position: relative;
    right: unset;
    transform: unset;
    margin-top: 20px;
    height: 60px;
  }
  .logo-container {
    height: 200px;
    align-self: center;
    top: -15%;
  }
  .bt-holder-footer {
    flex-direction: column;
  }
}
@media screen and (max-width: 575px) {
  .container.backgroundImg1.padding-top-200.padding-bottom-100 {
    padding-top: 0px;
  }
  .backgroundBoxImg1 {
    height: 300px;
  }
}
@media screen and (max-width: 500px) {
  .image-three-box {
    top: 5%;
  }
  h1 {
    font-size: calc(2rem + 1.5vw)!important;
  }
  .backgroundImg {
    background-size: cover;
  }
  .padding-25 {
    padding: 0px 25px;
  }
  .header .logo a img {
    width: 175px !important;
  }
  .header .logo-header a img {
    width: 175px !important;
  }
  .logo-container-small img {
    max-width: 300px;
    height: auto;
  }
  .logo-container img {
    max-width: 400px;
    height: auto;
  }
  /* .bg-size {
        height: 75vh;
    } */
  .backgroundBoxImg6 {
    height: 200px;
    width: 200px;
  }
  .backgroundBoxImg6 .image-center-big{
    width: 100px;
  }
  .button-position-right .bg-button-holder {
    height: 60px;
  }
}

.privacyContainer {
  padding: 50px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0 0 0 / 10%);
  /* margin-top: 100px; */
}

.emailLink {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  word-spacing: 0.5px;
  color: var(--text-primary);
  font-family: "Kanit", sans-serif;
  cursor: pointer;
}

#popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0 0 0 / 30%);
  z-index: 10;
}

#modal {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  background-color: #0f193d !important;
  color: #fff;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 30%);
  border-radius: 3px;
  padding: 40px;
  transition: 1s;
}

#modal a:hover i {
  transform: scale(1.2);
  transition: 0.3s;
}

.closeButton {
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 25px;
  background-color: #229b99;
  border: 2px solid #fff;
  padding: 5px;
  font-size: 8px;
  height: 25px;
  width: 25px;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.closeButton:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

/**** OLD CODE *****/

.headercontainer.bgimg {
  /* background: rgba(119, 128, 245, 0.3) url('../images/bg4.png'); */
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100%;
  background: linear-gradient(
      0deg,
      rgba(253, 233, 222),
      rgba(222, 139, 97, 0.6)
    ),
    rgba(5, 8, 51, 0.3) url("../images/bg5.png");
}

/* *************
 FONTS
************ */
p.ytext {
  font-weight: 500;
  font-size: 72px;
  word-spacing: 0.5px;
  color: var(--text-dark-blue);
  font-family: "Kanit", sans-serif;
  line-height: 1em;
  letter-spacing: -2px;
  margin: 0;
  text-align: center;
}

p.wtext {
  font-weight: 500;
  font-size: 16px;
  word-spacing: 0.5px;
  color: var(--text-dark-blue);
  font-family: "Kanit", sans-serif;
  margin: 0;
  text-align: center;
}

p.footerp {
  font-weight: 400;
  font-size: 14px;
  word-spacing: 0.5px;
  color: var(--text-primary);
  font-family: "Kanit", sans-serif;
  margin: 20px 0;
  line-height: 1.6em;
}

p.btext {
  font-weight: 400;
  font-size: 16px;
  word-spacing: 0.5px;
  color: var(--text-primary);
  font-family: "Kanit", sans-serif;
  cursor: pointer;
}

p.btext:hover {
  color: var(--text-green);
}

p.bbtext {
  font-weight: 500;
  font-size: 18px;
  word-spacing: 0.5px;
  color: var(--text-secondary);
  font-family: "Kanit", sans-serif;
  line-height: 1.4em;
}

.darkerColor {
  color: var(--text-dark-blue);
}

/* *************
 INPUTS
************ */
.inputMail {
  all: unset;
  background: var(--text-white);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--text-green);
  border-radius: 5px 5px 5px 5px;
  padding: 10px;
  font-weight: 400;
  margin-bottom: 10px;
}

/* *************
 HEADER LOGO 
************ */
.header {
  position: fixed;
  display: none;
  justify-content: space-between;
  /* padding: 5px 20px; */
  width: 100%;
  z-index: 999;
  height: 80px;
}

/* .logo {
    position: relative;
} */
.logo a img {
  width: 250px;
  /* -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast; */
}

.logo-header a img {
  width: 250px;
}
/* .logo a img {
    max-width: 100%;
    height: auto;
    width: 250px;
} */

/* *************
 MENU
************ */

.navItems {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
}

.navItem {
  padding: 0 3px;
  color: var(--text-white);
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  word-spacing: 0.5px;
  height: 26px;
  margin: 0 10px;
  text-decoration: none;
  font-family: "Kanit", sans-serif;
  transition: 0.3s;
}

.navItem:hover {
  color: var(--text-dark-blue);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-direction: column;
  padding: 30px;
}

.nav-item {
  display: flex;
  align-items: center;
  align-self: center;
  padding: 5px;
}

.nav-item.navItem {
  padding: 0 3px;
  color: var(--text-white);
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  word-spacing: 0.5px;
  height: 26px;
  margin: 0 10px;
  text-decoration: none;
  font-family: "Kanit", sans-serif;
  transition: 0.7s;
  width: 100%;
}

.nav-item.navItem:hover {
  color: var(--text-green);
}

#hamburger {
  display: none;
}

.navbarHamburger {
  margin-bottom: auto;
  display: none;
  position: absolute;
  background: var(--text-primary);
  top: 0;
  left: 0;
  right: 0;
}

.cancelMenu {
  position: absolute;
  top: 15px;
  right: 20px;
  height: 35px;
  width: 35px;
  display: flex;
  color: var(--text-primary);
  background-color: var(--text-green);
  border-radius: 25px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 10;
  cursor: pointer;
  transition-duration: 0.2s;
}

.cancelMenu:hover {
  transform: scale(1.1);
}

/* *************
 MENU jumbotron
************ */

.spaerman-container-left {
  position: absolute;
  width: 200px;
  overflow: hidden;
  /* left: 5%; */
  top: 60%;
}

.spaerman-container-left img {
  max-width: 100%;
}

.spaerman-container-right {
  position: absolute;
  width: 200px;
  overflow: hidden;
  right: 0%;
  top: 0%;
  animation: animateSpearman 7s infinite;
}

.spaerman-container-right img {
  max-width: 100%;
}

.jumbotron {
  display: flex;
  position: relative;
  flex-direction: column;
  max-width: 700px;
  margin: auto;
  padding: 7em 0em 7em 0em;
}

.imagecontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
}

.imagecontainer img {
  height: 100%;
}

.animate-text {
  opacity: 0;
  transform: translateY(-100%);
  animation: animateText 2s forwards;
}

.overlay {
  opacity: 0.5;
}

.overlay {
  background: rgba(76, 175, 80, 0.5);
}

@keyframes animateText {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.buttonHeaderContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

button.button {
  color: var(--text-white);
  /* margin: 5px; */
  background-color: var(--text-green);
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: var(--text-green);
  border-radius: 5px 5px 5px 5px;
  font-size: 18px;
  padding: 20px 40px;
  /* width: 40%;
    max-width: 40%; */
  width: 100%;
  transition: 0.3s;
}

button.button:hover {
  color: var(--text-white);
  background-color: var(--text-dark-blue);
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: var(--text-dark-blue);
}

button.button.noHoverButton:hover {
  background-color: var(--text-green);
}

/* *************
 BOXES CONTAINER
************ */
.boxesmaincontainer {
  margin: 50px auto;
}

.boxtopcontainer {
  position: relative;
  height: 340px;
  /* width: 320px; */
  padding: 10px;
  display: flex;
  justify-content: center;
}

.boxtopcontainer img {
  height: 100%;
}

.box1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* *************
 SECOND BOX CONTAINER
************ */
.box2 {
  display: flex;
  flex-direction: column;
  position: relative;
}

.buttonmiddleContainer {
  display: flex;
  flex-direction: row;
  justify-content: left;
}

button.middlebutton {
  color: var(--text-white);
  margin: 0 5px;
  background-color: var(--text-green);
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--text-green);
  border-radius: 5px 5px 5px 5px;
  font-size: 16px;
  padding: 15px 30px;
  width: 40%;
  max-width: 40%;
  transition: 0.3s;
}

button.middlebutton:hover {
  color: var(--text-white);
  background-color: var(--text-dark-blue);
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--text-dark-blue);
}

button.middlebutton.inverse {
  color: var(--text-green);
  background-color: var(--text-white);
}

button.middlebutton.inverse:hover {
  color: var(--text-dark-blue);
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--text-dark-blue);
}

.box2 img {
  height: 100%;
}

.whitetextbox {
  position: absolute;
  bottom: -60px;
  left: -30px;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--text-white);
  box-shadow: 0px 30px 60px 0px rgb(0 0 0 / 10%);
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ticont {
  display: flex;
  align-items: center;
  padding: 50px 100px 50px 0;
}

@media screen and (max-width: 1200px) {
  .ticont {
    padding: 30px;
  }
}

/* *************
 THIRD BOX CONTAINER
************ */

.box3 {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 60px;
  padding-top: 110px;
  background-color: var(--text-white);
  border-radius: 10px;
  margin: 20px 5px 10px;
}

.box3.invert {
  background-color: transparent;
  background-image: linear-gradient(
    180deg,
    var(--text-green) 0%,
    var(--text-floor-green) 100%
  );
}

.box3 img {
  width: 150px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: -50px;
  transition-duration: 0.3s;
}

.box3 img:hover {
  transform: scale(1.1) translateX(-48%);
}

button.bottombutton {
  color: var(--text-white);
  background-color: var(--text-green);
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--text-green);
  border-radius: 5px 5px 5px 5px;
  font-size: 15px;
  padding: 10px 30px;
  transition: 0.3s;
  max-width: fit-content;
  align-self: center;
  margin-top: 20px;
}

button.bottombutton:hover {
  color: var(--text-white);
  background-color: var(--text-dark-blue);
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--text-dark-blue);
}

@media screen and (max-width: 1200px) {
  .box3 {
    margin: 50px 5px 10px;
  }
}

/* *************
 PATH CONTAINER
************ */
.pathimagecontainer {
  width: 100%;
  position: relative;
  margin: 100px 0;
}

.path {
  position: absolute;
  left: 0;
  top: 100px;
  right: 0;
  width: 100%;
  height: 350px;
  background-size: contain;
  background-image: url("../images/dashed1.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.whitebox {
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: var(--text-white);
  padding: 2em 2em 2em 2em;
  border-radius: 10px;
}

.whitebox img {
  position: absolute;
  top: -30px;
  width: 70px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1200px) {
  .whitebox {
    margin: 30px 0 !important;
  }
}

/* *************
 image CONTAINER
************ */
.bgimagecontainer {
  width: 100%;
  height: 350px;
  background-size: contain;
  background-image: url("../images/bg2.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin: 100px 0;
  padding: 50px;
}

.createcontainer {
  display: flex;
  position: relative;
}

.createcontainer img.topimg {
  position: absolute;
  height: 100px;
  top: -40%;
  right: 0%;
}

.createcontainer img.botimg {
  position: absolute;
  height: 200px;
  bottom: -130px;
  right: 50%;
}

.expos {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

@media screen and (max-width: 1200px) {
  .topimg {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .topimg {
    display: none;
  }

  .createcontainer img.botimg {
    right: 0%;
    bottom: -100px;
    height: 160px;
  }

  .bgimagecontainer {
    background-image: url("../images/bg3a.png");
    height: fit-content;
  }

  button.middlebutton {
    max-width: 70%;
  }
}

@media screen and (max-width: 500px) {
  .createcontainer img.botimg {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .bgimagecontainer {
    background-size: 140% auto;
  }
}

/* *************
 FOOTER CONTAINER
************ */
.footerboxleft {
  display: flex;
  flex-direction: column;
}

.icon-cog {
  margin-right: 20px;
  color: var(--text-green);
  cursor: pointer;
}

button.inputbutton {
  color: var(--text-white);
  margin: 0 5px;
  background-color: var(--text-green);
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: var(--text-green);
  border-radius: 5px 5px 5px 5px;
  font-size: 16px;
  padding: 15px 30px;
  width: 100%;
  transition: 0.3s;
}

button.inputbutton:hover {
  color: var(--text-white);
  background-color: var(--text-dark-blue);
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: var(--text-dark-blue);
}

.video-container {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.video-container iframe {
  display: flex;
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 75%);
  width: 750px;
  height: 534px;
}

@media screen and (max-width: 800px) {
  .video-container iframe {
    width: 100%;
    height: 350px;
    margin: 0 20px;
  }
}

/* DAVID STYLES */
/* :root {
    --main-light-blue: #2770B4;
    --text-green: #229b99;
    --text-white: #FFF;
    --text-dark-blue: #090e34;
    --text-yellow: #ffd900;
    --text-primary: #183648;
    --text-secondary: #090e34;
    --text-floor-green: #3fff7d;
} */
button.button {
  color: var(--text-white);
  /* margin: 0 5px; */
  background-color: var(--text-green);
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--text-green);
  border-radius: 5px 5px 5px 5px;
  font-size: 16px;
  transition: 0.3s;
  /* margin-left: 0; */
  /* width:fit-content;
    max-width: fit-content; */
  /* margin-top: 10px; */
  margin: 10px 0;
  padding: 10px 20px;
}

button.button:hover {
  color: var(--text-white);
  background-color: var(--text-dark-blue);
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--text-dark-blue);
}

.right-container {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-left: 30px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

.image-container {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 175px;
}

.bar {
  background-color: #dcdcde;
  height: 8px;
  border-radius: 10px 10px 10px 10px;
}

.inner-bar {
  border-radius: 10px 0px 0px 10px;
  background-color: transparent;
  background-image: linear-gradient(135deg, #cafa39 0%, #229b99 100%);
  height: 100%;
  position: relative;
}

.bar-container:hover .box-info {
  display: inline-block;
}

.box-info {
  display: none;
  font-size: 13px;
  font-weight: 400;
  height: 24px;
  line-height: 24px;
  color: #fff;
  font-size: 13px;
  background-color: rgba(0 0 0 /50%);
  text-align: center;
  padding: 0 11px;
  border-radius: 4.32px;
  border-bottom-left-radius: 0;
  position: absolute;
  right: -48px;
  top: -33px;
  z-index: 1;
}

.box-info::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -8px;
  color: rgba(0 0 0 /50%);
  border-top: solid;
  border-right: solid transparent;
  border-left: solid;
  border-bottom: solid transparent;
  border-width: 4px;
}

p.weapon-title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2em;
}

.lenta {
  position: absolute;
  height: 14px;
  width: 68px;
  background-color: #000;
  border-radius: 20px;
  transform: rotate(-45deg);
  top: 0%;
  left: -40%;
  color: #fff;
  line-height: 8px;
  font-size: 10px;
  padding: 1px 0 0 3px;
  opacity: 0.6;
  z-index: 10;
}
