@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap");
.h-500 {
  height: 500px;
}

.p-b-100 {
  padding-bottom: 130px;
}

.facultiesview {
  background: none;
  box-shadow: none;
  max-width: 1920px;
  padding: 0%;
}
.facultiesview .item1 {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  padding: 30px 52px;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  background-color: white;
}
@media screen and (max-width: 1024px) {
  .facultiesview .item1 {
    padding: 20px 20px;
  }
}
.facultiesview .item1 .box-title {
  background-color: #627e94;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .facultiesview .item1 .box-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
  }
}
.facultiesview .item1 .box-title .bg-icon {
  height: 100%;
  position: absolute;
  right: 0px;
}
@media screen and (max-width: 1440px) {
  .facultiesview .item1 .box-title .bg-icon {
    display: none;
  }
}
.facultiesview .item1 .box-title .bg-icon img {
  display: flex;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.facultiesview .item1 .box-title__img {
  padding: 0.8rem;
  height: 400px;
}
.facultiesview .item1 .box-title .b_image {
  padding: 0.8rem;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 1024px) {
  .facultiesview .item1 .box-title .b_image {
    width: 100%;
  }
}
.facultiesview .item1 .box-title .b_image img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .facultiesview .item1 .box-title .b_image img {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 1024px) {
  .facultiesview .item1 .box-title__body {
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill;
  }
}
.facultiesview .item1 .box-title__body_text {
  font-size: 12px;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  .facultiesview .item1 .box-title__body_text {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .facultiesview .item1 .box-title__body_text a {
    text-align: end;
  }
}
.facultiesview-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.facultiesview-accordion .tab {
  width: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.facultiesview-accordion .tab__label {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 75px;
  width: 100%;
  background-color: rgba(98, 126, 148, 0.71);
  border-radius: 8px;
}
.facultiesview-accordion .tab__label p {
  border: 1;
  text-align: center;
  color: white;
  font-size: large;
}
.facultiesview-accordion .tab__label::after {
  position: absolute;
  right: 0.5rem;
  content: "❯";
  width: 2em;
  height: 2em;
  font-size: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
  color: white;
}
.facultiesview-accordion .tab input {
  opacity: 0;
  z-index: -1;
}
.facultiesview-accordion .tab input:checked ~ .tab__content {
  max-height: 50rem;
}
.facultiesview-accordion .tab input:checked ~ .tab__label::after {
  transform: rotate(270deg);
}
.facultiesview-accordion .tab__content {
  text-align: justify;
  width: 100%;
  max-height: 0;
  overflow: auto;
  transition: all 0.5s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.facultiesview-accordion .tab__content_text {
  padding: 0.5rem;
  color: #5d809b;
}
.facultiesview-accordion .tab__content .big-item {
  width: 46%;
}
.facultiesview-accordion .tab__content .small-item {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .facultiesview-accordion .tab__content .big-item, .facultiesview-accordion .tab__content .small-item {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .facultiesview-accordion .tab__content .big-item, .facultiesview-accordion .tab__content .small-item {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1700px) {
  .facultiesview-accordion .tab__content .big-item, .facultiesview-accordion .tab__content .small-item {
    width: 45%;
  }
}
.facultiesview-accordion .tab__content_item {
  height: 320px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  border: 0.5px solid rgba(98, 126, 148, 0.5);
}
.facultiesview-accordion .tab__content_item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.facultiesview-accordion .tab__content_item .body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 30%;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  position: absolute;
  bottom: 0px;
}
.facultiesview-accordion .tab__content_item .body .text, .facultiesview-accordion .tab__content_item .body .date {
  color: white;
  padding: 0rem 0.5rem;
}
.facultiesview-accordion .tab__content_item .body .date {
  font-size: 12px;
}
.facultiesview-accordion .tab__content_item .body .text {
  text-wrap: wrap;
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(0.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-0.25rem);
  }
}
.facultiesview-box {
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  overflow: hidden;
  gap: 2rem;
  width: 100%;
}
.facultiesview-box__img {
  width: 35%;
  height: 100%;
}
.facultiesview-box__img img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.facultiesview-box__body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding-left: 1rem;
}
.facultiesview-box__body_text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8rem;
}
.facultiesview-box__body_text .title, .facultiesview-box__body_text .value {
  color: white;
  font-size: 20px;
}
@media screen and (max-width: 1440px) {
  .facultiesview-box__body_text .title, .facultiesview-box__body_text .value {
    font-size: 14px;
  }
}
.facultiesview-box__body_text .title {
  font-weight: normal;
  width: 150px;
}
.facultiesview-box__body_text .value {
  font-weight: bold;
}
.facultiesview-item {
  display: flex;
  flex-direction: column;
  box-shadow: none;
  gap: 4rem;
}
.facultiesview-item__title {
  width: 100%;
}
.facultiesview-item__title .title_text {
  color: #5d809b;
  text-align: start;
  font-size: 25px;
  font-weight: bold;
  padding-left: 1rem;
}
.facultiesview-video {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.facultiesview-video_video {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill;
}
.facultiesview-video_video video {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  height: 500px;
  border-radius: 12px;
}
.facultiesview-video_text {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  padding: 1.5rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #5d809b;
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .facultiesview-video_text {
    padding: 0rem;
  }
}
.facultiesview-video_text .title {
  font-size: 24px;
  color: #5d809b;
  font-weight: 900;
}
.facultiesview-video_text .text {
  overflow: hidden;
  height: 500px;
  overflow-y: scroll;
}
.facultiesview-item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}
.facultiesview-item__title_text {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  background-color: #627e94;
  color: white;
  border-radius: 12px;
  padding: 1rem 1rem;
  font-size: 24px;
}
.facultiesview-item__body .tab__content {
  width: 100%;
  overflow: auto;
  transition: all 0.5s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.facultiesview-item__body .tab__content_text {
  padding: 0.5rem;
  color: #5d809b;
}
.facultiesview-item__body .tab__content .big-item {
  width: 46%;
}
.facultiesview-item__body .tab__content .small-item {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .facultiesview-item__body .tab__content .big-item, .facultiesview-item__body .tab__content .small-item {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .facultiesview-item__body .tab__content .big-item, .facultiesview-item__body .tab__content .small-item {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1700px) {
  .facultiesview-item__body .tab__content .big-item, .facultiesview-item__body .tab__content .small-item {
    width: 45%;
  }
}
.facultiesview-item__body .tab__content_item {
  height: 320px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  border: 0.5px solid rgba(98, 126, 148, 0.5);
}
.facultiesview-item__body .tab__content_item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.facultiesview-item__body .tab__content_item .body {
  display: flex;
  flex-direction: column;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  height: 20%;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  position: absolute;
  bottom: 0px;
  padding: 1rem;
  gap: 0.5rem;
}
.facultiesview-item__body .tab__content_item .body .text, .facultiesview-item__body .tab__content_item .body .date {
  color: white;
  padding: 0rem 0.5rem;
}
.facultiesview-item__body .tab__content_item .body .date {
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  width: 60px;
  padding: 0.1rem 0.5rem;
  border-radius: 4px 0px 4px 0px;
}
.facultiesview-item__body .tab__content_item .body .text {
  text-wrap: wrap;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Qatorlar sonini belgilang */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.facultiesview-item__body .tab__content_item .body:hover {
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill;
}
.facultiesview-item__body .tab__content_item .body:hover .text {
  -webkit-line-clamp: none;
}
.facultiesview-item__moreview {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  height: 133px;
  background: linear-gradient(180deg, rgba(133, 154, 171, 0) 0%, rgba(133, 154, 171, 0.8) 49%, #859AAB 100%);
  position: absolute;
  bottom: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.facultiesview-item__moreview input {
  opacity: 0;
  display: none;
  z-index: -1;
}
.facultiesview-item__moreview input:checked ~ .mousebtn {
  transform: rotate(180deg);
}
.facultiesview-item__moreview .mousebtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.facultiesview-item__moreview .mousebtn .mouse {
  width: 35px;
  height: 35px;
}
.facultiesview-item__moreview .mousebtn .vektor {
  display: flex;
  flex-direction: column;
}
.facultiesview-item__moreview .mousebtn .vektor svg {
  width: 15px;
  height: 15px;
  transition: all 1s linear;
}
.facultiesview-item__moreview .mousebtn .vektor1 {
  animation: downAnime 1s linear infinite;
}
.facultiesview-item__moreview .mousebtn .vektor2 {
  animation: downAnime 1s linear 0.1s infinite;
}
@keyframes downAnime {
  0% {
    transform: translateY(5px);
  }
}
.facultiesview-partners {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
.facultiesview-partners .partnersSwiper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.facultiesview-partners .partnersSwiper .swiper-wrapper {
  width: 100%;
}
.facultiesview-partners .partnersSwiper .swiper-wrapper .swiper-slide {
  width: 200px;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.facultiesview-partners .partnersSwiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.facultiesview-partners .partnersSwiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.facultiesview-news {
  display: grid;
  grid-auto-flow: row dense;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  gap: 30px;
}
.facultiesview-news__item {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  padding-bottom: 1rem;
  border-radius: 20px;
  background: #FFF;
  padding: 1rem;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(98, 126, 148, 0.5);
  display: flex;
  flex-direction: row;
}
.facultiesview-news__item_img {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  height: 150px;
}
.facultiesview-news__item_img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.facultiesview-news__item_body {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.facultiesview-news__item_body .texts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.facultiesview-news__item_body .date, .facultiesview-news__item_body .text {
  color: #5d809b;
}
.facultiesview-news__item_body .date {
  font-size: 12px;
  border: 1px solid rgba(98, 126, 148, 0.3);
  position: relative;
  width: 60px;
  padding: 0.2rem 0.5rem;
  border-radius: 4px 0px 4px 0px;
}
.facultiesview-news__item_body .text {
  line-height: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Qatorlar sonini belgilang */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.facultiesview-news__item_body .btns {
  text-align: end;
}
.facultiesview-news__item_body .btns .btn {
  padding: 0.3rem 1rem;
  border: 1px solid #627e94;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #5d809b;
}
.facultiesview-news__vertical {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.facultiesview-news__horizontal {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.facultiesview-announs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.facultiesview-announs__item {
  min-height: 150px;
  border-radius: 20px;
  background: #FFF;
  border: 1px solid rgba(98, 126, 148, 0.5);
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.25);
}
.facultiesview-announs__item_img {
  width: 70%;
  height: 100%;
}
.facultiesview-announs__item_img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.facultiesview-announs__item_body {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.facultiesview-announs__item_body .texts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.facultiesview-announs__item_body .date, .facultiesview-announs__item_body .text {
  color: #5d809b;
}
.facultiesview-announs__item_body .date {
  font-size: 12px;
  border: 1px solid rgba(98, 126, 148, 0.3);
  position: relative;
  width: 60px;
  padding: 0.2rem 0.5rem;
  border-radius: 4px 0px 4px 0px;
}
.facultiesview-announs__item_body .text {
  line-height: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Qatorlar sonini belgilang */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.facultiesview-announs__item_body .btns {
  text-align: end;
}
.facultiesview-announs__item_body .btns .btn {
  padding: 0.3rem 1rem;
  border: 1px solid #627e94;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #5d809b;
}
.facultiesview-staffs {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
.facultiesview-staffs .staffsSwiper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem;
}
.facultiesview-staffs .staffsSwiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
}
.facultiesview-staffs .staffsSwiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.facultiesview-staffs__item {
  border-radius: 12px;
  width: 100%;
  min-height: 500px;
  max-height: 500px;
  background-color: white;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(98, 126, 148, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.facultiesview-staffs__item_img {
  overflow: hidden;
  border-radius: 12px 12px 0px 0px;
  height: 330px;
}
.facultiesview-staffs__item_img img {
  display: flex;
  flex: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.facultiesview-staffs__item_body {
  display: block;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1rem;
}
.facultiesview-staffs__item_body .texts {
  padding: 0rem 1rem;
  height: 5rem;
}
.facultiesview-staffs__item_body_name, .facultiesview-staffs__item_body_staff {
  color: #5d809b;
}
.facultiesview-staffs__item_body_staff {
  font-size: 14px;
}
.facultiesview-staffs__item_body_connect {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.facultiesview-staffs__item_body_connect_container {
  bottom: 0px;
  border-radius: 30px;
  width: 100px;
  background-color: #627e94;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
}
.facultiesview-staffs__item_body_connect_container_item {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.facultiesview-staffs__item_body_connect_container_item img {
  width: 15px;
  height: 15px;
}
.facultiesview-department {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
.facultiesview-department .departmentSwiper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem;
}
.facultiesview-department .departmentSwiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
}
.facultiesview-department .departmentSwiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.facultiesview-department__simple {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  flex-wrap: wrap;
}
.facultiesview-department__simple_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(98, 126, 148, 0.5);
}
.facultiesview-department__simple_item_img {
  width: 20%;
  text-align: center;
}
.facultiesview-department__simple_item_img img {
  width: 100%;
}
.facultiesview-department__simple_item_text {
  text-align: center;
  color: #5d809b;
  font-weight: bold;
  font-size: 20px;
}
.facultiesview-department__item {
  border-radius: 12px;
  width: 100%;
  background-color: white;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  text-align: center;
}
.facultiesview-department__item_img {
  overflow: hidden;
  border-radius: 12px 12px 0px 0px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-radius: 1px solid #627e94;
}
.facultiesview-department__item_img img {
  width: 50px;
  height: 50px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.facultiesview-department__item_text {
  color: #5d809b;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .facultiesview .facultiesview-news,
  .facultiesview .facultiesview-announs,
  .facultiesview .facultiesview-department__simple {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .facultiesview .facultiesview-news,
  .facultiesview .facultiesview-announs,
  .facultiesview .facultiesview-department__simple {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .facultiesview .facultiesview-news,
  .facultiesview .facultiesview-announs,
  .facultiesview .facultiesview-department__simple {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}/*# sourceMappingURL=style.css.map */