@tailwind base;
@tailwind components;
@tailwind utilities;

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
  min-height: 100%;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./whitepaper_images/7.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: -1;
}

/* .img_down {
  background-image: url("./whitepaper_images/shape_ico_hero_section_bottom.svg");
  background-position: bottom;
  background-repeat: no-repeat;
} */

/* .img_up {
  background-image: url("./whitepaper_images/shape_net.svg");
} */

.container-fluid {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  flex-direction: row;
}

.content {
  flex: 1;
  padding: 0px;
  overflow-y: auto;
  height: 100vh;
  color: #ccceef; /*rgb(105, 105, 105)*/
}

.content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

section {
  margin-bottom: 25px;
}

.col-md-9,
tbody {
  color: #efeffa; /*rgb(105, 105, 105)*/
}

.list-group-item {
  background-color: transparent;
}

.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
}
/* ================= */
.ico_problem_solution_table {
  position: relative;
}

.ico_problem_solution_table:before {
  content: "";
  z-index: -2;
  opacity: 0.24;
  position: absolute;
  -webkit-filter: blur(22px);
  filter: blur(22px);
  inset: 20px 0 -8px 0;
  background: linear-gradient(145deg, #fc6500, #7064e9, #fc6500);
}

.ico_problem_solution_table .column_wrapper {
  z-index: 1;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  background-color: var(--bs-light);
  border: 1px solid var(--bs-border-color);
}

.ico_problem_solution_table .column_wrapper:before {
  left: 50%;
  top: -200px;
  z-index: -1;
  content: "";
  opacity: 0.4;
  width: 400px;
  height: 400px;
  position: absolute;
  -webkit-filter: blur(30px);
  filter: blur(30px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: radial-gradient(
    rgba(var(--bs-border-color-translucent), 0.7),
    var(--bs-light)
  );
}

.ico_problem_solution_table .column_wrapper:after {
  left: 0;
  right: 0;
  bottom: -40px;
  content: "";
  z-index: -1;
  height: 40px;
  -webkit-filter: blur(45px);
  filter: blur(45px);
  position: absolute;
  background-image: linear-gradient(45deg, #fc6500, #7064e9);
}

.ico_problem_solution_table .column_wrapper > * {
  padding: 50px;
}

.ico_problem_solution_table .column_wrapper > *:not(:last-child) {
  border-style: solid;
  border-width: 0 1px 0 0;
  border-color: var(--bs-border-color);
}

.ico_problem_solution_table .heading_text {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  font-size: 32px;
  margin-bottom: 43px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ico_problem_solution_table .heading_text .icon {
  width: 70px;
  height: 70px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--bs-dark);
  border: 1px solid var(--bs-border-color);
}

.ico_problem_solution_table .heading_text .icon img {
  max-height: 36px;
}
