/* page */
*,
html,
body {
  margin: 0;
  padding: 0;
  max-width: 100vw;

  font-style: normal;
}

*,
body {
  max-width: 100vw;
}

body {
  max-width: 100vw;
  height: auto !important;
}

.body-wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.menu-item-selected {
  color: #003bba !important;
  font-weight: 700;
}

.cover-container {
  background: url(/img/Rectangle28933.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(8px);
  z-index: 0;
}

.tr_first {
  width: 100%;
}

.item_wrap {
  width: 100%;
}

.image-container {
  position: relative;
  width: 320px;
  min-width: 320px;

  border-radius: 16px;
  border: 1px solid #e5e5e5;
}

.img-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
}

.img-container img {
  border-radius: 16px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /* This ensures the image fills the container without distortion */
}

.image-mobile {
  display: none;
}

.image-container img {
  border-radius: 16px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /* This ensures the image fills the container without distortion */
}

.item-title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  /* 133.333% */
  /* 140% */
}

.active-item {
  height: auto;
  opacity: 1;
  transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translateX(0px);
  width: 100%;
}

.hidden-item {
  height: 0px;
  opacity: 0;
  position: absolute;
  transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translateY(200px);
  z-index: -1;
}

.item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}

.item-date {
  color: #616161;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.web-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px;
}

.tag-list__wrapper {
  max-height: 300px;
  overflow: auto;
}

.search-bar {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: #fff;
  max-width: 808px;
  width: 100%;
  height: 48px;
}

.search-mobile {
  display: none !important;
}

