.line-text::after {
  content: "";
  height: 2px;
  display: flex;
  width: 70px;
  margin: 0.5em auto;
  background-color: black;
  transform: skew(120deg);
}

.line-decoration {
  height: 1px;
  display: flex;
  width: 80%;
  margin: 0.5em auto;
  background-color: black;
  transform: skew(120deg);
}

.msg-status {
  position: absolute;
  top: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0.3em;
  width: 500px;
  border-radius: 10px;
  font-size: 2.4rem;
}

.succes {
  display: flex;
  background-color: rgba(173, 211, 145, 0.4431372549);
}

.error {
  display: flex;
  background-color: rgba(211, 151, 145, 0.4431372549);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 61.2px;
}

body {
  font-family: "Ubuntu", sans-serif;
}

header h1 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-top: 0.4em;
}
header .hero-image {
  position: relative;
  height: 100vh;
  top: 0;
  background-image: url("../img/tlo-palma.png");
  background-position: center;
  background-size: cover;
  z-index: 0;
}
header .hero-image__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  height: 100%;
  color: rgb(33, 32, 38);
  text-transform: uppercase;
  z-index: 5;
  padding: 10px;
  text-align: center;
  letter-spacing: 3px;
}
header .hero-image__text .main-p {
  font-size: 2rem;
}
header .hero-image__text .under-p {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0.7em;
  background-color: rgba(0, 0, 0, 0.45);
  color: rgb(245, 245, 245);
  font-size: 3rem;
  font-weight: bold;
}
header .hero-image .kirp {
  position: absolute;
  right: 3.5em;
  margin-top: 25em;
  width: 70px;
  z-index: 5;
}

.navbar {
  margin: 0 auto;
  --bs-navbar-padding-y: 0;
  color: rgb(33, 32, 38);
  width: 100%;
  position: absolute;
  top: 150px;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid white;
}
.navbar.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: rgb(255, 255, 255);
  opacity: 0.9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .container {
  display: flex;
  flex-direction: row-reverse;
}
.navbar .navbar-nav .nav-link {
  color: rgb(33, 32, 38);
  font-size: 1.5rem;
  padding: 1.3em;
}
.navbar .navbar-nav .nav-link i {
  padding-right: 0.5em;
}
.navbar .navbar-nav .nav-link:hover {
  color: rgb(129, 129, 129);
}
.navbar .navcont {
  display: flex;
  flex-direction: row;
}
.navbar .navcont .nav-link {
  color: rgb(33, 32, 38);
  font-size: 1.5rem;
  padding: 0.5em 1em;
  margin: 0;
}
.navbar .navcont .nav-link i {
  margin-right: 0.5em;
}
.navbar .navcont .nav-link .fa-envelope {
  font-size: 2.5rem;
  transition: color 0.3s;
}
.navbar .navcont .nav-link .fa-envelope:hover {
  color: rgb(129, 129, 129);
}
.navbar .navbar-toggler {
  border: none;
  color: rgb(33, 32, 38);
  padding: 1.2em;
  margin: 0 1em;
  font-size: 1.8rem;
}

.law {
  text-align: center;
}
.law__text {
  padding: 10em 0;
  margin: 0 auto;
  width: 85%;
}
.law__text-title {
  color: rgb(33, 32, 38);
  text-transform: uppercase;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 3px;
  padding-bottom: 0.5em;
}
.law__text-describe {
  color: rgb(33, 32, 38);
  margin-top: 2em;
  font-size: 1.4rem;
}

