/***************************
    CUSTOM SCROLL BAR
****************************/
*,
html {
  scroll-behavior: smooth;
}

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

:root {
  --white: #fff;
  --black: #101010;
  --dark: #191919;
  --gray: rgba(1, 1, 1, 0.6);
  --lite: rgba(255, 255, 255, 0.6);
  /* --primary: linear-gradient(145deg, #f81f01, #ee076e); */
  /* --primary_dark: #f81f01; */
  --primary_dark: #154b87;
  --secondary: #154b87;
  --default_font: "Open Sans", sans-serif;
  --title_font: "Poppins", sans-serif;
}

::-webkit-scrollbar {
  height: 12px;
  width: 8px;
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: gray;
  -webkit-box-shadow: 0px 1px 2px var(--dark);
}

::-webkit-scrollbar-corner {
  background: var(--dark);
}

/***************************
            DEFAULT
****************************/
body {
  margin: 0;
  overflow-x: hidden !important;
  font-family: var(--default_font);
  color: var(--white);
  background-color: var(--black);
}

a {
  text-decoration: none !important;
  min-width: fit-content;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
}

a,
button {
  transition: 0.5s;
}

em {
  font-style: normal;
  color: var(--primary_dark);
}

figure {
  padding: 0;
  margin: 0;
}

figure img {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
}

a,
p,
.btn {
  font-size: 16px;
}

p {
  line-height: 1.9em;
  color: var(--lite);
}

a,
button,
input,
textarea,
select {
  outline: none !important;
}

fieldset {
  border: 0;
}

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

.title,
.sub_title {
  font-family: var(--title_font);
}

.flex,
.fixed_flex {
  display: flex;
}

.flex_content {
  width: 100%;
  position: relative;
}

.padding_1x {
  padding: 1rem;
}

.padding_2x {
  padding: 2rem;
}

.padding_3x {
  padding: 3rem;
}

.padding_4x {
  padding: 4rem;
}

.big {
  font-size: 5em;
}

.medium {
  font-size: 2em;
}

.small {
  font-size: 1.3em;
}

.btn {
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  font-family: var(--title_font);
  font-weight: 400;
}

.btn_1 {
  display: block;
  /* background-color: 0; */
  border: 0;
  text-transform: uppercase;
  color: var(--white);
}

.btn_1:before {
  content: "";
  border-radius: 50%;
  background-color: #1013605e;
  position: absolute;
  left: 0;
  top: 50%;
  width: 50px;
  height: 50px;
  transition: 0.5s;
  transform: translate(0%, -50%);
}

.btn_1:after {
  content: "\f178";
  font-family: "FontAwesome";
  margin-left: 5px;
}

.btn_1:hover:before {
  border-radius: 40px;
  width: 100%;
}

.divisions {
  position: relative;
}

@media (max-width: 920px) {
  .flex {
    flex-wrap: wrap;
  }

  .padding_1x,
  .padding_2x,
  .padding_3x,
  .padding_4x {
    padding: 1rem;
  }

  .big {
    font-size: 1.8em;
  }

  .medium {
    font-size: 1.6em;
  }

  .small {
    font-size: 1.1em;
  }

  .btn {
    padding: 0.5rem 1rem;
  }

  a,
  p,
  .btn {
    font-size: 12px;
  }
}

/*NAV*/
nav {
  display: flex;
  position: fixed;
  top: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  z-index: 9;
  white-space: nowrap;
  transition: 0.5s;
}

nav a {
  padding: 0.8rem 0;
  color: var(--lite);
  margin: 0 1.5rem;
  text-transform: uppercase;
  font-family: var(--title_font);
  font-weight: 400;
  position: relative;
  white-space: nowrap;
}

.logo {
  font-size: 1.6em;
}

nav .active {
  color: var(--primary_dark) !important;
  border-bottom: 2px solid var(--primary_dark);
}

nav .flex_content:nth-child(2) a:after {
  transition: 0.5s;
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  top: 100%;
  height: 2px;
  background: var(--primary);
}

nav a:hover {
  color: var(--white);
}

nav .flex_content:nth-child(2) a:hover:after {
  width: 100%;
}

nav .flex_content:last-child a {
  float: right;
}

nav .ham {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--lite);
  width: 50px;
  height: 50px;
  color: var(--lite);
}

nav .ham:hover {
  border: 2px solid var(--white);
}

menu {
  margin: 0;
}

menu {
  width: 400px;
  background-color: var(--dark);
  z-index: 999;
  position: fixed;
  right: -400px;
  overflow: hidden;
  height: 100%;
  transition: 0.5s;
  padding: 6rem 2rem;
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.5s;
  opacity: 0;
  z-index: -1;
  background-color: var(--gray);
}

.close {
  float: right;
  border: 2px solid var(--lite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 32px;
  padding: 0.5rem;
  color: var(--lite);
  position: absolute;
  top: 5%;
  right: 5%;
}

.close:hover {
  color: var(--white);
  border: 2px solid var(--white);
}

menu li {
  padding: 0.8rem 0;
  list-style: none;
}

menu li a {
  color: var(--lite);
}

menu li i {
  color: var(--primary_dark);
}

menu li a:hover {
  color: var(--white);
}

@media (max-width: 920px) {
  nav {
    padding: 1rem;
  }

  nav .ham {
    width: 30px;
    height: 30px;
  }

  nav .nav_content {
    width: 200px;
    background-color: var(--dark);
    z-index: 999 !important;
    position: fixed;
    top: 0;
    right: -200px;
    overflow: hidden;
    height: 100%;
    transition: 0.5s;
  }

  nav .nav_content a {
    display: block;
    padding: 0.4rem 0rem;
    margin: 1rem;
    font-size: 20px;
  }
}

/*ADDITIONAL*/
/*Custom cursor*/
.cursor {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary_dark);
  pointer-events: none;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: difference;
  z-index: 9999;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
}

