body {
  font-family: "Inter", sans-serif;
  background: rgb(245, 245, 245);
}
body h3 {
  font-size: 16px;
}

.sidebar {
  color: rgb(120, 118, 134);
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 256px;
  background: #fff;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  z-index: 100;
  overflow-y: auto;
  gap: 10px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.sidebar.open {
  transform: translateX(0);
}
.sidebar__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 20px;
  background: #f5f5f5;
  margin-bottom: 10px;
}
.sidebar__search .sidebar__text {
  color: #000;
}
.sidebar__navigation {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #0b4595;
  color: #fff;
  cursor: pointer;
  margin-bottom: 15px;
  text-decoration: none;
}
.sidebar__navigation:hover {
  text-decoration: none;
  color: white;
  background: #0c51af;
}
.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar__item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: #333;
}
.sidebar__item:hover {
  background: #f5f5f5;
  text-decoration: none;
}
.sidebar__item .icon-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar__item .icon-text .icon {
  width: 30px;
  height: 100%;
}
.sidebar__item .icon-text .sidebar__text {
  color: rgb(120, 118, 134);
}
.sidebar__item.has-submenu {
  position: relative;
}
.sidebar__item.has-submenu .checkmark {
  margin-left: auto;
  transition: transform 0.3s ease;
}
.sidebar__item.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: -3%;
  background: #ecebeb;
  border: 1px solid #888787;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 240px;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1000;
}
.sidebar__item.has-submenu .submenu a {
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
}
.sidebar__item.has-submenu .submenu a:hover {
  background: #fff;
}
.sidebar__item.has-submenu.open .checkmark {
  transform: rotate(90deg);
}
.sidebar__item.has-submenu.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 200;
}
.sidebar__socials {
  margin: 30px 0;
}
.sidebar__socials .socials-block {
  display: flex;
  gap: 30px;
}
.sidebar__socials .socials-block .socials-icon {
  cursor: pointer;
}
.sidebar__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar__bottom a {
  text-decoration: none;
  color: rgb(120, 118, 134);
}
.sidebar__bottom a:hover {
  background: #f5f5f5;
}
.sidebar__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  margin-top: 10px;
}
.sidebar__footer .sidebar-logo-img {
  width: 80%;
  height: auto;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar__trigger {
  position: fixed;
  top: 70px;
  left: 0;
  width: fit-content;
  padding: 10px;
  height: 50px;
  background: #0b4595;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  z-index: 110;
  transition: all 0.3s ease;
}
.sidebar__trigger:hover {
  text-decoration: none;
  color: white;
  background: #0c51af;
}
.sidebar__trigger.hidden {
  display: none;
}

.header {
  margin: 15px 0 15px 0;
}
.header__content {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.header__content .img-container {
  display: flex;
  gap: 30px;
}
.header__content .img-container .logo-1 {
  width: 350px;
  height: 56px;
}
.header__content .img-container .logo-2 {
  width: 280px;
  height: 50px;
  margin-top: 10px;
}
.header__auth {
  display: flex;
  gap: 30px;
}

.trend {
  display: flex;
  gap: 10px;
  align-items: center;
}
.trend img {
  width: 30px;
  height: 22px;
}
.trend__content {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.trend__content::-webkit-scrollbar {
  display: none;
}
.trend__content a {
  border-radius: 20px;
  border: rgb(0, 160, 210) 1px solid;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  padding: 7px 15px;
  color: rgb(0, 160, 210);
  flex: 0 0 auto;
  white-space: nowrap;
  user-select: none;
}

.swiper-main {
  margin: 15px 0 15px 0;
}

.swiper-experts {
  width: 100%;
  height: 100%;
  background-color: #0a6701;
  margin: 15px 0 15px 0;
}

.divider {
  width: 1px;
  height: 40px;
  background-color: #08bbac;
  margin: 0 10px;
}

.mainNew {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mainNew__journal {
  background-color: rgb(11, 69, 149);
  padding: 20px;
  border-radius: 15px;
}
.mainNew__journal-img {
  width: 100%;
  height: auto;
}
.mainNew__journal-btn {
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: white;
  text-decoration: none;
  margin-bottom: 15px;
}
.mainNew__journal-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.mainNew__number-block {
  display: flex;
  gap: 10px;
  color: white;
  align-items: flex-end;
}
.mainNew__number-block .circle-num {
  border-radius: 50%;
  border: 3px solid white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainNew__number-block .circle-num span {
  font-weight: bold;
}
.mainNew__read-btn {
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: white;
  text-decoration: none;
}
.mainNew__materials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
.mainNew__materials-block {
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  gap: 20px;
  cursor: pointer;
}
.mainNew__materials-block-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mainNew__materials-block-text .wrapper-text {
  display: flex;
  gap: 25px;
  color: rgb(185, 185, 185);
  font-size: 14px;
}
.mainNew__materials-block-text .calendar-container {
  display: flex;
  gap: 10px;
}
.mainNew__materials-block-text-svg {
  width: 20px;
  height: auto;
}
.mainNew__materials-img {
  max-width: 250px;
  height: auto;
}
.mainNew .time-container {
  display: flex;
  gap: 10px;
  color: rgb(185, 185, 185);
}
.mainNew__news .news-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mainNew__news-block {
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
}
.mainNew__news-top {
  display: flex;
  gap: 10px;
  align-items: center;
}
.mainNew__news-top h3 {
  margin-bottom: 0;
}
.mainNew__news-top .date-span {
  color: rgb(81, 66, 120);
  font-weight: bold;
}
.mainNew__news-top h3 {
  font-weight: bold;
}
.mainNew__news-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mainNew__news-bottom p {
  margin-bottom: 0;
}

@media screen and (min-width: 1540px) {
  .container {
    max-width: 1440px;
  }
}
@media screen and (max-width: 1540px) {
  .mainNew {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "mainNew-wrapper mainNew__materials" "mainNew__news mainNew__news";
  }
  .mainNew > *:nth-child(1) {
    grid-area: mainNew-wrapper;
  }
  .mainNew > *:nth-child(2) {
    grid-area: mainNew__materials;
  }
  .mainNew > *:nth-child(3) {
    grid-area: mainNew__news;
  }
}
@media screen and (max-width: 1200px) {
  .header__content {
    flex-direction: column;
  }
}
@media screen and (max-width: 994px) {
  .mainNew {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "mainNew-wrapper" "mainNew__materials" "mainNew__news";
  }
}
@media screen and (max-width: 768px) {
  .header__content .img-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (max-width: 500px) {
  .trend {
    gap: 7px;
  }
  .trend img {
    width: 25px;
  }
  .divider {
    margin: 0;
  }
  .mainNew__materials-block-text .wrapper-text {
    flex-direction: column;
    gap: 10px;
  }
  .mainNew__materials-block-text-svg {
    width: 15px;
  }
  .wrapper .sidebar__item.has-submenu .submenu {
    top: 100%;
    left: -3%;
    transform: translateY(10px);
  }
  .wrapper .sidebar__item.has-submenu.open .submenu {
    transform: translateY(0);
  }
}
.nav-btn {
  border: none;
  background: none;
}

.nav-btn:hover {
  border: none !important;
  background: none !important;
}

.nav-btn img {
  filter: none;
}

.owl-prev {
  left: -25px;
  top: 42%;
}

.owl-next {
  right: -25px;
  top: 42%;
}

#slider .owl-dots {
  display: none;
}

.swiper-experts {
  background-color: inherit;
}

.def-btn {
  display: none;
}

.image-container {
  width: 50%;
}

/*# sourceMappingURL=style.css.map */