.offer {
  position: relative;
  top: 0;
  background-image: url("../img/lawbg-small.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}
.offer__text {
  color: rgb(33, 32, 38);
  padding: 7em 0;
  text-align: center;
}
.offer__text-title {
  color: rgb(33, 32, 38);
  text-transform: uppercase;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 3px;
}
.offer__bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -2;
}
.offer__box {
  padding-top: 3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.offer__box-item {
  width: 90%;
  margin: 3em;
  box-shadow: 3px -3px 6px rgb(72, 72, 72);
  background-color: rgb(246, 246, 246);
}
.offer__box-item .toggle-btn {
  background-color: transparent;
  border: none;
  width: 100%;
  padding: 2em;
  transition: background 0.3s;
}
.offer__box-item .toggle-btn:hover {
  background-color: rgb(208, 208, 208);
}
.offer__box-item h3 {
  text-align: center;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: rgb(33, 32, 38);
}
.offer__box-item h3 span {
  font-weight: bold;
}
.offer__box-item h3 .fa-solid {
  margin-right: 0.4em;
  transition: transform 0.3s ease;
}
.offer__box-item h3 .fa-solid.rotate {
  transform: rotate(90deg);
}
.offer__box-item .offer-list {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  padding: 0 1em;
  margin: 0 1em;
}
.offer__box-item .offer-list ol {
  font-size: 1.3rem;
}
.offer__box-item .offer-list ol p {
  text-align: left;
  padding: 0.5em;
  margin: 0.5em 0;
}
.offer__box-item .offer-list-section {
  margin-top: 2em;
}
.offer__box-item .offer-list-section-item {
  padding: 1em;
}
.offer__box-item .offer-list-section-item .toggle-btn {
  background-color: transparent;
  border: none;
  width: 100%;
  padding: 0.5em;
  transition: background 0.3s;
  background-color: rgb(250, 250, 250);
}
.offer__box-item .offer-list-section-item .toggle-btn:hover {
  background-color: rgb(208, 208, 208);
}
.offer__box-item .offer-list-section-item h4 {
  font-size: 1.3rem;
  margin: 0.5em;
  font-weight: bold;
  text-transform: uppercase;
  color: rgb(33, 32, 38);
}
.offer__box-item .offer-list-section-item h4 .fa-solid {
  margin-right: 0.4em;
  transition: transform 0.3s ease;
}
.offer__box-item .offer-list-section-item h4 .fa-solid.rotate {
  transform: rotate(90deg);
}
.offer__box-item .offer-list-section-item p {
  font-size: 1.2rem;
  text-align: left;
  padding: 0.5em;
  margin: 0.5em 0;
}
.offer__box-item .offer-list-section-item p span {
  font-weight: bold;
  margin-right: 0.3em;
  text-transform: uppercase;
}
.offer__box-item .offer-list-section-item .textFirst {
  padding-bottom: 0.5em;
  text-align: center;
  font-size: 1.2rem;
}
.offer__box-item .offer-list-section-item .section-box {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.offer__box-item .offer-list-section-item.open .section-box {
  max-height: 2000px;
}
.offer__box-item.open .offer-list {
  max-height: 2000px;
}

.team {
  margin: 0 auto;
  padding: 7em 0;
}
.team__text {
  text-align: center;
}
.team__text-title {
  color: rgb(33, 32, 38);
  text-transform: uppercase;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 3px;
}
.team__box {
  display: flex;
  flex-direction: column;
}
.team__box-firstLaw {
  width: 300px;
  height: 300px;
  background-image: url("../img/mainfoto.png");
  background-size: cover;
  margin: 0.5em;
}
.team__box-secondLaw {
  width: 300px;
  height: 300px;
  background-image: url("../img/secondLaw.png");
  background-size: cover;
  background-position: center;
  margin: 0.5em;
}
.team__box-text {
  margin-top: 2em;
  width: 100%;
}
.team__box-text h3 {
  color: rgb(33, 32, 38);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
.team__box-text h4 {
  color: rgb(33, 32, 38);
  font-size: 1.4em;
  margin-bottom: 2em;
  font-style: italic;
}
.team__box-text p {
  color: rgb(33, 32, 38);
  font-size: 1.3em;
}
.team__box-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 3em;
  padding: 1em;
}
.team .under_text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.team .under_text-info {
  padding-top: 5em;
  text-align: center;
  font-size: 1.3em;
  width: 90%;
  margin: 0 auto;
  color: rgb(111, 110, 110);
}

.price {
  position: relative;
  margin: 0 auto;
  padding: 7em 0;
  background-image: url("../img/price-small.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}
.price__text {
  color: rgb(33, 32, 38);
}
.price__text-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 2px;
}
.price__text-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 5em;
  margin: 0 auto;
}
.price__text-box-describe {
  margin: 1em 2em;
  font-size: 1.3em;
}
.price__text-box-first {
  margin: 1em 2em;
  font-size: 1.4em;
}
.price__text-box-info {
  padding-top: 3em;
  margin: 1em 2em;
  font-size: 1.3em;
  text-align: center;
}
.price__text-box .bold-text {
  font-weight: bold;
}
.price__bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -2;
}

.contact {
  margin: 0 auto;
  padding: 7em 0;
  color: rgb(33, 32, 38);
}
.contact__title {
  text-align: center;
  text-transform: uppercase;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 2em;
}
.contact__box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  background-color: rgb(249, 249, 249);
}
.contact__box-item {
  padding: 1em;
}
.contact__box-item h3 {
  font-size: 3.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}
.contact__box-item p {
  margin: 1em;
  font-size: 1.4em;
}
.contact__box .contact-one {
  text-align: center;
  padding-top: 2em;
}
.contact__box .contact-one p {
  text-transform: uppercase;
}
.contact__box .contact-two p {
  margin: 1em 0;
  align-items: left;
}
.contact__box .contact-two p i {
  margin-right: 1em;
}
.contact__contactUs {
  text-align: center;
  text-transform: uppercase;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 3px;
  margin-top: 2em;
}
.contact .contact__form {
  position: relative;
  color: rgb(33, 32, 38);
  margin: 0 auto;
  margin-top: 6.4em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.contact .contact__form-box {
  margin: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.contact .contact__form-box input {
  padding: 0.5em;
  font-size: 1.4em;
  width: 90%;
  border: none;
  box-shadow: 0 0 5px rgb(176, 176, 176);
}
.contact .contact__form-box textarea {
  padding: 0.5em;
  font-size: 1.4em;
  width: 90%;
  border: none;
  box-shadow: 0 0 5px rgb(176, 176, 176);
}
.contact .contact__form-btn {
  margin: 1em;
  padding: 0.5em 4em;
  font-size: 1.4rem;
  border: none;
  border-radius: 10px;
  background-color: rgb(240, 240, 240);
  transition: background-color 0.3s;
  color: rgb(33, 32, 38);
}
.contact .contact__form-btn:hover {
  background-color: rgb(226, 225, 225);
}

.map iframe {
  width: 100%;
}

footer p {
  padding: 0.5em;
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
  header h1 {
    font-size: 3.8rem;
    margin-top: 1em;
  }
  header .hero-image {
    height: 1100px;
    top: 0;
  }
  header .hero-image__text .under-p {
    font-size: 3.8rem;
  }
  header .hero-image .kirp {
    margin-top: 5em;
    left: 7em;
  }
  .navbar {
    width: 90%;
    --bs-navbar-padding-y: 0.5;
    top: 210px;
    left: 50%;
    transform: translate(-50%);
    border-radius: 5px;
  }
  .navbar.sticky {
    border-radius: 0;
  }
  .navbar .navbar-nav .nav-link {
    color: rgb(33, 32, 38);
  }
  .navbar .navbar-toggler {
    color: rgb(33, 32, 38);
    padding: 1.4em;
    margin: 0 1em;
    font-size: 1.8rem;
  }
  .law__text {
    padding: 8em 0;
    width: 80%;
  }
  .law__text-title {
    font-size: 3.6rem;
  }
  .law__text-describe {
    margin-top: 2em;
    font-size: 1.5rem;
  }
  .offer {
    top: 0;
    background-image: url("../img/lawbg.jpg");
  }
  .offer__text {
    padding: 8em 0;
  }
  .offer__text-title {
    font-size: 3.6rem;
  }
  .offer__box {
    padding-top: 2em;
  }
  .offer__box-item {
    width: 80%;
    margin: 3em;
  }
  .offer__box-item h3 {
    font-size: 2rem;
  }
  .offer__box-item h3 .fa-solid {
    margin-right: 0.7em;
  }
  .offer__box-item .offer-list ol {
    font-size: 1.4rem;
  }
  .offer__box-item .offer-list-section {
    margin-top: 3em;
  }
  .offer__box-item .offer-list-section-item {
    padding: 1em;
  }
  .offer__box-item .offer-list-section-item h4 {
    font-size: 1.4rem;
    margin: 0.5em;
  }
  .offer__box-item .offer-list-section-item h4 .fa-solid {
    margin-right: 0.7em;
  }
  .offer__box-item .offer-list-section-item p {
    font-size: 1.3rem;
    padding: 0.5em;
    margin: 0.5em 0;
  }
  .offer__box-item .offer-list-section-item .textFirst {
    padding-bottom: 0.5em;
    font-size: 1.3rem;
  }
  .team {
    padding: 8em 0;
  }
  .team__text-title {
    font-size: 3.6rem;
  }
  .team__box-firstLaw {
    width: 400px;
    height: 400px;
  }
  .team__box-secondLaw {
    width: 400px;
    height: 400px;
  }
  .team__box-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5em;
  }
  .team__box-text h4 {
    font-size: 1.6em;
    margin-bottom: 2em;
  }
  .team__box-text p {
    font-size: 1.5em;
    margin: 2em 3em;
  }
  .team .under_text {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .team .under_text-info {
    text-align: center;
    width: 80%;
    font-size: 1.5em;
  }
  .price {
    margin: 0 auto;
    padding: 8em 0;
  }
  .price__text-title {
    font-size: 3.6rem;
    letter-spacing: 3px;
  }
  .price__text-box {
    margin: 0 auto;
  }
  .price__text-box-describe {
    margin: 1em 3em;
    font-size: 1.6rem;
  }
  .price__text-box-first {
    margin: 1em 3em;
    font-size: 1.7em;
  }
  .price__text-box-info {
    padding-top: 3em;
    margin: 1em 3em;
    font-size: 1.6rem;
    text-align: center;
  }
  .contact {
    margin: 0 auto;
    padding: 8em 0;
    width: 95%;
  }
  .contact__title {
    font-size: 3.6rem;
    margin-bottom: 2em;
  }
  .contact__box {
    flex-direction: row;
  }
  .contact__box-item {
    width: 50%;
    padding: 2em;
    margin: 2em;
  }
  .contact__box-item h3 {
    font-size: 3.6rem;
  }
  .contact__box-item p {
    margin: 1em;
    font-size: 1.6rem;
  }
  .contact__box .contact-two p {
    margin: 2em 0;
  }
  .contact__box .contact-two p i {
    margin-right: 1em;
  }
  .contact .contact-line {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 1px;
    background-color: black;
  }
  .contact__contactUs {
    font-size: 3.6rem;
    letter-spacing: 3px;
    margin-top: 2.2em;
  }
  .contact .contact__form {
    margin: 0 auto;
    margin-top: 5em;
    padding-top: 2em;
    width: 100%;
  }
  .contact .contact__form-box {
    margin: 1em;
    width: 100%;
  }
  .contact .contact__form-box input {
    padding: 0.5em;
    font-size: 1.6rem;
    width: 80%;
  }
  .contact .contact__form-box textarea {
    padding: 0.5em;
    font-size: 1.6rem;
    width: 80%;
  }
  .contact .contact__form-btn {
    margin: 1em;
    padding: 0.5em 4em;
    font-size: 1.6rem;
  }
}
@media (min-width: 1001px) {
  header .hero-image .kirp {
    left: 10em;
  }
  .navbar {
    width: 75%;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 1.5rem;
    padding: 0.5em 1.19em;
  }
  .navbar .navcont .nav-link {
    font-size: 1.5rem;
    padding: 0.5em 1.19em;
  }
}
@media (min-width: 992px) {
  html {
    scroll-padding-top: 59.1px;
  }
  header h1 {
    font-size: 5rem;
    margin-top: 0.4em;
  }
  header .hero-image {
    height: 1100px;
    top: 0;
  }
  header .hero-image__text {
    letter-spacing: 5px;
  }
  header .hero-image__text .main-p {
    font-size: 2.8rem;
  }
  header .hero-image__text .under-p {
    padding: 1em;
    font-size: 5rem;
  }
  header .hero-image .kirp {
    margin-top: 5em;
    width: 90px;
  }
  .navbar {
    width: 80%;
    top: 210px;
    left: 50%;
    transform: translate(-50%);
    border-bottom: 1px solid white;
  }
  .navbar.sticky {
    border-radius: 0;
    padding: 1em;
  }
  .navbar .navbar-nav .nav-link {
    color: rgb(33, 32, 38);
    font-size: 1.5rem;
    padding: 0.5em 1.2em;
  }
  .navbar .navbar-toggler {
    color: rgb(33, 32, 38);
    padding: 1.4em;
    margin: 0 1em;
    font-size: 1.8rem;
  }
  .law__text {
    padding: 10em 0;
    width: 70%;
  }
  .law__text-title {
    font-size: 4.2rem;
  }
  .law__text-describe {
    margin-top: 2em;
    font-size: 1.8rem;
  }
  .offer {
    top: 0;
    background-image: url("../img/lawbg.jpg");
  }
  .offer__text {
    padding: 10em 0;
  }
  .offer__text-title {
    font-size: 4.2rem;
  }
  .offer__box {
    padding-top: 3em;
    display: flex;
  }
  .offer__box-item {
    width: 75%;
    margin: 3em;
  }
  .offer__box-item h3 {
    font-size: 2.4rem;
  }
  .offer__box-item h3 .fa-solid {
    margin-right: 1em;
  }
  .offer__box-item .offer-list ol {
    font-size: 1.8rem;
  }
  .offer__box-item .offer-list-section {
    margin-top: 3em;
  }
  .offer__box-item .offer-list-section-item {
    padding: 1em;
  }
  .offer__box-item .offer-list-section-item h4 {
    font-size: 1.8rem;
    margin: 0.5em;
  }
  .offer__box-item .offer-list-section-item h4 .fa-solid {
    margin-right: 1em;
  }
  .offer__box-item .offer-list-section-item p {
    font-size: 1.7rem;
    padding: 0.5em;
    margin: 0.5em 0;
  }
  .offer__box-item .offer-list-section-item .textFirst {
    padding-bottom: 0.5em;
    font-size: 1.7rem;
  }
  .team {
    padding: 10em 0;
  }
  .team__text-title {
    padding-bottom: 0.5em;
    font-size: 4.2rem;
  }
  .team__box-firstLaw {
    width: 550px;
    height: 550px;
  }
  .team__box-secondLaw {
    height: 550px;
    width: 550px;
  }
  .team__box-text {
    width: 40%;
  }
  .team__box-text h3 {
    font-size: 2.8rem;
    margin-bottom: 0.5em;
  }
  .team__box-text h4 {
    font-size: 1.8em;
    margin-bottom: 2em;
  }
  .team__box-text p {
    font-size: 1.6em;
  }
  .team__box-item {
    flex-direction: row;
    margin: 3em;
    padding: 1em;
  }
  .team .under_text {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .team .under_text-info {
    text-align: center;
    width: 75%;
    font-size: 1.6em;
  }
  .price {
    margin: 0 auto;
    padding: 10em 0;
    background-image: url("../img/price-big.jpg");
  }
  .price__text-title {
    font-size: 4.2rem;
  }
  .price__text-box {
    padding-top: 5em;
    margin: 0 auto;
  }
  .price__text-box-describe {
    margin: 1em 6em;
    font-size: 1.8rem;
  }
  .price__text-box-first {
    margin: 1em 6em;
    font-size: 1.9em;
  }
  .price__text-box-info {
    padding-top: 3em;
    margin: 1em 6em;
    font-size: 1.8rem;
    text-align: center;
  }
  .contact {
    margin: 0 auto;
    padding: 10em 0;
    width: 80%;
  }
  .contact__title {
    font-size: 4.2rem;
    margin-bottom: 2em;
  }
  .contact__box-item {
    padding: 2em;
    margin: 2em;
  }
  .contact__box-item h3 {
    font-size: 4.2rem;
  }
  .contact__box-item p {
    margin: 1em;
    font-size: 1.8rem;
  }
  .contact__box .contact-two p {
    margin: 2em 0;
  }
  .contact__box .contact-two p i {
    margin-right: 1em;
  }
  .contact__contactUs {
    font-size: 4.2rem;
    letter-spacing: 3px;
    margin-top: 3em;
  }
  .contact .contact__form {
    margin: 0 auto;
    margin-top: 6.4em;
    padding-top: 2em;
    width: 100%;
  }
  .contact .contact__form-box {
    margin: 1em;
    width: 100%;
  }
  .contact .contact__form-box input {
    padding: 0.5em;
    font-size: 1.8rem;
    width: 70%;
  }
  .contact .contact__form-box textarea {
    padding: 0.5em;
    font-size: 1.8rem;
    width: 70%;
  }
  .contact .contact__form-btn {
    margin: 1em;
    padding: 0.5em 4em;
    font-size: 1.8rem;
  }
}
@media (min-width: 1173px) {
  header .hero-image .kirp {
    left: 18em;
  }
  .navbar {
    width: 70%;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 1.6rem;
    padding: 0.5em 1.28em;
  }
  .navbar .navcont .nav-link {
    font-size: 1.6rem;
    padding: 0.5em 1.28em;
  }
}
@media (min-width: 1338px) {
  header .hero-image .kirp {
    left: 18em;
  }
  .navbar {
    width: 73%;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 1.8rem;
    padding: 0.5em 1.5em;
  }
  .navbar .navcont .nav-link {
    font-size: 1.8rem;
    padding: 0.5em 1.5em;
  }
}/*# sourceMappingURL=style.css.map */