.cursor::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--primary_dark);
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  z-index: 9999;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
}

/*HEADER*/
header {
    position: relative;
    overflow: hidden; /* Ensure the pseudo-element is contained within the header */
  }
  
  header::before {
    content: "";
    background: url("./img/stock-market-graph-chart-on-digital-led-display-2023-11-27-05-12-21-utc.webp");
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5; /* Adjust the opacity value as needed */
    z-index: -1; /* Ensure the background is behind the content */
  }

header section {
  padding: 10rem 2rem;
}

header article .title {
  /* background: var(--primary); */
  background: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  line-height: 1.3;
}

header article p {
  color: var(--lite);
  width: 60%;
}

@media (max-width: 920px) {
  header section {
    padding: 6rem 0rem;
  }

  header article p {
    width: 100%;
  }
}

/*DIVISION_1*/
.division_1 {
  overflow: hidden;
}

.division_1:before,
.division_1:after {
  content: "";
  /* background-color: #000; */
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 40%;
}

.division_1:before {
  left: -27%;
  top: -10%;
  transform: rotate(120deg);
}

.division_1:after {
  right: -25%;
  bottom: -10%;
  transform: rotate(-50deg);
}

.division_1 .flex:nth-child(1) {
  align-items: center;
}

.division_1 .cards {
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.division_1 article {
  background-color: var(--dark);
  border-radius: 10px;
}

.division_1 .cards article {
  margin: 1%;
}

.division_1 .fixed_flex {
  align-items: center;
  justify-content: space-between;
}

.division_1 article img {
  background: #154b87;
  padding: 0.3rem;
  border-radius: 10px;
}

.division_1 article .title {
  margin: 1rem 0;
}

.division_1 article .stroke {
  opacity: 0.3;
}

@media (max-width: 920px) {
  .division_1 {
    padding: 0;
  }
}

/*Transparent text background*/
.stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary_dark);
}

/*Custom cursor coloring*/
.cursor--expand {
  animation: cursor-animate-3 550ms forwards;
  border: 10px solid rgb(var(--primary_dark));
}

.cursor--expand::after {
  border: 15px solid rgba(var(--primary_dark), 0.3);
}

/*Scroller*/
.cs-down {
  position: absolute;
  height: 35px;
  width: 20px;
  border-radius: 10px;
  border: 2px solid var(--white);
  bottom: 10%;
  left: 50%;
  margin-left: -10px;
}

.cs-down:before {
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--white);
  -webkit-animation: UpAndDown 3s infinite;
  animation: UpAndDown 3s infinite;
}

@-webkit-keyframes UpAndDown {
  0%,
  100% {
    top: 30%;
  }
  50% {
    top: 70%;
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
}

@keyframes UpAndDown {
  0%,
  100% {
    top: 30%;
  }
  50% {
    top: 70%;
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
}







.icon {
    width: 250px; /* Fixed width */
    height: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align the icon with the text */
}
@media (max-width: 600px) {
    .icon {
        width: 15px; /* Smaller width on smaller screens */
    }
}


.icon1 {
    width: 165px; /* Fixed width */
    height: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align the icon with the text */
}
@media (max-width: 600px) {
    .icon1 {
        width: 15px; /* Smaller width on smaller screens */
    }
}










.login-box {
  margin: 0 auto;
  width: 400px;
  padding: 40px;
  background: rgba(0,0,0,.5);
  box-shadow: 0 15px 25px rgba(0,0,0,.6);
  border-radius: 10px;
}

.login-box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: #fff;
  text-align: center;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.login-box .user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #03e9f4;
  font-size: 12px;
}

.login-box form a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px
}

.login-box a:hover {
  /* background: #03e9f4; */
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px #154b87,
              0 0 25px #154b87,
              0 0 50px #154b87,
              0 0 100px #154b87;
}

.login-box a span {
  position: absolute;
  display: block;
}

.login-box a span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eeb507);
}

.login-box a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #eeb507);
}

.login-box a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #eeb507);
}


.login-box a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #eeb507);
}

/* KEYFRAMES */

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,100% {
    left: 100%;
  }
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}

/* USING KEYFRAMES */

.login-box a span:nth-child(1) {
  animation: btn-anim1 1s linear infinite;
}

.login-box a span:nth-child(2) {
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

.login-box a span:nth-child(3) {
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

.login-box a span:nth-child(4) {
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}
















.form-row {
  display: flex;
  gap: 20px; /* Adjust the gap as needed */
}

.user-box {
  flex: 1;
}

.login-box .user-box input {
  width: 100%; /* Ensure inputs take the full width of their container */
}


























.footer {
  position: relative;
  width: 100%;
  background: #3586ff;
  min-height: 100px;
  padding: 0px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
  cursor: pointer;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("https://i.ibb.co/wQZVxxk/wave.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}
