@font-face {
  font-family: "Roboto Mono It";
  src: url("../assets/fonts/RobotoMono-Italic.woff2") format("woff2"), url("../assets/fonts/RobotoMono-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Mono Regular";
  src: url("../assets/fonts/RobotoMono-Regular.woff2") format("woff2"), url("../assets/fonts/RobotoMono-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-Thin.woff2") format("woff2"), url("../assets/fonts/Montserrat-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
/* VARIABLES */
/* MIXINS */
/* ANIMATION */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.ripple {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}

.ripple:active:after {
  transform: scale(0, 0);
  opacity: 0.2;
  transition: 0s;
}

/* RESET CSS */
/* http://meyerweb.com/eric/tools/css/reset/
       v2.0 | 20110126
       License: none (public domain)
    */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  color: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a, a:hover, a:active, a:visited, a:focus {
  color: inherit;
}

i,
em,
.italic-text {
  font-style: italic;
}

.left {
  float: left;
}

.right {
  float: right;
}

.wrap-clear::after {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  zoom: 1;
  display: table;
  clear: both;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

:focus {
  outline: none;
}

input,
button,
textarea {
  border-radius: 0;
  appearance: none;
}

select {
  border-radius: 0;
}

textarea {
  resize: none;
}

/* COMMONS */
body {
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.6px;
}

ol,
ul {
  margin: 0px;
}

button,
input,
select,
textarea {
  -webkit-appearance: none;
  outline: none;
  border-radius: 0;
  background-color: transparent;
}

input,
textarea {
  background: transparent;
  border: none;
}

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

a {
  color: inherit;
  cursor: pointer;
}

.h1,
.h2,
.h3,
.h4,
h1,
h2,
h3,
h4 {
  line-height: 1.4;
}

p {
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.slick-next:before,
.slick-prev:before {
  content: "";
}

.scroll-lock {
  height: 100%;
  overflow-y: hidden;
}
small {
  font-size: 13px;
}

.input[type=checkbox] {
  -webkit-appearance: checkbox;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media only screen and (min-width: 1025px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hidden-md {
    display: none !important;
  }
}

body,
html {
  overflow-x: hidden !important;
}

body {
  background-color: #f2f2f2;
}

.bg-custum-darkblue {
  background-color: #020c49;
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 767px) {
  .bg-custum-darkblue {
    justify-content: center;
  }
}

.bg-custm-green {
  background-color: #12d0b2;
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 767px) {
  .bg-custm-green {
    justify-content: center;
  }
}

.bg-custm-black {
  background-color: black;
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 767px) {
  .bg-custm-black {
    justify-content: center;
  }
}

.bg-custm-blue2 {
  background-color: #2b2ba6;
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 767px) {
  .bg-custm-blue2 {
    justify-content: center;
  }
}

.common-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.scrolled {
  background: #172853; /* Change this to the desired color */
  border-radius: 10px;
  position: fixed;
  width: 1320px; /* Set to desired width */
  left: 50%;
  transform: translateX(-50%);
  padding-left: 10px;
  padding-right: 10px;
  transition: padding 0.2s;
}
.scrolled .btn-launch {
  color: white;
}
@media (max-width: 767px) {
  .scrolled {
    margin-top: 10px;
    width: 90%; /* Set to desired width */
  }
}
.scrolled .navbar {
  background-color: blue;
  color: white;
}

header {
  margin-top: 10px;
  position: fixed;
  transition: top 0.6s ease-in-out;
  left: 0;
  right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 5000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
header .scrolled {
  position: absolute;
  width: 1200px; /* Set to desired width */
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  header {
    margin-top: 0px;
    background-color: #172853;
    z-index: 5000;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header {
    padding-top: 15px;
    padding-bottom: 10px;
  }
}
header .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-main .btn-launch {
  font-family: "Roboto Mono Regular";
  background-color: black;
  padding: 10px 20px;
  border-radius: 5px;
}
header .header-main .btn-launch:hover {
  background-color: #323131;
}
@media (max-width: 767px) {
  header .header-main .btn-launch {
    background-color: unset;
  }
}
header .header-main .mobile-btn-nav a {
  font-family: "Roboto Mono Regular";
  background-color: black;
  padding: 15px 20px;
  border-radius: 5px;
}
header .header-main .mobile-btn-nav a:hover {
  background-color: #323131;
}
header .header-main .btn-launch-1 {
  font-family: "Roboto Mono Regular";
  padding: 10px 20px;
  border-radius: 5px;
  color: black;
}
header .header-main .btn-launch-1:hover {
  background-color: #14cfb1;
}
header .header-main a {
  display: inline-block;
  color: white;
  display: block;
  display: inline-block;
}
header .header-main a #logo-brand {
  transition: 0.6s;
}
header .header-main a img {
  display: inline-block;
  width: 75px;
}
@media (max-width: 767px) {
  header .header-main a img {
    width: 61px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header .header-main a img {
    width: 61px;
  }
}
@media (max-width: 767px) {
  header .header-main a {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header .header-main a {
    font-size: 24px;
  }
}
header .header-main .dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  header .header-main .dropdown {
    width: 100%;
  }
}
header .header-main .dropdown .dropbtn {
  color: black;
  width: 100%;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
header .header-main .dropdown .dropbtn:hover {
  background-color: #14cfb1;
  padding: 10px 20px;
}
@media (max-width: 767px) {
  header .header-main .dropdown .dropbtn:hover {
    background-color: unset;
  }
}
@media (max-width: 767px) {
  header .header-main .dropdown .dropbtn {
    background-color: unset;
    font-size: 20px;
    margin-bottom: 4px;
    color: white;
  }
}
header .header-main .dropdown .dropbtn::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  font-size: 12px;
  margin-left: 10px;
}
header .header-main .dropdown .dropbtn.active::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f077";
  font-size: 12px;
  margin-left: 10px;
}
header .header-main .dropdown .dropbtn.active {
  background-color: #14cfb1;
}
header .header-main .dropdown .dropdown-content {
  display: flex;
  width: 650px;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 9px;
  left: 30%;
  transform: translateX(-30%);
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  header .header-main .dropdown .dropdown-content {
    left: unset;
    transform: unset;
    width: 100%;
    position: unset;
  }
}
header .header-main .dropdown:hover .dropbtn {
  background-color: #14cfb1;
}
header .header-main .dropdown .dropdown-wrapper-flex {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  header .header-main .dropdown .dropdown-wrapper-flex {
    padding: 20px 10px;
    flex-direction: column;
  }
}
header .header-main .dropdown .dropdown-wrapper-flex .drop-flex-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  header .header-main .dropdown .dropdown-wrapper-flex .drop-flex-item {
    margin-bottom: 10px;
  }
}
header .header-main .dropdown .dropdown-wrapper-flex .drop-flex-item a {
  color: black;
  text-decoration: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 5px;
}
header .header-main .dropdown .dropdown-wrapper-flex .drop-flex-item a span {
  display: block;
  transform: rotate(45deg);
  font-size: 18px;
}
header .header-main .dropdown .dropdown-wrapper-flex .drop-flex-item a:hover {
  color: #2b2ba5;
}
header .header-main .dropdown .dropdown-wrapper-flex .drop-flex-item p {
  font-size: 12px;
  color: rgb(119, 119, 119);
}
header .header-main .desktop-nav-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  header .header-main .desktop-nav-item {
    flex-direction: column;
    gap: 10px;
    width: 90%;
    margin-bottom: 10px;
  }
}
header .header-main .nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  header .header-main .nav-menu {
    padding-top: 80px;
    z-index: -1;
    position: fixed;
    left: -120%;
    top: 70px;
    gap: 5px;
    flex-direction: column;
    width: 100%;
    min-height: 60vh;
    text-align: center;
    transition: 0.3s;
    overflow: hidden;
    background: #172853;
    justify-content: unset;
  }
  header .header-main .nav-menu.active {
    left: 0;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  header .header-main .nav-menu.active {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  header .header-main .nav-menu .nav-item {
    margin: 16px 0;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  header .header-main .nav-menu .nav-item {
    margin: 10px 0;
  }
}
@media (max-width: 767px) {
  header .header-main .nav-menu .dropdown-content {
    font-family: "Roboto Mono Regular";
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header .header-main .nav-menu {
    z-index: -1;
    position: fixed;
    left: -100%;
    top: 100px;
    gap: 0;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    text-align: center;
    transition: 0.3s;
  }
  header .header-main .nav-menu.active {
    left: 0;
    padding-top: 3rem;
  }
  header .header-main .nav-menu .nav-item {
    margin: 10px 0;
  }
}
header .header-main .nav-item {
  font-family: "Roboto Mono Regular";
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header .header-main .nav-item {
    line-height: 2;
  }
}
header .header-main .join-now {
  font-size: 18px;
  border: 2px solid #ff6d00;
  border-radius: 25px 0 25px 0;
  padding: 15px 40px;
}
@media (max-width: 767px) {
  header .header-main .join-now {
    border-radius: 20px 0 20px 0;
    padding: 10px 20px;
  }
}
header .header-main .join-now:hover {
  background-color: red;
  color: #11173e;
  transition: all 0.35s ease-in-out;
}
header .header-main .hamburger {
  display: none;
  cursor: pointer;
}
header .header-main .hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: white;
}
header .header-main .hamburger .bar:nth-child(1) {
  opacity: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header .header-main .hamburger .bar {
    width: 35px;
  }
}
@media (max-width: 767px) {
  header .header-main .hamburger {
    display: block;
  }
  header .header-main .hamburger.active .bar:nth-child(1) {
    opacity: 1;
    transform: translate(0px, 8px) rotate(45deg);
  }
  header .header-main .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  header .header-main .hamburger.active .bar:nth-child(3) {
    transform: translate(0px, -8px) rotate(-45deg);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header .header-main .hamburger {
    display: block;
  }
  header .header-main .hamburger.active .bar:nth-child(1) {
    opacity: 1;
    transform: translate(0px, 8px) rotate(45deg);
  }
  header .header-main .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  header .header-main .hamburger.active .bar:nth-child(3) {
    transform: translate(0px, -8px) rotate(-45deg);
  }
}

main {
  background: #f2f2f2;
  /* Existing styles... */
}
main .banner {
  margin-top: 120px;
  background-color: white;
}
@media (max-width: 767px) {
  main .banner {
    margin-top: 85px;
  }
}
main .banner .wrapper-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 5rem;
}
@media (max-width: 767px) {
  main .banner .wrapper-flex {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  main .banner .wrapper-flex {
    margin-bottom: 10px;
    gap: 2rem;
  }
}
main .banner .wrapper-flex .flex-item {
  color: white;
}
main .banner .wrapper-flex .flex-item img {
  max-width: 100%;
}
@media (max-width: 767px) {
  main .banner .wrapper-flex .flex-item img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  main .banner .wrapper-flex .flex-item img {
    max-width: 600px;
  }
}
main .banner .wrapper-flex .flex-item.item-1 {
  max-width: 600px;
  padding-bottom: 4rem;
  padding-left: 7rem;
}
@media (max-width: 767px) {
  main .banner .wrapper-flex .flex-item.item-1 {
    max-width: 320px;
    padding-left: 0rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  main .banner .wrapper-flex .flex-item.item-1 {
    padding-left: 4rem;
  }
}
main .banner .wrapper-flex .flex-item.item-1 h2 {
  line-height: 1.1;
  font-family: "Roboto Mono Regular";
  font-size: 72px;
  padding-bottom: 10px;
  background: linear-gradient(90deg #08114b, #3031a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(60deg, #08114b, #3031a5);
  background-clip: text;
  color: transparent;
}
@media (max-width: 767px) {
  main .banner .wrapper-flex .flex-item.item-1 h2 {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  main .banner .wrapper-flex .flex-item.item-1 h2 {
    font-size: 2.5rem;
  }
}
main .banner .wrapper-flex .flex-item.item-1 p {
  margin-top: 10px;
  font-family: "Roboto Mono Regular";
  font-size: 1.5rem;
  color: grey;
}
@media (max-width: 767px) {
  main .banner .wrapper-flex .flex-item.item-1 p {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  main .banner .wrapper-flex .flex-item.item-1 p {
    font-size: 1.2rem;
  }
}
main .banner .slider {
  /* Color for dots' background (inactive dots) */
}
main .banner .slider .slick-slide {
  margin-left: 10px;
  margin-right: 10px;
}
main .banner .slider .slick-slide img {
  border-radius: 5px;
}
main .banner .slider .slick-dots li button::before {
  color: black; /* Change the color as needed */
}
main .banner .slider .slick-dots li.slick-active button::before {
  color: white; /* Change the color for the active dot as needed */
}
main .banner .slider .slick-dots li button::before {
  background: transparent; /* Change the color for inactive dots as needed */
}
main .search-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .app-search {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
main .search {
  text-align: center;
  margin-bottom: 20px;
}
main #searchInput {
  width: 100%;
  padding: 10px;
  font-size: 16px;
}
main .app-list {
  max-height: 400px; /* Set a maximum height for the list */
  overflow-y: scroll; /* Enable vertical scrolling */
}
main .app-columns {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  grid-gap: 10px; /* Gap between app cards */
}
main .app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  text-align: center;
}
main .app-logo {
  max-width: 100%;
  width: 50%; /* Logo will take up 50% of card width */
  height: auto;
}
main .app-name {
  margin: 10px 0;
}
main .social-links {
  margin-top: auto; /* Pushes social links to the bottom */
  display: flex;
  justify-content: center;
  align-items: center;
}
main .social-link {
  margin: 0 5px;
}
main .category-select {
  text-align: center;
  margin-bottom: 20px;
}
main #categoryButton {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}
main .category-dropdown {
  list-style: none;
  padding: 0;
  position: absolute;
  display: none;
  background-color: #fff;
  border: 1px solid #ccc;
  z-index: 1;
}
main .category-dropdown li {
  padding: 10px;
  cursor: pointer;
}
main .category-dropdown li:hover {
  background-color: #f9f9f9;
}
main .hr-line {
  margin-top: 40px;
  margin-bottom: 40px;
}
main .work-box {
  padding-top: 30px;
  padding-bottom: 60px;
  min-height: 100vh;
}
@media (max-width: 767px) {
  main .work-box .container {
    max-width: 320px;
    padding-left: 0;
    padding-right: 0;
  }
}
main .work-box .box-menu input {
  font-family: "Roboto Mono Regular";
  border: 1px solid transparent;
  border-radius: 20px;
  background-color: white;
}
@media (max-width: 767px) {
  main .work-box .box-menu input {
    margin-bottom: 20px;
  }
}
main .work-box .box-menu select {
  font-family: "Roboto Mono Regular";
  border: 1px solid transparent;
  border-radius: 20px;
  background-color: white;
}
main .work-box .box-menu option {
  font-family: "Roboto Mono Regular" !important;
}
main .work-box .box-list {
  row-gap: 4rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  main .work-box .box-list {
    flex-wrap: wrap;
    row-gap: 30px;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
    gap: 2rem;
    justify-content: space-around;
    row-gap: 3rem;
  }
}
main .work-box .box-list .mix .card-main {
  background-color: #f2f2f2;
}
main .work-box .box-list .mix .card-main .bg-custmize-green {
  background-color: red;
}
@media (max-width: 767px) {
  main .work-box .box-list .mix .card-main {
    max-width: 140px;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  main .work-box .box-list .mix .card-main {
    max-width: 300px;
  }
}
main .work-box .box-list .mix .card-main .card-title {
  font-family: "Roboto Mono Regular" !important;
  font-weight: 700;
  font-size: 1.1rem;
}
main .work-box .box-list .mix .card-main .card-text {
  font-family: "Roboto Mono Regular";
  line-height: 1.35;
  font-size: 0.9rem !important;
}
main .work-box .box-list .box-item {
  flex: 0 0 auto;
  width: 33.33333333%;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  main .work-box .box-list .box-item {
    width: 40%;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  main .work-box .box-list .box-item {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}
main .work-box .box-list .box-item .flex-test {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end !important;
}
main .work-box .box-list .box-item .gap-icon-copy {
  gap: 0.7rem;
}
@media (max-width: 767px) {
  main .work-box .box-list .box-item .gap-icon-copy h2 {
    width: 150px;
  }
}
main .work-box .img-card-customize.smart-stake {
  padding: 5px 0px;
}
main .work-box .icon-customize {
  color: #7f7f7f;
}
main footer {
  background-color: #172853;
  padding: 40px;
}
main footer h2 {
  text-align: center;
  color: white;
  font-family: "Roboto Mono Regular";
  text-transform: capitalize;
}
main footer h2 .copy-symbol {
  font-size: 23px;
}

.white-back {
  background-color: white;
  padding: 3rem 0;
}
.white-back.first-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .white-back.first-wrapper {
    max-width: 320px;
    margin: auto;
    width: 90%;
    overflow-wrap: break-word; /* Break long words to prevent overflow */
    word-wrap: break-word; /* Legacy support */
    word-break: break-word;
  }
}
.white-back .first-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .white-back .first-wrapper {
    max-width: 320px;
    margin: auto;
    width: 90%;
  }
}
@media (max-width: 767px) {
  .white-back {
    padding: 2rem 0;
  }
}

.gray-back {
  background-color: #f2f2f2;
  padding: 3rem 0;
}
.gray-back .first-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .gray-back .first-wrapper {
    max-width: 320px;
    margin: auto;
    width: 90%;
    padding: 1rem 0;
  }
}
@media (max-width: 767px) {
  .gray-back {
    padding: 1rem 0;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.tw-scroll-mt-28 {
  scroll-margin-top: 7rem;
}

.banner-rpc {
  padding: 2rem 0;
  padding-bottom: 4rem;
  margin: auto;
  background-color: white;
  margin-top: 120px;
}
@media (max-width: 767px) {
  .banner-rpc {
    padding: 0;
    margin-top: 80px;
  }
}

.tw-html_parser {
  font-family: "Roboto Mono Regular";
}
.tw-html_parser h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  line-height: 3.75rem;
}
@media (max-width: 767px) {
  .tw-html_parser h1 {
    font-size: 1.7rem;
    letter-spacing: -0.02em;
    line-height: 2.875rem;
  }
}
.tw-html_parser p {
  font-size: 1rem;
  line-height: 1.875rem;
}
.tw-html_parser p a {
  word-break: break-all;
}
@media (max-width: 767px) {
  .tw-html_parser p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.tw-html_parser a {
  color: #3b20e2;
}
.tw-html_parser h2 {
  font-size: 1.75rem;
  line-height: 2.0625rem;
}
.tw-html_parser ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style-position: outside;
  padding-left: 2rem;
}
.tw-html_parser ul li {
  word-break: break-all;
}