.search-bar input {
  height: 40px;
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.search-bar input:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pagination {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.pagination div {
  color: #848484;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 114.286% */

  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #f6f6f6;
}

.pagination div.active {
  color: #fff;
  background: #828282;
}

.pagination-numbers {
  overflow: auto;
}

.pagination-numbers li {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #f6f6f6;
  cursor: pointer;
}

.pagination-numbers button {
  cursor: pointer;
}

.pagination-numbers li.active {
  color: #fff;
  background: #828282;
}

.blog-list {
  gap: 72px;
}

.item_wrap {
  width: 100%;
}

.select-menu {
  width: 100%;
  display: flex;
  position: relative;
}

.select-btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border: 1px solid #dfdfdf;
  padding: 8px 16px;
  position: relative;
  border-radius: 8px;
  max-width: 288px;
  width: 100%;
}

.select-menu .options {
  z-index: 50;
  position: absolute;
  flex-direction: column;
  left: 0;
  top: 50px;
  backdrop-filter: blur(6px);
  justify-content: center;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  display: block;
  background: #fff;
  display: none;
  width: 100%;
  max-width: 288px;
}

.select-menu.active .options {
  display: flex;

  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translateX(0);
}

.option.active {
  color: #003bba;
  background: #f2f2f2 !important;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}

.options .option {
  width: 100%;
  padding: 20px;
  align-items: center;
  gap: 10px;
  background: #fff;
}

.options .option:hover {
  background: #f2f2f2;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}

.option i {
  font-size: 25px;
  margin-right: 12px;
}

.option .option-text {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 140% */
}

.active-item {
  width: 100%;
}

.card-content {
  overflow-y: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  -ms-line-clamp: 2;
  line-clamp: 2;
}

.tabs_left {
  top: 96px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding: 4px 6px;
  border-radius: 10px;
}

.tabs_left li {
  color: #616161;
  /* Button text M18 */
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 133.333% */
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  background: #fff;
  border-radius: 8px;
}

.tabs_left li.active {
  color: #003bba;
  font-weight: 700;
  background: #003bba;
  color: #fff;
}

.tabs_right {
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.item-title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}

.active-item {
  height: auto;
  opacity: 1;
  transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translateX(0px);
}

.hidden-item {
  height: 0px;
  opacity: 0;
  position: absolute;
  transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translateY(200px);
  z-index: -1;
}

.select-menu {
  display: none;
}

.item-tag {
  display: flex;
  height: 24px;
  padding: 0px 8px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 4px;
  background: #ecf2ff;
  color: #525252;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 160% */
  text-transform: uppercase;
}

.tabs_wrap {
  flex-direction: column;
  align-items: flex-start;
}

.left-container {
  max-width: 808px;
}

.categories-item {
  width: max-content;
}

.category-wrapper {
  border: 1px solid #dfdfdf;
  background: #fff;
  width: max-content;
  border-radius: 8px;
}

.tags-wrapper {
  height: fit-content;
  width: 250px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  top: 88px;
}

.customer-story-wrapper {
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.author__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.author__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.author__name {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.blog-author {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 8px;
}


.find-wrapper {
  padding: 16px 8px 16px 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.item-list-tag {
  height: 28px;
  display: flex;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #dfdfdf;
  background: #fff;
  text-transform: none;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 1024px) {
  .search-mobile {
    display: flex !important;
  }

  .left-container {
    max-width: none;
  }

  .find-container {
    display: none;
  }

  .cover-container {
    display: none;
  }

  .content-container {
    flex-direction: column !important;
  }

  .bottom-item {
    width: calc(50% - 12px);
  }

  .customer-story-wrapper {
    flex-direction: row !important;
    flex-wrap: wrap;
  }

  .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .image-container {
    width: auto;
    min-width: auto;
  }

  .tags-wrapper {
    width: 100%;
  }

  .item_wrap {
    width: calc(50% - 10px);
  }

  .pagination-numbers {
    gap: 8px !important;
  }

  .tabs_wrap {
    flex-direction: column;
    gap: 4px !important;
  }

  .categories-item {
    width: max-content;
    min-width: max-content;
  }

  .category-wrapper {
    width: 100%;
    overflow-x: auto;
  }

  .blog-list {
    row-gap: 48px;
    column-gap: 20px;
  }

  .search-bar {
    max-width: none;
    width: 100%;
    height: 42px;
  }

  .select-btn {
    max-width: none;
    width: 100%;
  }

  .select-menu .options {
    max-width: none;
    width: calc(50% - 4px);
  }

  .content-container {
    margin-top: 96px !important;
  }

  .tabs_right {
    width: 100%;
    min-height: none;
  }

  .select-menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .select-btn {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 12px;
  }

  .select-menu .options {
    position: fixed;
    z-index: 1000;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: rgba(39, 41, 46, 0.5);
    backdrop-filter: blur(6px);
    justify-content: center;
    transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: translateX(-100%);
    display: block;
  }

  .select-menu.active .options {
    display: flex;
    flex-direction: column;
    transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: translateX(0);
  }

  .option.active {
    color: #003bba;
  }

  .options .option {
    max-width: 268px;
    width: 100%;
    padding: 20px;
    align-items: center;
    gap: 10px;
    border-radius: 0px 100px 100px 0px;
    background: #fff;
    margin-bottom: 12px;
  }

  .options .option:hover {
    background: #f2f2f2;
  }

  .option i {
    font-size: 25px;
    margin-right: 12px;
  }

  .option .option-text {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
  }

  .tab-web {
    display: none !important;
  }
}

@media only screen and (max-width: 600px) {
  .image-mobile {
    display: flex !important;
  }
  .image-desktop {
    display: none !important;
  }
  .tag-wrapper {
    order: 5;
  }
  .date-wrapper {
    order: 6;
  }

  .select-menu.tabs_wrap {
    flex-wrap: wrap;
  }

  .bottom-item {
    width: 100%;
  }

  .pagination-numbers {
    gap: 4px !important;
  }

  .select-btn {
    margin-bottom: 0;
  }

  .select-menu {
    gap: 8px;
  }

  .tabs_wrap {
    margin-bottom: 24px;
    top: 54px !important;
  }

  .content-container {
    margin-top: 70px !important;
  }

  .tabs_right {
    width: 100%;
    min-height: none;
  }

  .image-container {
    max-width: none;
  }

  .item {
    flex-direction: column;
  }

  .item-img {
    width: 100%;
    height: 81%;
  }

  .item_wrap {
    width: 100%;
  }

  .form-input {
    gap: 16px;
    padding: 16px 28px;
    background: #f9f9f9;
    position: sticky;
    top: 70px;
  }

  .select-menu .options {
    max-width: none;
    width: 100%;
  }
}
