@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
}

body, html {
  font-family: "Poppins", serif;
  color: #272836;
  background-color:#ffffff;
  background: url(/img/triangle_pattern.webp);
  background-position: top;
  background-repeat: repeat;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100svh;
}

/*_________________________________________________________ */

section {
  height: 100%;
}

.legal-content {
  display: flex;
  flex-direction: column;
}

.legal-container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/*----------------------------------------------------*/

section h1 {
  text-align: center;
  font-size: 4.7svh;
  margin: 6vh 0 4vh 0;
}

/*----------------------------------------------------*/


.legal-wrap {
  margin-top: 5vh;
}

.legal-wrap hr {
  width: 75svw;
  margin: 0 auto;
  border: none;
  height: 3px;
  background-color: #4b4f8d;
}

.legal-tabs {
  display: flex;
  flex-wrap: row;
  max-width: 70svw;
  margin: 0 auto;
  padding: 0;
}

.tabs-item {
  list-style-type: none;
  text-align: center;
  font-size: 2vh;
  color: #a2a2a3;
  font-weight: 400;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: 0.1s ease-in-out;
  flex: 1 1 auto;
}

.tabs-item.active {
  font-weight: bold;
  color: #393c72;
}

.tabs-item:hover {
  color: #393c72;
}

/*----------------------------------------------------*/

.tabs-content {
  max-width: 60vw;
  margin: 3rem auto 5rem;
}

.tab-pane {
  display: none;
  -webkit-animation: fadeEffect 0.5s;
  animation: fadeEffect 0.5s;
}

.tab-pane.active {
  display: block;
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*----------------------------------------------------*/

.tab-pane h2 {
  font-size: 3.5svh;
  font-weight: bold;
}

.tab-pane h3 {
  font-size: 2.7svh;
  font-weight: 600;
}

.tab-pane h4 {
  font-size: 1.2svh;
  font-weight: 500;
  margin-bottom: 4vh;
}

.tab-pane a {
  font-weight: 600;
  text-decoration: underline;
}

.tab-pane a:hover {
  color: rgb(42, 62, 128);
}

.tab-pane p {
  font-size: 1.8svh;
  font-weight: 400;
  margin: 1.5rem 0 3rem;
  line-height: 1.7;
}

.tab-pane p strong { 
  color: #646464;
  font-weight: 600; 
}

.legal-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: -2vh 0 5vh 0;
}

.legal-list li {
  font-size: 1.8svh;
  margin-bottom: 5px;
}

/*▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬*/

/*█▀█ █▀▀ █▀ █▀█ █▀█ █▄ █ █▀ █ █ █ █▀▀
  █▀▄ ██▄ ▄█ █▀▀ █▄█ █ ▀█ ▄█ █ ▀▄▀ ██▄*/

@media (max-width: 480px) {

  section h1 {
    margin: 12vh 0 3vh 0;
  }

  .tabs-content {
    max-width: 95vw;
    margin: 1rem auto;
  }
}

/*_________________________________________________________*/

@media (max-width: 768px) {
  .legal-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tabs-content {
    max-width: 90vw;
    margin: 2rem auto;
  }
}

/*▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬*/

/* 
█▀▄ ▄▀█ █▀█ █▄▀   ▀█▀ █ █ █▀▀ █▀▄▀█ █▀▀
█▄▀ █▀█ █▀▄ █ █    █  █▀█ ██▄ █ ▀ █ ██▄ */

body.dark-theme {
  color: #f0f0f0;
  background-color: #1f1e39;
}

body.dark-theme .legal-wrap hr {
  border: none;
  background-color: #989cd3;
}

body.dark-theme .tabs-item {
  color: #d5d5d5;
}

body.dark-theme .tabs-item.active {
  color: #b6baf3;
}

body.dark-theme .tabs-item:hover {
  color: #b6baf3;
}

body.dark-theme .tab-pane a:hover {
  color: rgb(65, 97, 204);
}

body.dark-theme .tab-pane p strong { 
  color: #8e8e8e
}