@font-face {
  font-family: "SF NS Rounded";
  src: url("./assets/fonts/SFNSRounded.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
h1,
.heading-primary {
  font-weight: bold;
  font-size: 55px;
}

h2,
.heading-secondary {
  font-weight: bold;
}

p,
.paragraph {
  line-height: 1.6;
}

.h-100 {
  height: 100%;
}

.h-75 {
  height: 75%;
}

.h-50 {
  height: 500px;
}

.h-25 {
  height: 25%;
}

.h-0 {
  height: 0%;
}

.h-auto {
  height: auto;
}

.h-100px {
  height: 100px;
}

.h-200px {
  height: 200px;
}

.w-full {
  width: 100%;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-cols-7 {
  grid-template-columns: repeat(7, 1fr);
}

.grid-cols-8 {
  grid-template-columns: repeat(8, 1fr);
}

.grid-cols-9 {
  grid-template-columns: repeat(9, 1fr);
}

.grid-cols-10 {
  grid-template-columns: repeat(10, 1fr);
}

.grid-cols-11 {
  grid-template-columns: repeat(11, 1fr);
}

.grid-cols-12 {
  grid-template-columns: repeat(12, 1fr);
}

@media (max-width: 768px) {
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-9 {
    grid-template-columns: repeat(9, 1fr);
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-10 {
    grid-template-columns: repeat(10, 1fr);
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-11 {
    grid-template-columns: repeat(11, 1fr);
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-cols-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-cols-8 {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-cols-9 {
    grid-template-columns: repeat(9, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-cols-10 {
    grid-template-columns: repeat(10, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-cols-11 {
    grid-template-columns: repeat(11, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-cols-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}

.grid-rows-1 {
  grid-template-rows: repeat(1, 1fr);
}

@media (max-width: 768px) {
  .md\:grid-rows-1 {
    grid-template-rows: repeat(1, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-rows-1 {
    grid-template-rows: repeat(1, 1fr);
  }
}

.grid-rows-2 {
  grid-template-rows: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .md\:grid-rows-2 {
    grid-template-rows: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-rows-2 {
    grid-template-rows: repeat(2, 1fr);
  }
}

.grid-rows-3 {
  grid-template-rows: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .md\:grid-rows-3 {
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-rows-3 {
    grid-template-rows: repeat(3, 1fr);
  }
}

.grid-rows-4 {
  grid-template-rows: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .md\:grid-rows-4 {
    grid-template-rows: repeat(4, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-rows-4 {
    grid-template-rows: repeat(4, 1fr);
  }
}

.grid-rows-5 {
  grid-template-rows: repeat(5, 1fr);
}

@media (max-width: 768px) {
  .md\:grid-rows-5 {
    grid-template-rows: repeat(5, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-rows-5 {
    grid-template-rows: repeat(5, 1fr);
  }
}

.grid-rows-6 {
  grid-template-rows: repeat(6, 1fr);
}

@media (max-width: 768px) {
  .md\:grid-rows-6 {
    grid-template-rows: repeat(6, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-rows-6 {
    grid-template-rows: repeat(6, 1fr);
  }
}

.grid-rows-7 {
  grid-template-rows: repeat(7, 1fr);
}

@media (max-width: 768px) {
  .md\:grid-rows-7 {
    grid-template-rows: repeat(7, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-rows-7 {
    grid-template-rows: repeat(7, 1fr);
  }
}

.grid-rows-8 {
  grid-template-rows: repeat(8, 1fr);
}

@media (max-width: 768px) {
  .md\:grid-rows-8 {
    grid-template-rows: repeat(8, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-rows-8 {
    grid-template-rows: repeat(8, 1fr);
  }
}

.grid-rows-9 {
  grid-template-rows: repeat(9, 1fr);
}

@media (max-width: 768px) {
  .md\:grid-rows-9 {
    grid-template-rows: repeat(9, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-rows-9 {
    grid-template-rows: repeat(9, 1fr);
  }
}

.grid-rows-10 {
  grid-template-rows: repeat(10, 1fr);
}

@media (max-width: 768px) {
  .md\:grid-rows-10 {
    grid-template-rows: repeat(10, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-rows-10 {
    grid-template-rows: repeat(10, 1fr);
  }
}

.grid-rows-11 {
  grid-template-rows: repeat(11, 1fr);
}

@media (max-width: 768px) {
  .md\:grid-rows-11 {
    grid-template-rows: repeat(11, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-rows-11 {
    grid-template-rows: repeat(11, 1fr);
  }
}

.grid-rows-12 {
  grid-template-rows: repeat(12, 1fr);
}

@media (max-width: 768px) {
  .md\:grid-rows-12 {
    grid-template-rows: repeat(12, 1fr);
  }
}

@media (max-width: 576px) {
  .sm\:grid-rows-12 {
    grid-template-rows: repeat(12, 1fr);
  }
}

.col-span-1 {
  grid-column: span 1;
}

.col-span-2 {
  grid-column: span 2;
}

.col-span-3 {
  grid-column: span 3;
}

.col-span-4 {
  grid-column: span 4;
}

.col-span-5 {
  grid-column: span 5;
}

.col-span-6 {
  grid-column: span 6;
}

.col-span-7 {
  grid-column: span 7;
}

.col-span-8 {
  grid-column: span 8;
}

.col-span-9 {
  grid-column: span 9;
}

.col-span-10 {
  grid-column: span 10;
}

.col-span-11 {
  grid-column: span 11;
}

.col-span-12 {
  grid-column: span 12;
}

.grid-gap-10 {
  gap: 10px;
}

.grid-gap-20 {
  gap: 20px;
}

.grid-gap-30 {
  gap: 30px;
}

.grid-gap-none {
  gap: 0px;
}

.grid-align-center {
  align-items: center;
}

.grid-justify-center {
  justify-items: center;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

@media (max-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  .md\:flex-column {
    flex-direction: column;
  }
  .md\:flex-column-reverse {
    flex-direction: column-reverse;
  }
}
@media (max-width: 576px) {
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  .sm\:flex-column {
    flex-direction: column;
  }
  .sm\:flex-column-reverse {
    flex-direction: column-reverse;
  }
}
.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

@media (max-width: 768px) {
  .md\:flex-wrap {
    flex-wrap: wrap;
  }
  .md\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .md\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
}
@media (max-width: 576px) {
  .sm\:flex-wrap {
    flex-wrap: wrap;
  }
  .sm\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .sm\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
}
.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

@media (max-width: 768px) {
  .md\:justify-start {
    justify-content: flex-start;
  }
  .md\:justify-center {
    justify-content: center;
  }
  .md\:justify-end {
    justify-content: flex-end;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
  .md\:justify-around {
    justify-content: space-around;
  }
  .md\:justify-evenly {
    justify-content: space-evenly;
  }
}
@media (max-width: 576px) {
  .sm\:justify-start {
    justify-content: flex-start;
  }
  .sm\:justify-center {
    justify-content: center;
  }
  .sm\:justify-end {
    justify-content: flex-end;
  }
  .sm\:justify-between {
    justify-content: space-between;
  }
  .sm\:justify-around {
    justify-content: space-around;
  }
  .sm\:justify-evenly {
    justify-content: space-evenly;
  }
}
.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

@media (max-width: 768px) {
  .md\:items-start {
    align-items: flex-start;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:items-end {
    align-items: flex-end;
  }
  .md\:items-stretch {
    align-items: stretch;
  }
}
@media (max-width: 576px) {
  .sm\:items-start {
    align-items: flex-start;
  }
  .sm\:items-center {
    align-items: center;
  }
  .sm\:items-end {
    align-items: flex-end;
  }
  .sm\:items-stretch {
    align-items: stretch;
  }
}
.self-auto {
  align-self: auto;
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.self-stretch {
  align-self: stretch;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink-1 {
  flex-shrink: 1;
}

.flex-column-1 {
  flex-basis: calc(100% / 1);
  max-width: calc(100% / 1);
}

.flex-column-2 {
  flex-basis: calc(100% / 2);
  max-width: calc(100% / 2);
}

.flex-column-3 {
  flex-basis: calc(100% / 3);
  max-width: calc(100% / 3);
}

.flex-column-4 {
  flex-basis: calc(100% / 4);
  max-width: calc(100% / 4);
}

.flex-column-5 {
  flex-basis: calc(100% / 5);
  max-width: calc(100% / 5);
}

.flex-column-6 {
  flex-basis: calc(100% / 6);
  max-width: calc(100% / 6);
}

.flex-column-7 {
  flex-basis: calc(100% / 7);
  max-width: calc(100% / 7);
}

.flex-column-8 {
  flex-basis: calc(100% / 8);
  max-width: calc(100% / 8);
}

.flex-column-9 {
  flex-basis: calc(100% / 9);
  max-width: calc(100% / 9);
}

.flex-column-10 {
  flex-basis: calc(100% / 10);
  max-width: calc(100% / 10);
}

.flex-column-11 {
  flex-basis: calc(100% / 11);
  max-width: calc(100% / 11);
}

.flex-column-12 {
  flex-basis: calc(100% / 12);
  max-width: calc(100% / 12);
}

@media (max-width: 768px) {
  .md\:flex-column-1 {
    flex-basis: calc(100% / 1);
    max-width: calc(100% / 1);
  }
  .md\:flex-column-2 {
    flex-basis: calc(100% / 2);
    max-width: calc(100% / 2);
  }
  .md\:flex-column-3 {
    flex-basis: calc(100% / 3);
    max-width: calc(100% / 3);
  }
  .md\:flex-column-4 {
    flex-basis: calc(100% / 4);
    max-width: calc(100% / 4);
  }
  .md\:flex-column-5 {
    flex-basis: calc(100% / 5);
    max-width: calc(100% / 5);
  }
  .md\:flex-column-6 {
    flex-basis: calc(100% / 6);
    max-width: calc(100% / 6);
  }
  .md\:flex-column-7 {
    flex-basis: calc(100% / 7);
    max-width: calc(100% / 7);
  }
  .md\:flex-column-8 {
    flex-basis: calc(100% / 8);
    max-width: calc(100% / 8);
  }
  .md\:flex-column-9 {
    flex-basis: calc(100% / 9);
    max-width: calc(100% / 9);
  }
  .md\:flex-column-10 {
    flex-basis: calc(100% / 10);
    max-width: calc(100% / 10);
  }
  .md\:flex-column-11 {
    flex-basis: calc(100% / 11);
    max-width: calc(100% / 11);
  }
  .md\:flex-column-12 {
    flex-basis: calc(100% / 12);
    max-width: calc(100% / 12);
  }
}
@media (max-width: 576px) {
  .sm\:flex-column-1 {
    flex-basis: calc(100% / 1);
    max-width: calc(100% / 1);
  }
  .sm\:flex-column-2 {
    flex-basis: calc(100% / 2);
    max-width: calc(100% / 2);
  }
  .sm\:flex-column-3 {
    flex-basis: calc(100% / 3);
    max-width: calc(100% / 3);
  }
  .sm\:flex-column-4 {
    flex-basis: calc(100% / 4);
    max-width: calc(100% / 4);
  }
  .sm\:flex-column-5 {
    flex-basis: calc(100% / 5);
    max-width: calc(100% / 5);
  }
  .sm\:flex-column-6 {
    flex-basis: calc(100% / 6);
    max-width: calc(100% / 6);
  }
  .sm\:flex-column-7 {
    flex-basis: calc(100% / 7);
    max-width: calc(100% / 7);
  }
  .sm\:flex-column-8 {
    flex-basis: calc(100% / 8);
    max-width: calc(100% / 8);
  }
  .sm\:flex-column-9 {
    flex-basis: calc(100% / 9);
    max-width: calc(100% / 9);
  }
  .sm\:flex-column-10 {
    flex-basis: calc(100% / 10);
    max-width: calc(100% / 10);
  }
  .sm\:flex-column-11 {
    flex-basis: calc(100% / 11);
    max-width: calc(100% / 11);
  }
  .sm\:flex-column-12 {
    flex-basis: calc(100% / 12);
    max-width: calc(100% / 12);
  }
}
.btn {
  margin: 2px;
  padding: 10px 20px;
  font-family: "SF NS Rounded", sans-serif;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary {
  background-color: #ff6b5c;
  color: white;
}

.btn-primary:hover {
  background-color: rgb(255, 75.4932515337, 57.3);
}

.btn-secondary {
  background-color: #f1c40f;
  color: black;
}

.btn-secondary:hover {
  background-color: rgb(217.7007874016, 176.8818897638, 12.6992125984);
}

.btn-success {
  background-color: #9dbdba;
  color: white;
}

.btn-success:hover {
  background-color: rgb(136.3243902439, 175.0756097561, 171.4426829268);
}

.btn-danger {
  background-color: #dc3545;
  color: white;
}

.btn-danger:hover {
  background-color: rgb(209.4151898734, 36.2848101266, 52.8721518987);
}

.btn-info {
  background-color: #93aec1;
  color: white;
}

.btn-info:hover {
  background-color: rgb(125.4, 157.8, 180.6);
}

.btn-outline-secondary {
  background-color: transparent;
  border: 2px solid #f1c40f;
  color: #f1c40f;
}

.btn-outline-secondary:hover {
  background-color: #f1c40f;
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #ff6b5c;
  color: #ff6b5c;
}

.btn-outline:hover {
  background-color: #ff6b5c;
  color: white;
}

.text-primary {
  color: #ff6b5c;
}

.text-secondary {
  color: #f1c40f;
}

.text-white {
  color: #ffffff;
}

.text-black {
  color: #000000;
}

.text-dark {
  color: #333333;
}

.text-success {
  color: #9dbdba;
}

.text-danger {
  color: #dc3545;
}

.bg-primary {
  background-color: #ff6b5c;
}

.bg-secondary {
  background-color: #f1c40f;
}

.bg-white {
  background-color: #ffffff;
}

.bg-black {
  background-color: #000000;
}

.bg-dark {
  background-color: #333333;
}

.bg-success {
  background-color: #9dbdba;
}

.bg-danger {
  background-color: #dc3545;
}

.text-gradient-primary {
  background: linear-gradient(90deg, #f3b7ad 0%, #ec6a52 30%, #f8b042 70%, #eac75d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  background-color: transparent;
}
.navbar .logo {
  font-family: "SF NS Rounded", sans-serif;
  color: #ff6b5c;
}
.navbar .logo h1 {
  font-family: "SF NS Rounded", sans-serif;
  font-size: 24px;
  color: #ff6b5c;
}
.navbar.navbar--burger-menu .burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}
.navbar.navbar--burger-menu .burger div {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}
.navbar.navbar--arrow-menu .arrow {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}
.navbar.navbar--arrow-menu .arrow:hover {
  color: #ff6b5c;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar .nav-links li a {
  text-decoration: none;
  font-family: "SF NS Rounded", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.navbar .nav-links li a:hover {
  color: #ff6b5c;
}
.navbar input[type=checkbox] {
  display: none;
}
.navbar .social-icons {
  display: flex;
  gap: 10px;
}
.navbar .social-icons a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
}
.navbar .social-icons a:hover {
  color: #ff6b5c;
}
@media (max-width: 768px) {
  .navbar .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }
  .navbar.navbar--burger-menu .burger {
    display: flex;
  }
  .navbar.navbar--burger-menu input[type=checkbox]:checked ~ .nav-links {
    max-height: 200px;
    background-color: #fff;
  }
  .navbar.navbar--arrow-menu .arrow {
    display: block;
  }
  .navbar.navbar--arrow-menu input[type=checkbox]:checked ~ .nav-links {
    max-height: 200px;
    background-color: #fff;
  }
  .navbar .social-icons {
    display: none;
  }
}
@media (max-width: 480px) {
  .navbar {
    padding: 10px;
  }
  .navbar .logo h1 {
    font-size: 20px;
  }
  .navbar .nav-links {
    gap: 15px;
  }
  .navbar .nav-links li a {
    font-size: 14px;
  }
  .navbar .burger div {
    width: 20px;
  }
  .navbar .arrow {
    font-size: 20px;
  }
}

.sidebar {
  width: 250px;
  color: #ecf0f1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}
.sidebar__nav {
  flex-grow: 1;
}
.sidebar__item {
  list-style: none;
}
.sidebar__link {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  color: inherit;
  font-size: 16px;
  transition: background-color 0.3s;
}
.sidebar__link:hover {
  background-color: #34495e;
}
.sidebar__icon {
  margin-right: 10px;
  font-size: 18px;
}
.sidebar__text {
  flex-grow: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}
.hero h1 {
  font-family: "SF NS Rounded", sans-serif;
  font-size: 55px;
  color: #333;
}
.hero p {
  font-family: "SF NS Rounded", sans-serif;
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}
.hero .btn-primary {
  padding: 10px 20px;
  font-family: "SF NS Rounded", sans-serif;
  background-color: #ff6b5c;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

/*# sourceMappingURL=strive-ui.css.map */
